AutoLISPDCL各种控件

2023-05-16

AutoLISP对话框DCL一共包括23个常用控件和8个固定控件,每种控件属于一种类型,创建一个DCL对话框窗体就是创建各种控件实例的过程,控件是各种属性、事件、方法的集合。

按照各种控件的特点,DCL控件可以分为以下几类。

  1. 可定义动作行为的控件,例如按钮控件button。
  2. 组合类控件,例如列表框控件column。
  3. 装饰类和信息类控件,例如图像控件image。

各种可以自定义动作行为的控件包括button、edit_box、imang_button、list_box、popup_list、radio_button、slider、toggle几种,各个控件属性如下表。

buttonedit_boximage_buttonlist_boxpopup_listradio_buttonslidertoggle
actionactionactionactionactionactionactionaction
alignmentalignmentalignmentalignmentalignmentalignmentalignmentalignment
 allow_acceptallow_acceptallow_accept    
  aspect_ratio     
  color     
      big_increment 
 edit_limit      
 edit_width  edit_width   
fixed_heightfixed_heightfixed_heightfixed_heightfixed_heightfixed_heightfixed_heightfixed_height
fixed_widthfixed_widthfixed_widthfixed_widthfixed_widthfixed_widthfixed_widthfixed_width
heightheightheightheightheightheightheightheight
is_cancel       
is_default       
is_enabledis_enabledis_enabledis_enabledis_enabledis_enabled is_enabled
is_tab_stopis_tab_stopis_tab_stopis_tab_stopis_tab_stopis_tab_stop is_tab_stop
keykeykeykeykeykeykeykey
labellabel labellabellabellabellabel
   listlist   
     layout  
     max_value  
     min_value  
mnemonicmnemonicmnemonicmnemonicmnemonicmnemonicmnemonic 
   multiple_select    
      small_increment 
   tabstabs   
 value valuevaluevaluevaluevalue
widthwidthwidthwidthwidthwidthwidthwidth
 password_char      

 

组合类控件包括column、boxed_column、radio_column、boxed_radio_column、row、boxed_row、radio_row、boxed_radio_row、dialog几种,各个控件属性如下表。

columnboxed_columnradio_columnboxed_radio_columnrowboxed_rowradio_rowboxed_radio_row
alignmentalignmentalignmentalignmentalignmentalignmentalignmentalignment
child_alignmentchild_alignmentchild_alignmentchild_alignmentchild_alignmentchild_alignmentchild_alignmentchild_alignment
child_fixed_heightchild_fixed_heightchild_fixed_heightchild_fixed_heightchild_fixed_heightchild_fixed_heightchild_fixed_heightchild_fixed_height
child_fixed_widthchild_fixed_widthchild_fixed_widthchild_fixed_widthchild_fixed_widthchild_fixed_widthchild_fixed_widthchild_fixed_width
fixed_heightfixed_heightfixed_heightfixed_heightfixed_heightfixed_heightfixed_heightfixed_height
fixed_widthfixed_widthfixed_widthfixed_widthfixed_widthfixed_widthfixed_widthfixed_width
heightheightheightheightheightheightheightheight
labellabellabellabellabellabellabellabel
widthwidthwidthwidthwidthwidthwidthwidth

 

装饰和信息类控件主要包括image、text、part_text、spacer、spacer_0、spacer_1、concatenation、paragraph几种,各个控件属性如下表。

iamgetextpart_textspacerspacer_0spacer_1concatenationparagraph
alignmentalignment alignmentalignmentalignment  
aspect_radio       
color       
fixed_heightfixed_height fixed_height    
fixed_widthfixed_width fixed_width    
heightheight height    
 is_bold      
is_enabled       
is_top_stop       
keykey      
 lablelable     
mnomenic       
 value      
widthwidthwidth     

 

这三个表格格式搞死我了快,第二个表格还是没能全部显示。

本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

AutoLISPDCL各种控件 的相关文章

随机推荐

  • 利用Python爬取电影网站

    usr bin env python coding 61 utf 8 39 39 39 本爬虫是用来爬取6V电影网站上的电影资源的一个小脚本程序 xff0c 爬取到的电影链接会通过网页的形式显示出来 39 39 39 import requ
  • python 提取字符串中的数字组成新的字符串

    方法一 有一个字符串text 61 34 aAsmr3idd4bgs7Dlsf9eAF 34 请将text字符串中的数字取出 xff0c 并输出成一个新的字符串 import re text 61 34 aAsmr3idd4bgs7Dlsf
  • Trie树

    转载自http epic 32o cn article asp id 61 47 xff0c 但是这个地址已经不存在了 所以从维基百科拿来个图进行解释 xff1a http zh wikipedia org wiki Trie 今天在vij
  • 【C#学习笔记】读SQL Server2008

    using System using System Data SqlClient namespace ConsoleApplication class Program static void Main string args SqlConn
  • window class, OO

    Wndows中Window Management 的设计 是很符合OO思想 首先每个Window的定义由WNDCLASS结构定义 在WNDCLASS中我们需要给出 Window class name Window的class style 以
  • regex_match

    原型 xff1a bool regex match InputSequence MatchResults Regex Flags 当模式匹配整个输入序列成功时 xff0c 返回的是true 否则返回false 参数说明 1 InputSeq
  • 关于Docker目录挂载的总结

    Docker容器启动的时候 xff0c 如果要挂载宿主机的一个目录 xff0c 可以用 v参数指定 譬如我要启动一个centos容器 xff0c 宿主机的 test目录挂载到容器的 soft目录 xff0c 可通过以下方式指定 xff1a
  • Wireshark网络抓包(一)——数据包、着色规则和提示

    一 数据包详细信息 Packet Details面板内容如下 xff0c 主要用于分析封包的详细信息 帧 xff1a 物理层 链路层 包 xff1a 网络层 段 xff1a 传输层 应用层 1 xff09 Frame 物理层数据帧概况 2
  • FloatingWindow 悬浮窗开源项目总结

    在Android开发中 xff0c 我们不免会遇到悬浮窗展示的需求 xff0c 以下是本人之前star的悬浮窗的开源项目 xff0c 供大家参考 xff1a 一 FloatingWindowDemo 开源项目地址 xff1a https g
  • yum-config-manager的讲解

    问题描述 xff1a yum是RPM的前端程序 xff0c 对于多软件安装时非常好用 xff0c 在虚拟机中想要安装什么软件都可以使用 yum install xff1a 仓库名 命令来快速调用已经安装的仓库里的软件 xff0c 但有时在安
  • 1024与自己做爱做的事情

    1024是什么 xff1f 1024最早起源于一个名为 草榴社区 的论坛 xff0c 该论坛为了防止灌水 xff0c 新用户在论坛内回复与发帖时 xff0c 被限制为 每隔1024秒才可发帖 xff08 回复 xff09 一次 xff0c
  • Nervos CKB 共识协议 NC-Max:突破 Nakamoto Consensus 吞吐量的极限

    带宽实际上是区块链吞吐量的最大限制 xff0c 在美国旧金山举办的 Scaling Bitcoin Meetup 中 xff0c Nervos amp Cryptape 研究员张韧从 带宽利用率 角度分析了诸多共识协议的效率和可行性 Alg
  • ES6: import和export

    模块化 前端模块化的好处都已经被说烂了 xff0c 归纳为两点 xff1a 避免全局变量污染有效的处理依赖关系 ES2015 xff08 ES6 xff09 终于引入了模块的概念 xff0c 最近学习了下 xff0c 顺便记下笔记 准备工作
  • 6个常见校园网认证客户端故障原因及解决方法

    故障 一 xff1a 本地连接打叉或受限制 xff1b 客户端 提示 无法获取IP信息 可能原因 1 xff0e 网线虚接 2 xff0e 学生端网络 跳线质量太差 3 xff0e 网卡 或网卡驱动程序过久 4 xff0e 交换机的某个端口
  • C语言编程 求两个数的平均值方法(三种方法)

    第一种方法是最常见的 average 61 xff08 a 43 b xff09 2这种方式 xff0c 求两个数的平均值 第二种方法是 当 a lt b 时 averag 61 a 43 b a 2 这里着重介绍的是第三种方法 avera
  • IDEA创建GIT分支并提交到其他分支

    1 xff0c 创建分支 2 xff0c 提交自己的分支 3 xff0c 写代码 xff0c 写完之后切换到你想要提交的分支 xff0c 例子develop 切花分支 xff0c 选择分支 xff0c checkOut 4 下载该分支的更新
  • 【C#学习笔记】写文件

    using System using System IO namespace ConsoleApplication class Program static void Main string args FileStream file 61
  • socket编程——一个简单的例子(转)

    原文地址 xff1a http blog csdn net wind19 article details 6156339 从一个简单的使用TCP例子开始socket编程 xff0c 其基本步骤如下 xff1a server client 4
  • BI 多维数据 处理错误

    哎 响应中的错误和警告 后端数据库访问模块中存在错误 OLE DB 报告列 11 出现了数据类型溢出现象 OLAP 存储引擎中存在错误 处理 Fact Order Sales 分区时出错 xff0c 该分区属于 Analysis 数据库的
  • AutoLISPDCL各种控件

    AutoLISP对话框DCL一共包括23个常用控件和8个固定控件 xff0c 每种控件属于一种类型 xff0c 创建一个DCL对话框窗体就是创建各种控件实例的过程 xff0c 控件是各种属性 事件 方法的集合 按照各种控件的特点 xff0c