ControlTemplate::Triggers Property
.NET Framework (current version)
Gets a collection of TriggerBase objects that apply property changes or perform actions based on specified conditions.
Assembly: PresentationFramework (in PresentationFramework.dll)
public: [DependsOnAttribute("VisualTree")] [DependsOnAttribute("Template")] property TriggerCollection^ Triggers { TriggerCollection^ get(); }
Property Value
Type: System.Windows::TriggerCollection^A collection of TriggerBase objects. The default value is null.
<object>
<object.Triggers>
oneOrMoreTriggers
</object.Triggers>
</object>
- oneOrMoreTriggers
One or more TriggerBase objects (usually these are a Trigger).
The following example demonstrates the use of this property:
<Style x:Key="{x:Type ToolTip}" TargetType="ToolTip"> <Setter Property="OverridesDefaultStyle" Value="true" /> <Setter Property="HasDropShadow" Value="True" /> <Setter Property="Template"> <Setter.Value> <ControlTemplate TargetType="ToolTip"> <Border Name="Border" BorderThickness="1" Width="{TemplateBinding Width}" Height="{TemplateBinding Height}"> <Border.Background> <LinearGradientBrush StartPoint="0,0" EndPoint="0,1"> <LinearGradientBrush.GradientStops> <GradientStopCollection> <GradientStop Color="{DynamicResource ControlLightColor}" Offset="0.0" /> <GradientStop Color="{DynamicResource ControlMediumColor}" Offset="1.0" /> </GradientStopCollection> </LinearGradientBrush.GradientStops> </LinearGradientBrush> </Border.Background> <Border.BorderBrush> <SolidColorBrush Color="{DynamicResource BorderMediumColor}" /> </Border.BorderBrush> <ContentPresenter Margin="4" HorizontalAlignment="Left" VerticalAlignment="Top" /> </Border> <ControlTemplate.Triggers> <Trigger Property="HasDropShadow" Value="true"> <Setter TargetName="Border" Property="CornerRadius" Value="4" /> <Setter TargetName="Border" Property="SnapsToDevicePixels" Value="true" /> </Trigger> </ControlTemplate.Triggers> </ControlTemplate> </Setter.Value> </Setter> </Style>
The above example uses the following resources:
For the complete sample, see Styling with ControlTemplates Sample.
.NET Framework
Available since 3.0
Available since 3.0
Show: