Class Window_InputDialog
Simple input box, for string input in a modal window
Inherited Members
Namespace: Simplic.Framework.UI
Assembly: Simplic.Framework.Base.dll
Syntax
public class Window_InputDialog : MSWindow
Constructors
| Improve this Doc View SourceWindow_InputDialog(String, String, String)
Create new input dialog
Declaration
public Window_InputDialog(string Text, string Title, string DefaultValue)
Parameters
Type | Name | Description |
---|---|---|
System.String | Text | Description text for the input field |
System.String | Title | Window title |
System.String | DefaultValue | Default value of the text box |
Properties
| Improve this Doc View SourceReturnString
Declaration
public string ReturnString { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Methods
| Improve this Doc View SourceShow(String, String, String)
Create a new input dialog and show it (modal)
Declaration
public static string Show(string Text, string Title, string DefaultValue)
Parameters
Type | Name | Description |
---|---|---|
System.String | Text | Description text for the input field |
System.String | Title | Window title |
System.String | DefaultValue | Default value of the text box |
Returns
Type | Description |
---|---|
System.String | Input value, null if cancel was pressed |