Class ChangePwdDialogArgs
ChangePwdDialog Argument class that holds all needed information to display the change password dialog.
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 class ChangePwdDialogArgs : DialogArgs
Properties
View SourceChangePwdDialogInfoText
Gets or sets the change password dialog info text, if null or empty, default text will be used.
Declaration
public string ChangePwdDialogInfoText { get; set; }
Property Value
Type | Description |
---|---|
System.String | The change password dialog info text. |
Image
Gets or sets the image for the dialog, if null, default text will be used.
Declaration
public BitmapImage Image { get; set; }
Property Value
Type | Description |
---|---|
System.Windows.Media.Imaging.BitmapImage | The image. |
OnCancel
The Action that is invoked when the user clicks the cancel button.
Declaration
public Action OnCancel { get; set; }
Property Value
Type | Description |
---|---|
System.Action |
OnOK
The Action that is invoked when the user clicks the OK button.
Declaration
public Action OnOK { get; set; }
Property Value
Type | Description |
---|---|
System.Action |
PasswordMinLen
Gets or sets a value indicating min length of the password.
Declaration
public int PasswordMinLen { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
ShowInTaskbar
Gets or sets a value indicating whether the dialog is show in the task-bar.
Declaration
public bool? ShowInTaskbar { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Boolean> |
|
Remarks
If not set then the about dialog is not displayed in the task-bar (unless it has no owner).