Initialize();
}
+ /// <summary>
+ /// Creates a new instance of Dialog with style.
+ /// </summary>
+ /// <param name="style">Creates Dialog by special style defined in UX.</param>
+ [EditorBrowsable(EditorBrowsableState.Never)]
+ public Dialog(string style) : base(style)
+ {
+ Initialize();
+ }
+
/// <summary>
/// Creates a new instance of a Dialog with style.
/// </summary>
Initialize();
}
+ /// <summary>
+ /// Creates a new instance of ContentPage with style.
+ /// </summary>
+ /// <param name="style">Creates ContentPage by special style defined in UX.</param>
+ [EditorBrowsable(EditorBrowsableState.Never)]
+ public ContentPage(string style) : base(style)
+ {
+ Initialize();
+ }
+
/// <summary>
/// Creates a new instance of a ContentPage with style.
/// </summary>
Initialize();
}
+ /// <summary>
+ /// Creates a new instance of DialogPage with style.
+ /// </summary>
+ /// <param name="style">Creates DialogPage by special style defined in UX.</param>
+ [EditorBrowsable(EditorBrowsableState.Never)]
+ public DialogPage(string style) : base(style)
+ {
+ Initialize();
+ }
+
/// <summary>
/// Creates a new instance of a DialogPage with style.
/// </summary>
Initialize();
}
+ /// <summary>
+ /// Creates a new instance of Navigator with style.
+ /// </summary>
+ /// <param name="style">Creates Navigator by special style defined in UX.</param>
+ [EditorBrowsable(EditorBrowsableState.Never)]
+ public Navigator(string style) : base(style)
+ {
+ Initialize();
+ }
+
/// <summary>
/// Creates a new instance of a Navigator with style.
/// </summary>
{
}
+ /// <summary>
+ /// Creates a new instance of Page with style.
+ /// </summary>
+ /// <param name="style">Creates Page by special style defined in UX.</param>
+ [EditorBrowsable(EditorBrowsableState.Never)]
+ public Page(string style) : base(style)
+ {
+ }
+
/// <summary>
/// Creates a new instance of a Page with style.
/// </summary>
Initialize();
}
+ /// <summary>
+ /// Creates a new instance of a ScrollableBase with style.
+ /// </summary>
+ /// <param name="style">Creates ScrollableBase by special style defined in UX.</param>
+ [EditorBrowsable(EditorBrowsableState.Never)]
+ public ScrollableBase(string style) : base(style)
+ {
+ Initialize();
+ }
+
/// <summary>
/// Creates a new instance of a ScrollableBase with style.
/// </summary>
Initialize();
}
+ /// <summary>
+ /// Creates a new instance of TabBar with style.
+ /// </summary>
+ /// <param name="style">Creates TabBar by special style defined in UX.</param>
+ [EditorBrowsable(EditorBrowsableState.Never)]
+ public TabBar(string style) : base(style)
+ {
+ Initialize();
+ }
+
/// <summary>
/// Creates a new instance of a TabBar with style.
/// </summary>
Initialize();
}
+ /// <summary>
+ /// Creates a new instance of TabContent with style.
+ /// </summary>
+ /// <param name="style">Creates TabContent by special style defined in UX.</param>
+ [EditorBrowsable(EditorBrowsableState.Never)]
+ public TabContent(string style) : base(style)
+ {
+ Initialize();
+ }
+
/// <summary>
/// Creates a new instance of a TabContent with style.
/// </summary>
Initialize();
}
+ /// <summary>
+ /// Creates a new instance of TabView.
+ /// </summary>
+ /// <param name="style">Creates TabView by special style defined in UX.</param>
+ [EditorBrowsable(EditorBrowsableState.Never)]
+ public TabView(string style) : base(style)
+ {
+ Initialize();
+ }
+
/// <summary>
/// Creates a new instance of a TabView with style.
/// </summary>