UseMnemonic property of a GroupBox in C#.Net 2010
I use a GroupBox and its text property is supposed to be "Word1 & Word2". But it seems the UseMnemonic feature takes effective that the result looks like "Word _Word2".
So how can I disable UseMnemonic feature of a GroupBox? Or any workaround.开发者_如何学JAVA
(I know there is property UseMnemonic for a Button control, but I cannot find the corresponding property for GroupBox, which sounds very weird to me)
You need to use a second '&' if you want to display '&' instead of '_' (e.g. Word1 && Word2).
精彩评论