Show / Hide Table of Contents

Class DialogArgs

Base class for dialog arguments.

Inheritance
System.Object
DialogArgs
ChangePwdDialogArgs
LoginDialogArgs
MessageDialogArgs
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 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
System.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
System.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
System.Action
View Source

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.

Extension Methods

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