Class DialogArgs
Base class for dialog arguments.
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 |
|---|---|
| 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 |
|---|---|
| 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 |
|---|---|
| Action |
Title
The title shown in the title bar of the dialog.
Declaration
public string Title { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Remarks
This property is optional. If not set, a default title is used.