WPF和CSS类似使用

 与css类似,WPF标签控件比较多,功能和属性上更丰富

对于比较通用的重复属性,可以定义

    <Window.Resources>
        <Style TargetType="Path" x:Key="p">
            <Setter Property="Stroke" Value="Orange"/>
        </Style>
    </Window.Resources>

调用的地方使用Style="{StaticResource p}"

类似css的 类和id引用

posted on 2025-03-24 16:46  张彦山  阅读(13)  评论(0)    收藏  举报