-
Notifications
You must be signed in to change notification settings - Fork 13
markdoccore IDialogView
Denis Akopyan edited this page Mar 6, 2022
·
1 revision
Interface for dialog views
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph MarkDoc.Core
MarkDoc.Core.IDialogView[[IDialogView]]
class MarkDoc.Core.IDialogView interfaceStyle;
MarkDoc.Core.IView[[IView]]
class MarkDoc.Core.IView interfaceStyle;
end
MarkDoc.Core.IView --> MarkDoc.Core.IDialogView
| Type | Name | Methods |
|---|---|---|
string |
TitleDialog view title |
get |
| Returns | Name |
|---|---|
void |
OnCancelButtonClicked()Invoked when the parent dialog window cancel button is pressed |
void |
OnNegativeButtonClicked()Invoked when the parent dialog window negative button is pressed |
void |
OnPositiveButtonClicked()Invoked when the parent dialog window positive button is pressed |
Interface for dialog views
public abstract void OnPositiveButtonClicked()Invoked when the parent dialog window positive button is pressed
public abstract void OnNegativeButtonClicked()Invoked when the parent dialog window negative button is pressed
public abstract void OnCancelButtonClicked()Invoked when the parent dialog window cancel button is pressed
public abstract string Title { get }Dialog view title
Generated with MarkDoc