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

Материал из FGX Native Докуметации
Перейти к навигации Перейти к поиску
(summary)
(summary)
Строка 1: Строка 1:
 
* [[ FGX.Control.TfgControl | Вверх к родителю: TfgControl ]]
 
* [[ FGX.Control.TfgControl | Вверх к родителю: TfgControl ]]
 +
* [[ FGX.NavigationBar | К модулю: FGX.NavigationBar ]]
  
 
Delphi
 
Delphi
  
<syntaxhighlight lang="Delphi">TfgCustomNavigationBar = class (TfgControl, IFGXTapSupported, IFGXNotificationObserver, IFGXNotificationObservable)</syntaxhighlight>
+
<syntaxhighlight lang="Delphi">TfgCustomNavigationBar = class (TfgControl, IFGXTapSupported, IFGXToolBar)</syntaxhighlight>
  
Известные прямые наследники:
+
<p class="class-inheritance"><span class="type-border">[[System.Classes.TComponent|TComponent]]</span> -> <span class="type-border">[[FGX.Control.TfgControl|TfgControl]]</span> -> <span class="type-border">[[FGX.NavigationBar.TfgCustomNavigationBar|TfgCustomNavigationBar]]</span></p>
 +
 
 +
Прямые наследники:
 
[[FGX.NavigationBar.TfgNavigationBar|TfgNavigationBar]]
 
[[FGX.NavigationBar.TfgNavigationBar|TfgNavigationBar]]
 
== Описание ==
 
 
<span style="color:gray">Описание отсутствует.</span>
 
 
== Конструкторы ==
 
 
{| class="wikitable sortable"
 
|-
 
| <syntaxhighlight lang="Delphi">constructor</syntaxhighlight> || <code>Create(AOwner: [[TComponent]])</code>
 
<span style="color:gray">Описание отсутствует.</span>
 
|}
 
 
== Свойства ==
 
 
{| class="wikitable sortable"
 
|-
 
| <syntaxhighlight lang="Delphi">property</syntaxhighlight> || <code>TintColorLink: [[FGX.Assets.Color.TfgAssetColorLink|TfgAssetColorLink]]</code>
 
<span style="color:gray">Описание отсутствует.</span>
 
|-
 
| <syntaxhighlight lang="Delphi">property</syntaxhighlight> || <code>ActionButtons: [[FGX.NavigationBar.Types.TfgNavigationBarButtons|TfgNavigationBarButtons]]</code>
 
Кнопки отображаемые в правой части панели навигации.
 
|-
 
| <syntaxhighlight lang="Delphi">property</syntaxhighlight> || <code>ButtonsOptions: [[FGX.NavigationBar.TfgNavigationBarButtonsOptions|TfgNavigationBarButtonsOptions]]</code>
 
Настройки кнопок: кнопок действий, навигации и кнопки подробнее.
 
|-
 
| <syntaxhighlight lang="Delphi">property</syntaxhighlight> || <code>Title: [[string]]</code>
 
Заголовок.
 
|-
 
| <syntaxhighlight lang="Delphi">property</syntaxhighlight> || <code>Subtitle: [[string]]</code>
 
Подзаголовок.
 
|-
 
| <syntaxhighlight lang="Delphi">property</syntaxhighlight> || <code>Style: [[.TfgNavigationBarStyle|TfgNavigationBarStyle]]</code>
 
Тема отображения контрола.
 
|-
 
| <syntaxhighlight lang="Delphi">property</syntaxhighlight> || <code>TintColor: [[TAlphaColor]]</code>
 
Цвет подкрашивания. Если используется стиль '' Style.Translucent '' , то данное свойство игнорируется.
 
|-
 
| <syntaxhighlight lang="Delphi">property</syntaxhighlight> || <code>TintColorName: [[.TfgAssetName|TfgAssetName]]</code>
 
<span style="color:gray">Описание отсутствует.</span>
 
|-
 
| <syntaxhighlight lang="Delphi">property</syntaxhighlight> || <code>TitleTextSettings: [[FGX.NavigationBar.Types.TfgNavigationBarTitleTextSettings|TfgNavigationBarTitleTextSettings]]</code>
 
Настройки отображения заголовка.
 
|-
 
| <syntaxhighlight lang="Delphi">property</syntaxhighlight> || <code>SubtitleTextSettings: [[FGX.NavigationBar.Types.TfgNavigationBarSubTitleTextSettings|TfgNavigationBarSubTitleTextSettings]]</code>
 
Настройки отображения подзаголовка.
 
|}
 
 
== События ==
 
 
{| class="wikitable sortable"
 
|-
 
| <syntaxhighlight lang="Delphi">event</syntaxhighlight> || <code>OnNavigationIconTap: [[TNotifyEvent]]</code>
 
Срабатывает, когда пользователь нажимает на иконку навигации.
 
|-
 
| <syntaxhighlight lang="Delphi">event</syntaxhighlight> || <code>OnActionButtonTap: [[TfgNavigationBarButtonTapEvent]]</code>
 
Срабатывает, когда пользователь нажимает на одну из кнопок '' Buttons '' .
 
|}
 
 
== Константы ==
 
 
{| class="wikitable sortable"
 
|-
 
| <syntaxhighlight lang="Delphi">const</syntaxhighlight> || <code>DefaultTintColor: [[TAlphaColor]]</code>
 
<span style="color:gray">Описание отсутствует.</span>
 
|-
 
| <syntaxhighlight lang="Delphi">const</syntaxhighlight> || <code>DefaultStyle: [[.TfgNavigationBarStyle|TfgNavigationBarStyle]]</code>
 
<span style="color:gray">Описание отсутствует.</span>
 
|-
 
| <syntaxhighlight lang="Delphi">const</syntaxhighlight> || <code>DefaultAlignSelf: [[.TfgAlignSelf|TfgAlignSelf]]</code>
 
<span style="color:gray">Описание отсутствует.</span>
 
|-
 
| <syntaxhighlight lang="Delphi">const</syntaxhighlight> || <code>DefaultPositionMode: [[.TfgPositionMode|TfgPositionMode]]</code>
 
<span style="color:gray">Описание отсутствует.</span>
 
|}
 

Версия 02:47, 13 июня 2019

Delphi

TfgCustomNavigationBar = class (TfgControl, IFGXTapSupported, IFGXToolBar)

TComponent -> TfgControl -> TfgCustomNavigationBar

Прямые наследники: TfgNavigationBar