1、引用单元dxInputDialogs
2、方法dxInputBox(string,string,string)
定义:
function dxInputBox(const ACaption: string; const APrompt: string; const ADefaultValue: string): string;
参数:
名称 | 类型 | 说明 |
ACaption |
标题 | |
APrompt |
文本提示 | |
ADefaultValue |
默认值 |
返回:字符串
3、示例
var AUserInput: string; begin AUserInput := dxInputBox('Add a New User', 'User name:', 'User1'); // ... end;标签:const,string,AUserInput,对话框,dxInputBox,ACaption,用法,DevExpress From: https://www.cnblogs.com/bigcat0001/p/17405390.html