是否有任何方式可以在wpf中按名称进行特定控制

时间:2015-08-10 10:03:54

标签: wpf styles

通过资源设置控件颜色。

资源文件中的

<style TargetType="{x:Name button1}">
      <setter Property="ColorBrush" Value="Red"/>
</style>
<Window .... >
    <Button Name="Button1" Content="Test Button" />
</Window>

喜欢html中的css

 <style>
       #controlID
       {
         color:red;
       }
    </style>
<body>
      <input id="button1" type="button" value="test button" />
</body>

1 个答案:

答案 0 :(得分:4)

在window.resources

中定义这样的样式
<Window.Resources>
    <Style x:Key="btnStyleRed" TargetType="Button">
                <Setter Property="Background" Value="Red"/>
            </Style>
 </Window.Resources>

并仅在要应用特定样式的按钮上使用此样式

<Button x:Name="btnLogin" Style="{StaticResource btnStyleRed}" Content="Login" Width="75" />