Method | Description | |
---|---|---|
CloseUniqueNotif ( string id ) : void |
Closes the notification represented by the given id
|
|
ForceClose ( ) : void |
Close all the notifications
|
|
Init ( ) : void |
init an empty form, this gives us a Form to hook onto if we want to do stuff on the UI thread from a back groundthread, use : BeginInvoke()
|
|
Input ( object &data, string htmlContent, MessageImg imageType, string title, string subTitle, List |
Allows to ask information to the user, returns an integer (-1 if closed, or from 0 to x = buttons.count - 1), buttonsList default to { "Ok", "Cancel" }
|
|
Message ( object &data, string htmlContent, MessageImg imageType, string title, string subTitle, List |
||
Message ( string htmlContent, MessageImg imageType, string title, string subTitle, List |
Displays a messagebox like window, REMARK : DON'T WAIT FOR AN ANSWER IF YOU CALL IT FROM A THREAD!!!!!!!, new List string { "Ok", "Cancel" }, returns an integer (-1 if closed, or from 0 to x = buttons.count - 1), buttonsList default to { "Ok", "Cancel" }
|
|
Notify ( string html, MessageImg imageType, string title, string subTitle, Action |
||
Notify ( string html, MessageImg imageType, string title, string subTitle, int duration, int width = 450 ) : void | ||
Notify ( string html, int duration = 10, int width = 450 ) : void | ||
NotifyUnique ( string id, string htmlContent, MessageImg imageType, string title, string subTitle, Action |
Displays a notification on the bottom right of the screen
|
public static CloseUniqueNotif ( string id ) : void | ||
id | string | |
return | void |
public static Input ( object &data, string htmlContent, MessageImg imageType, string title, string subTitle, List |
||
data | object | |
htmlContent | string | |
imageType | MessageImg | |
title | string | |
subTitle | string | |
buttonsList | List |
|
clickHandler | Action |
|
return | int |
public static Message ( object &data, string htmlContent, MessageImg imageType, string title, string subTitle, List |
||
data | object | |
htmlContent | string | |
imageType | MessageImg | |
title | string | |
subTitle | string | |
buttonsList | List |
|
waitResponse | bool | |
clickHandler | Action |
|
minWidth | int | |
return | int |
public static Message ( string htmlContent, MessageImg imageType, string title, string subTitle, List |
||
htmlContent | string | |
imageType | MessageImg | |
title | string | |
subTitle | string | |
buttonsList | List |
|
waitResponse | bool | |
clickHandler | Action |
|
return | int |
public static Notify ( string html, MessageImg imageType, string title, string subTitle, Action |
||
html | string | |
imageType | MessageImg | |
title | string | |
subTitle | string | |
clickHandler | Action |
|
duration | int | |
width | int | |
return | void |
public static Notify ( string html, MessageImg imageType, string title, string subTitle, int duration, int width = 450 ) : void | ||
html | string | |
imageType | MessageImg | |
title | string | |
subTitle | string | |
duration | int | |
width | int | |
return | void |
public static Notify ( string html, int duration = 10, int width = 450 ) : void | ||
html | string | |
duration | int | |
width | int | |
return | void |
public static NotifyUnique ( string id, string htmlContent, MessageImg imageType, string title, string subTitle, Action |
||
id | string | |
htmlContent | string | |
imageType | MessageImg | |
title | string | |
subTitle | string | |
clickHandler | Action |
|
duration | int | |
width | int | |
return | void |