Struct
DialogInfo

Encloses information for a dialog settings and content.

Definition

Namespace:Telerik.Windows.Controls.FieldList

Assembly:Telerik.Windows.Controls.PivotFieldList.dll

Syntax:

cs-api-definition
[SuppressMessage("Microsoft.Performance", "CA1815:OverrideEqualsAndOperatorEqualsOnValueTypes", Justification = "This is a simple value storage that is not supposed to participate in arithmetic operations or comparisons.")]
public struct DialogInfo

Inherited Members ValueType.Equals(object)ValueType.GetHashCode()ValueType.ToString()

Properties

Content

Gets or sets the desired content UI of the requested dialog.

Declaration

cs-api-definition
public UIElement Content { readonly get; set; }

Property Value

UIElement

DesiredHeight

Gets or sets the desired content area height to be available in the dialog host.

Declaration

cs-api-definition
public double DesiredHeight { readonly get; set; }

Property Value

double

DesiredWidth

Gets or sets the desired content area width to be available in the dialog host.

Declaration

cs-api-definition
public double DesiredWidth { readonly get; set; }

Property Value

double

Header

Gets or sets the header string for the dialog host.

Declaration

cs-api-definition
public string Header { readonly get; set; }

Property Value

string

ViewModel

Gets or sets the desired ViewModel for the requested dialog. IDialogViewModel implementations support simple communication with the dialog host.

Declaration

cs-api-definition
public IDialogViewModel ViewModel { readonly get; set; }

Property Value

IDialogViewModel