Infragistics ultraoptionset - 如何添加 &(项目快捷方式)

Infragistics ultraoptionset - how to add & (item shortcut)

任何人都知道如何为项目添加快捷方式(通常我可以 select 使用 alt 键)? 对于其他控件,添加 &prior selected character

就足够了

你走在正确的道路上。首先,您应该在需要加下划线的字母前添加符号 (&)。然后你应该设置 UseMnemonics 属性 of UltraOptionSet to true 这样:

// Add some items
this.ultraOptionSet1.Items.Add(1, "&First");
this.ultraOptionSet1.Items.Add(2, "&Second");
this.ultraOptionSet1.Items.Add(3, "Th&ird");

// Turn on the mnemonics
this.ultraOptionSet1.UseMnemonics = true;

您可以在联机文档中找到更多信息here