-
Notifications
You must be signed in to change notification settings - Fork 3
PropertyList.Dialogs.ImageBrushEditorDialog
JaykeBird edited this page Feb 21, 2023
·
3 revisions
Back to home | Back to Reference | View raw text
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph SolidShineUi.PropertyList.Dialogs
SolidShineUi.PropertyList.Dialogs.ImageBrushEditorDialog[[ImageBrushEditorDialog]]
end
subgraph System.Windows.Markup
System.Windows.Markup.IComponentConnector[[IComponentConnector]]
end
subgraph SolidShineUi
SolidShineUi.FlatWindow[[FlatWindow]]
end
System.Windows.Markup.IComponentConnector --> SolidShineUi.PropertyList.Dialogs.ImageBrushEditorDialog
SolidShineUi.FlatWindow --> SolidShineUi.PropertyList.Dialogs.ImageBrushEditorDialog
Type | Name | Methods |
---|---|---|
bool |
DialogResult Get or set the result the user selected for this dialog; true is "OK", false is "Cancel" or the window was closed without making a choice. |
get, set |
Returns | Name |
---|---|
ImageBrush |
GetImageBrush ()Get an ImageBrush that represents the current options in the dialog. |
void |
InitializeComponent ()InitializeComponent |
void |
LoadImage (ImageBrush br)Load in an ImageBrush into this dialog. |
Returns | Name |
---|---|
Delegate |
_CreateDelegate (Type delegateType, string handler) |
IComponentConnector
-
FlatWindow
public ImageBrushEditorDialog()
Create a ImageBrushEditorDialog.
public ImageBrushEditorDialog(ColorScheme cs)
Type | Name | Description |
---|---|---|
ColorScheme |
cs |
Create a ImageBrushEditorDialog, with the color scheme pre-defined.
public void LoadImage(ImageBrush br)
Type | Name | Description |
---|---|---|
ImageBrush |
br |
Load in an ImageBrush into this dialog.
public ImageBrush GetImageBrush()
Get an ImageBrush that represents the current options in the dialog.
public virtual void InitializeComponent()
InitializeComponent
internal Delegate _CreateDelegate(Type delegateType, string handler)
Type | Name | Description |
---|---|---|
Type |
delegateType | |
string |
handler |
public bool DialogResult { get; set; }
Get or set the result the user selected for this dialog; true
is "OK", false
is "Cancel" or the window was closed without making a choice.
Generated with ModularDoc