Class ViewDefinitionBase
Serves as a base class for all view definitions. Contains common properties for all views.
Inheritance
System.Object
ViewDefinitionBase
Namespace: Telerik.Maui.Controls
Assembly: Telerik.Maui.Controls.dll
Syntax
public abstract class ViewDefinitionBase : BindableObject, IViewDefinition, INotifyPropertyChanged
Constructors
ViewDefinitionBase()
Declaration
protected ViewDefinitionBase()
Fields
HeaderTextFormatProperty
Identifies the HeaderTextFormat property.
Declaration
public static readonly BindableProperty HeaderTextFormatProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
TitleProperty
Identifies the Title bindable property.
Declaration
public static readonly BindableProperty TitleProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
Properties
HeaderTextFormat
Gets or sets the format string for the header text.
Declaration
public string HeaderTextFormat { get; set; }
Property Value
System.String
|
Title
Gets or sets the title of the view definition.
Declaration
public string Title { get; set; }
Property Value
System.String
|
Methods
CreateDefaultTitle()
Creates the default title for the view definition.
Declaration
protected virtual string CreateDefaultTitle()
Returns
System.String
|