windowsforms-devexpress-dot-xtraeditors-dot-xtrainputbox-dot-show.md
| Name | Parameters | Description |
|---|---|---|
| Show(XtraInputBoxArgs) static | args | Displays an input box with the specified settings. |
| Show(String, String, String, XtraInputBox.Buttons) static | prompt, title, defaultResponse, buttons | Displays an XtraInputBox with the given parameters. |
| Show(String, String, String) static | prompt, title, defaultResponse | Displays an input box with the specified title, prompt, and default response. |
| Show(IWin32Window, String, String, String, XtraInputBox.Buttons) static | owner, prompt, title, defaultResponse, buttons | Displays an XtraInputBox with the given parameters. |
| Show(IWin32Window, String, String, String) static | owner, prompt, title, defaultResponse | Displays an input box with the specified title, prompt, and default response. |
| Show<T>(XtraInputBoxArgs) static | args | Displays an input box with the specified settings. |
| Show<T>(String, String, T, XtraInputBox.Buttons) static | prompt, title, defaultResponse, buttons | Displays an input box with the specified settings. |
| Show<T>(String, String, T) static | prompt, title, defaultResponse | Displays an input box with the specified title, prompt, and default response. You can also specify the returned value’s type. |
| Show<T>(IWin32Window, String, String, T, XtraInputBox.Buttons) static | owner, prompt, title, defaultResponse, buttons | Displays an input box with the specified settings. |
| Show<T>(IWin32Window, String, String, T) static | owner, prompt, title, defaultResponse | Displays an input box with the specified title, prompt, and default response. |