MenuItem1.Caption := 'a²b'; // => angezeigter Text: a²b(A)
Is ja interessant, dass Delphi XE2 sowas macht. D2007 konnte das meines wissens nicht...
Workaround
MenuItem1.Caption := 'a&²b';
[Klugsch...modus an]
Wäre es nicht besser
Delphi-Quellcode:
MenuItem1.Caption := 'a' + cHotkeyPrefix + '²b';
// Damit kann sich das '&' ändern (Plattform / Zukunft - WhatEver)
Und entfernen per
Delphi-Quellcode:
DerString := StripHotKey(MenuItem1.Caption);
// DerString enthält jetzt nur noch a²b
[Klugsch...modus aus]
Gruß, Chris