How to inspect Microsoft.Windows.Themes
问题 It's no secret that wpf exposes it's default themes , for example here's a shortened version of how a checkbox template looks xmlns:theme="clr-namespace:Microsoft.Windows.Themes" <ControlTemplate TargetType="{x:Type CheckBox}"> <BulletDecorator> <BulletDecorator.Bullet> <theme:BulletChrome /> </BulletDecorator.Bullet> <ContentPresenter /> </BulletDecorator> </ControlTemplate> gee .. that's great and most help full (NOT!) i actually wanted to see how the check mark path looks like , is there