logo
  • 教程列表
  • SO官方文档
  • 对话框
    • 一个非常简单的对话框
    • 带自动查找的对话框
    • 带有枚举字段和自定义标签的对话框
    • 带有复选框字段和预填充值的对话框
  1. StackOverflow 文档
  2. microsoft-dynamics 教程
  3. 对话框
  4. 一个非常简单的对话框

一个非常简单的对话框

Created: November-22, 2018

Dialog dlg;
DialogGroup dGrp;
DialogField dfName;

dlg = new Dialog("Trivial Dialog");
dGrp = dlg.addGroup("A Group");
dfName = dlg.addField(extendedTypeStr(Name));

if (dlg.run())
{
    info(dfName.value());
}

扩展数据类型必须包含在对 extendedTypeStr() 的调用中。

  • 带自动查找的对话框
  • 对话框

Copyright © 2018. All right reserved

tastones.com 备案号:鲁ICP备18045372号-1

  • 关于我们
  • 免责声明