wpf 公开它的默认主题已经不是什么秘密了,例如这里是一个复选框模板外观的缩短版本
xmlns:theme="clr-namespace:Microsoft.Windows.Themes"
<ControlTemplate TargetType="{x:Type CheckBox}">
<BulletDecorator>
<BulletDecorator.Bullet>
<theme:BulletChrome />
</BulletDecorator.Bullet>
<ContentPresenter />
</BulletDecorator>
</ControlTemplate>
哎呀..这很棒,最有帮助(不是!)
我实际上想看看复选标记路径的样子,有没有办法观察内部内容:
Microsoft.Windows.主题