Gets or sets the name of the object with the property that causes the associated setters to be applied.
Namespace:
System.Windows
Assembly:
PresentationFramework (in PresentationFramework.dll)
XMLNS for XAML: http://schemas.microsoft.com/winfx/2006/xaml/presentation, http://schemas.microsoft.com/netfx/2007/xaml/presentation
Visual Basic (Declaration)
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" .../>
Property Value
Type:
System..::.StringThe default property is nullNothingnullptra null reference (Nothing in Visual Basic). If this property is nullNothingnullptra null reference (Nothing in Visual Basic), 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).
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
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
.NET Framework
Supported in: 3.5, 3.0
Reference
Other Resources