Trigger.SourceName Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the name of the object with the property that causes the associated setters to be applied.
public:
property System::String ^ SourceName { System::String ^ get(); void set(System::String ^ value); };
public string SourceName { get; set; }
[System.Windows.Markup.Ambient]
public string SourceName { get; set; }
member this.SourceName : string with get, set
[<System.Windows.Markup.Ambient>]
member this.SourceName : string with get, set
Public Property SourceName As String
Property Value
The default property is null
. If this property is null
, then the Property property is evaluated with respect to the element this style or template is being applied to (the styled parent or the templated parent).
- Attributes
Exceptions
After a Trigger is in use, it cannot be modified.
Examples
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="AllowsTransparency"
Value="True">
<Setter TargetName="SubmenuBorder"
Property="CornerRadius"
Value="0,0,4,4" />
<Setter TargetName="SubmenuBorder"
Property="Padding"
Value="0,0,0,3" />
</Trigger>
Remarks
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 Directive syntax.
Applies to
.NET