Interface IWindow<TId, TModel, TViewModel>
Assembly: Simplic.Studio.UI.dll
Syntax
public interface IWindow<TId, TModel, TViewModel>
where TViewModel : IWindowViewModel<TModel>, new()
Type Parameters
Name |
Description |
TId |
|
TModel |
|
TViewModel |
|
Methods
|
Improve this Doc
View Source
Show(TId, Mode)
Declaration
void Show(TId id, Mode mode)
Parameters
Type |
Name |
Description |
TId |
id |
|
Mode |
mode |
|
|
Improve this Doc
View Source
Show(TModel, Mode)
Declaration
void Show(TModel model, Mode mode)
Parameters
Type |
Name |
Description |
TModel |
model |
|
Mode |
mode |
|
|
Improve this Doc
View Source
Show(IList<TId>, Mode)
Declaration
void Show(IList<TId> id, Mode mode)
Parameters
Type |
Name |
Description |
System.Collections.Generic.IList<TId> |
id |
|
Mode |
mode |
|
|
Improve this Doc
View Source
Show(IList<TModel>, Mode)
Declaration
void Show(IList<TModel> model, Mode mode)
Parameters
Type |
Name |
Description |
System.Collections.Generic.IList<TModel> |
model |
|
Mode |
mode |
|
|
Improve this Doc
View Source
ShowDialog(TId, Mode)
Declaration
bool? ShowDialog(TId id, Mode mode)
Parameters
Type |
Name |
Description |
TId |
id |
|
Mode |
mode |
|
Returns
Type |
Description |
System.Nullable<System.Boolean> |
|
|
Improve this Doc
View Source
ShowDialog(TModel, Mode)
Declaration
bool? ShowDialog(TModel model, Mode mode)
Parameters
Type |
Name |
Description |
TModel |
model |
|
Mode |
mode |
|
Returns
Type |
Description |
System.Nullable<System.Boolean> |
|
|
Improve this Doc
View Source
ShowDialog(IList<TId>, Mode)
Declaration
bool? ShowDialog(IList<TId> id, Mode mode)
Parameters
Type |
Name |
Description |
System.Collections.Generic.IList<TId> |
id |
|
Mode |
mode |
|
Returns
Type |
Description |
System.Nullable<System.Boolean> |
|
|
Improve this Doc
View Source
ShowDialog(IList<TModel>, Mode)
Declaration
bool? ShowDialog(IList<TModel> model, Mode mode)
Parameters
Type |
Name |
Description |
System.Collections.Generic.IList<TModel> |
model |
|
Mode |
mode |
|
Returns
Type |
Description |
System.Nullable<System.Boolean> |
|