I'm practicing to create a UWP app with C++/CX.
Every time I look at an object browser, if there is one property, there is a similar property with the same name behind it, what is this?
Each detailed description goes like this.
CanGoBack
public : property bool CanGoBack { get; }
Member of Windows::UI::Xaml::Controls::Frame
CanGoBackProperty
public : static property Windows::UI::Xaml::DependencyProperty^ CanGoBackProperty { get; }
Member of Windows::UI::Xaml::Controls::Frame
All attributes that are followed by Property
such as CanGoBackProperty
are a kind of DependencyProperty
. These properties are related to .NET's medium-attribute property system, which can be used to create bindings or to create events when properties change.
Read Document on MSDN's medium attribute.
© 2024 OneMinuteCode. All rights reserved.