Open application specific configuration window.
Source position: MUIClass.Base.pas line 240
public procedure TMUIApplication.OpenConfigWindow; |
MUI applications can open their own MUI configuration window to allow users to adjust the local preferences without the need of an external program. Programmers are supposed to include a "Settings/MUI..." menu item which simply calls OpenConfigWindow(). MUI will then automatically show the preferences window without blocking the rest of the program.
Example:
procedure TMyWindow.ConfigMenu(Sender: Objectm begin MUIApp.OpenConfigWindow(); end; // somewhere in the Object creation with TMUIMenuItem.Create do begin Title := 'Settings/MUI...'; // the menu item text OnTrigger := @ConfigMenu; // connect event handler Parent := Menu; // put to the Menu end;