C# Class Open.Core.UI.Controls.Dialogs.DialogContent

Content view-model for a dialog box.
Inheritance: AcceptCancelPresenterViewModel, IDialogContent
Afficher le fichier Open project: philcockfield/Open.TestHarness.SL Class Usage Examples

Méthodes publiques

Méthode Description
DialogContent ( ) : System

Constructor.

Hide ( ) : void

Causes the dialog box to be hidden.

Show ( ) : void

Causes the dialog box to be shown.

Show ( Action onHidden ) : void

Causes the dialog box to be shown.

Show ( double delay, Action onHidden ) : void

Causes the dialog box to be shown.

UpdateVisualState ( ) : void

Updates the visual state of the control.

Méthodes protégées

Méthode Description
OnDisposed ( ) : void

Private Methods

Méthode Description
InvokeHiddenCallback ( ) : void
OnHidden ( ) : void
OnIsShowingChanged ( ) : void
OnShown ( ) : void
SyncSizeOnParent ( ) : void
SyncTemplateOnParent ( ) : void

Method Details

DialogContent() public méthode

Constructor.
public DialogContent ( ) : System
Résultat System

Hide() public méthode

Causes the dialog box to be hidden.
public Hide ( ) : void
Résultat void

OnDisposed() protected méthode

protected OnDisposed ( ) : void
Résultat void

Show() public méthode

Causes the dialog box to be shown.
public Show ( ) : void
Résultat void

Show() public méthode

Causes the dialog box to be shown.
public Show ( Action onHidden ) : void
onHidden Action Action that is invoked when the dialog is hidden.
Résultat void

Show() public méthode

Causes the dialog box to be shown.
public Show ( double delay, Action onHidden ) : void
delay double /// Shows the dialog after the specified delay (secs). /// This allows screen updates to occur prior to the dialog showing. /// Typically set very short, at either 0.1 secs or 0 secs. ///
onHidden Action Action that is invoked when the dialog is hidden.
Résultat void

UpdateVisualState() public méthode

Updates the visual state of the control.
public UpdateVisualState ( ) : void
Résultat void