我在 Blend 中设计了一个按钮,它在命名空间标题之后给了我这个 xaml。
<UserControl.Resources>
<Style x:Key="ButtonStyle1" TargetType="Button">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="Button">
<Grid>
<Rectangle Fill="#BF4FFFF" RadiusY="10" RadiusX="10" Stroke="Black"/>
<ContentPresenter HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}" VerticalAlignment="{TemplateBinding VerticalContentAlignment}"/>
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
在运行时,我正在生成一个要应用此样式的按钮。如何才能做到这一点。
我注意到按钮具有button.Style
属性,但我无法为其分配样式。有什么建议么?