Reputation: 105
One would think that there would be a Font property for MainMenu, since there is one for just about everything else e.g. Buttons, Labels, etc.
Upvotes: 7
Views: 14873
Reputation: 108929
Write, for instance,
procedure TForm2.FormCreate(Sender: TObject);
begin
Screen.MenuFont.Name := 'Arial Black';
end;
and make sure that the OwnerDraw
property of your TMainMenu
is set to true
.
Upvotes: 14