Gets or sets the name of the object with the property that causes the associated setters to be applied.
Public Property SourceName As String
Dim instance As Trigger Dim value As String value = instance.SourceName instance.SourceName = value
public string SourceName { get; set; }
public: property String^ SourceName { String^ get (); void set (String^ value); }
public function get SourceName () : String public function set SourceName (value : String)
<object SourceName="string" .../>
After a Trigger is in use, it cannot be modified.
You can set this property to the name of any element within the scope of where the trigger collection (the collection that this Trigger is part of) is applied. This is typically a named element that is within the template that contains this Trigger.
You can name an object using the x:Name Attribute syntax.
One scenario when you would use the SourceName property is when the property of interest is not a property of the templated parent, as in the following example:
<Trigger SourceName="Popup" Property="Popup.AllowsTransparency" Value="True"> <Setter TargetName="SubmenuBorder" Property="CornerRadius" Value="0,0,4,4"/> <Setter TargetName="SubmenuBorder" Property="Padding" Value="0,0,0,3"/> </Trigger>
Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003
In the Examples section above, the documentation states:
> as in the following example:
There is no example