[Properties (by Name)] [Methods (by Name)] [Events (by Name)]
This class can be used to display a MUI about window in MUI applications.
Source position: MUIClass.Window.pas line 175
type TMUIAboutMUI = class(TMUIWindow) |
||
protected |
||
procedure GetCreateTags(); override; |
|
|
public |
||
procedure CreateObject; override; |
||
end; |
|
This class can be used to display a MUI about window in MUI applications. |
|
| | ||
|
All kind of windows for the MUI Objects |
|
| | ||
|
Subclass of TNotify to introduce the Parent relation |
|
| | ||
|
Notify class is superclass of all other MUI classes. |
|
| | ||
|
Base class for all MUI Class |
|
| | ||
TObject |
Add a 'Project/About MUI...' menu item and make it do something like this:
if not Assigned(AboutWin) then begin AboutWin := TMUIAboutWin.Create; AboutWin.RefWindow := inp AboutWin.Show; if not AboutWin.Open then DisplayBeep; end;
You don't have to care about the window any longer, it will take care about closing itself and will get disposed when the application is removed.