GitBook: [master] one page modified

This commit is contained in:
Dan Walmsley 2021-05-13 20:27:50 +00:00 коммит произвёл gitbook-bot
Родитель dfb7050b12
Коммит 5b979118e0
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 07D2180C7B12D0FF
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -2,9 +2,9 @@
`UserControl` represents a "view" in Avalonia, which is a reusable collection of controls in a predefined layout.
A `UserControl` usually consists of two parts: a XAML file \(e.g. `MyUserControl.axaml`\) and a codebehind file \(e.g. `MyUserControl.axaml.cs`\). The codebehind defines a .NET class which represents the control.
A `UserControl` usually consists of two parts: a XAML file \(e.g. `MyUserControl.axaml`\) and a code-behind file \(e.g. `MyUserControl.axaml.cs`\). The code-behind defines a .NET class which represents the control.
`UserControl`s are often paired with "view models" when using the MVVM pattern. For more information see [the tutorial](http://avaloniaui.net/docs/tutorial/creating-a-view).
`UserControl`s are often paired with "view models" when using the MVVM pattern. For more information see the [tutorial](../../tutorials/todo-list-app/).
You can create `UserControl`s from templates: