AutoCADDCL对话框设计示例三

AutoCADDCL对话框设计示例三,代码如下。

dcl:dialog {
    label = "第三个DCL对话框" ;
    :text {
        alignment = centered ;
        label = "这是文本框" ;
    }
    :edit_box {
        edit_width = 10 ;
        label = "图名" ;
    }
    :edit_box {
        edit_width = 10 ;
        label = "日期" ;
    }
    spacer_1;
    ok_cancel;
}

代码完。

作者:codee
文章千古事,得失寸心知。


原文地址:https://www.cnblogs.com/bimgoo/p/2503047.html