Show / Hide Table of Contents

Class DialogArgs

Base class for dialog arguments.

Inheritance
object
DialogArgs
ChangePwdDialogArgs
LoginDialogArgs
MessageDialogArgs
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Sartorius.SAF.Presentation.Controls
Assembly: Sartorius.SAF.Presentation.Controls.dll
Syntax
public abstract class DialogArgs

Properties

View Source

DefaultButton

Gets or sets the default button of the dialog.

Declaration
public DialogDefaultButton DefaultButton { get; set; }
Property Value
Type Description
DialogDefaultButton
View Source

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.

View Source

OnCloseParent

The Action that is invoked when the parent should be closed.

Declaration
public Action OnCloseParent { get; set; }
Property Value
Type Description
Action
View Source

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
View Source

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.

Extension Methods

CollectionExtensions.AddRange<T, TCollection>(TCollection, IEnumerable<T>)
SerializableObjectCloneExtension.Clone<T>(T)
  • View Source
Back to top Generated by DocFX