Right, I've tried things like:
cmd.Properties.Font =
new Font(frm.Font, FontStyle.Bold);cmd.Properties.Font =
new Font("Times New Roman", 20.0F, FontStyle.Bold);Nothing seems to help. When I set the 20.0F I can see the extra space in the context menu command height that it has reserved for the font but the font is not being used when drawing the text. Its the same font as the other menu items just centered within that larger space.
I've tried both in code and the VS designer properties box. I also noticed I have the same problem on a NDockingToolbar's text only NCommand. It will reserve the space on the button for the larger font but not draw with it. Changing the font on an NButton or NTextBox works as expected, however.