Class DialogArgs
Base class for dialog arguments.
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Sartorius.SAF.Presentation.Controls
Assembly: Sartorius.SAF.Presentation.Controls.dll
Syntax
public abstract class DialogArgs
Properties
View SourceDefaultButton
Gets or sets the default button of the dialog.
Declaration
public DialogDefaultButton DefaultButton { get; set; }
Property Value
Type | Description |
---|---|
DialogDefaultButton |
Header
The Header of the dialog.
Declaration
public string Header { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Remarks
This property is optional. If not set, a default header is used.
OnCloseParent
The Action that is invoked when the parent should be closed.
Declaration
public Action OnCloseParent { get; set; }
Property Value
Type | Description |
---|---|
System.Action |
ShowHelp
The action that is invoked if clicking on the Help button of the dialog
Declaration
public Action ShowHelp { get; set; }
Property Value
Type | Description |
---|---|
System.Action |
Title
The title shown in the title bar of the dialog.
Declaration
public string Title { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Remarks
This property is optional. If not set, a default title is used.