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 any way to observe the inner content of :
Microsoft.Windows.Themes