I am in the middle of understanding WPF coming from Win Forms. In WF I could change the appearance of about every part of a control. Like the TextEditor font... how do i change the font properties?
The base Control class includes font properties such as FontSize, FontFamily, etc. Since these are inherited properties, setting them on the tool or one of its ancestors will affect any text element within that element unless that property is set at a lower level.
It sounds like then you cannot have one font for the caption and one font for the text. Oh well...
Thanks for the help I will see if I can figure that out!
You can but if you want that then you have to retemplate the tool and set the font properties specifically on the elements within the template. You can use the styles/templates we include in the DefaultStyles as a starting point for creating your own custom styles/templates.