FGX.Forms.TfgFormManager: различия между версиями

Материал из FGX Native Докуметации
Перейти к навигации Перейти к поиску
(summary)
(summary)
Строка 13: Строка 13:
 
| <code>constructor</code> || <code>Create()</code>
 
| <code>constructor</code> || <code>Create()</code>
  
 +
|}
 +
 +
== Методы ==
 +
 +
{| class="wikitable sortable"
 +
|-
 +
| <syntaxhighlight lang="Delphi">procedure</syntaxhighlight> || <syntaxhighlight lang="Delphi">UpdateCurrentToolbar()</syntaxhighlight>
 +
 +
|-
 +
| <syntaxhighlight lang="Delphi">procedure</syntaxhighlight> || <syntaxhighlight lang="Delphi">Show(const AForm: TfgCustomForm)</syntaxhighlight>
 +
Выводит на экран форму '' AForm '' .
 +
|-
 +
| <syntaxhighlight lang="Delphi">procedure</syntaxhighlight> || <syntaxhighlight lang="Delphi">Hide(const AForm: TfgCustomForm)</syntaxhighlight>
 +
Скрывает форму '' AForm '' с экрана.
 +
|-
 +
| <syntaxhighlight lang="Delphi">function</syntaxhighlight> || <syntaxhighlight lang="Delphi">PreviousTopMost()</syntaxhighlight>
 +
Возвращает форму, располагающуюся сразу позади '' TopMost '' .
 +
|-
 +
| <syntaxhighlight lang="Delphi">function</syntaxhighlight> || <syntaxhighlight lang="Delphi">PreviousTo(const AForm: TfgCustomForm)</syntaxhighlight>
 +
Возвращает форму, располагающуюся сразу позади '' AForm '' .
 +
|-
 +
| <syntaxhighlight lang="Delphi">function</syntaxhighlight> || <syntaxhighlight lang="Delphi">TopMost()</syntaxhighlight>
 +
Возвращает видимую форму, которая находится поверх всех остальных.
 
|}
 
|}

Версия 03:16, 10 июня 2019

Delphi

TfgFormManager = class (TfgNaturalInterfacedObject, IInterface)

Конструкторы

constructor Create()

Методы

procedure
UpdateCurrentToolbar()
procedure
Show(const AForm: TfgCustomForm)

Выводит на экран форму AForm .

procedure
Hide(const AForm: TfgCustomForm)

Скрывает форму AForm с экрана.

function
PreviousTopMost()

Возвращает форму, располагающуюся сразу позади TopMost .

function
PreviousTo(const AForm: TfgCustomForm)

Возвращает форму, располагающуюся сразу позади AForm .

function
TopMost()

Возвращает видимую форму, которая находится поверх всех остальных.