Unit 'MUIClass.Window' Package
[Overview][Types][Classes][Index] [#MUIClass]

TMUIAboutMUI

[Properties (by Name)] [Methods (by Name)] [Events (by Name)]

This class can be used to display a MUI about window in MUI applications.

Declaration

Source position: MUIClass.Window.pas line 169

type TMUIAboutMUI = class(TMUIWindow)

protected

  procedure GetCreateTags(); override;

  

public

  procedure CreateObject; override;

end;

Inheritance

TMUIAboutMUI

  

This class can be used to display a MUI about window in MUI applications.

|

TMUIWindow

  

All kind of windows for the MUI Objects

|

TMUIWithParent

  

Subclass of TNotify to introduce the Parent relation

|

TMUINotify

  

Notify class is superclass of all other MUI classes.

|

TMUIRootClass

  

Base class for all MUI Class

|

TObject

Description

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 := Win;
  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.


Documentation generated on: 2022-07-30