Clarify how InitializeComponent works in the template comment (#1435)

This commit is contained in:
Nate Thorn 2024-09-16 13:33:55 -07:00 коммит произвёл GitHub
Родитель 64d2a52dd5
Коммит c5e0aaeb53
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
3 изменённых файлов: 3 добавлений и 0 удалений

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

@ -9,6 +9,7 @@ namespace winrt::$rootnamespace$::implementation
$safeitemname$()
{
// Xaml objects should not call InitializeComponent during construction.
// If a Xaml object needs to access a Xaml property during initialization, it should override InitializeComponent.
// See https://github.com/microsoft/cppwinrt/tree/master/nuget#initializecomponent
}

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

@ -13,6 +13,7 @@ namespace winrt::$rootnamespace$::implementation
$safeitemname$()
{
// Xaml objects should not call InitializeComponent during construction.
// If a Xaml object needs to access a Xaml property during initialization, it should override InitializeComponent.
// See https://github.com/microsoft/cppwinrt/tree/master/nuget#initializecomponent
}

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

@ -9,6 +9,7 @@ namespace winrt::$safeprojectname$::implementation
MainPage()
{
// Xaml objects should not call InitializeComponent during construction.
// If a Xaml object needs to access a Xaml property during initialization, it should override InitializeComponent.
// See https://github.com/microsoft/cppwinrt/tree/master/nuget#initializecomponent
}