Gets or sets the property that returns the value that is compared with the Value property of the trigger. The comparison is a reference equality check.
<LocalizabilityAttribute(LocalizationCategory.None, Modifiability := Modifiability.Unmodifiable, _ Readability := Readability.Unreadable)> _ Public Property Property As DependencyProperty
Dim instance As Trigger Dim value As DependencyProperty value = instance.Property instance.Property = value
[LocalizabilityAttribute(LocalizationCategory.None, Modifiability = Modifiability.Unmodifiable, Readability = Readability.Unreadable)] public DependencyProperty Property { get; set; }
[LocalizabilityAttribute(LocalizationCategory::None, Modifiability = Modifiability::Unmodifiable, Readability = Readability::Unreadable)] public: property DependencyProperty^ Property { DependencyProperty^ get (); void set (DependencyProperty^ value); }
public function get Property () : DependencyProperty public function set Property (value : DependencyProperty)
<object Property="DependencyProperty" .../>
A Style cannot contain a Trigger that refers to the Style property.
After a Trigger is in use, it cannot be modified.
The value returned by this property is compared with the value specified by the Value property. The comparison that is performed is a reference equality check. If the two values match, then the associated Setters apply the specified property values.
Use the ClassName.PropertyName syntax to qualify the property you are specifying if the style or template that contains this trigger does not have the TargetType property set.
Note that you must specify both the Property and Value properties on a Trigger for the trigger to be meaningful. If one or both of the properties are not set, an exception is thrown.
The following example contains two triggers. The first changes the Background property of a Button when the IsMouseOver property is true. The second changes the Foreground property of a button when the IsPressed property is true. The TargetType of the Style is set to Button and therefore there is no need to qualify the Property properties with the class name.
<Style x:Key="Triggers" TargetType="Button"> <Style.Triggers> <Trigger Property="IsPressed" Value="true"> <Setter Property = "Foreground" Value="Green"/> </Trigger> </Style.Triggers> </Style>
Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003