点击或拖拽改变大小

HotKeyEdit.Create 方法

X#
为 X# 热键编辑对象创建底层窗口控件。

命名空间:  VO
程序集:  VOGUIClasses (在 VOGUIClasses.dll 中) 版本:2.22 GA
语法
 VIRTUAL METHOD Create() AS USUAL
查看代码

返回值

类型:__Usual
如果成功,返回控件的窗口句柄。如果控件创建失败,返回空句柄(NULL_PTR)。
备注
Create() 方法为在运行时创建的控件(即,使用 Window Editor 设计的控件)创建底层窗口控件。
通常,不需要直接调用 Create()—CA-X# 将在需要窗口句柄时在内部创建对象。
示例
X#
1Method CreateHotKeyEdit() class MyDataWindow
2    local oHK as HotKeyEdit
3    // Init creates the X# HotKeyEdit Object
4    oHK := HotKeyEdit{self, 100, Point{10,10}, Dimension{100,20}}
5    // Calling Create forces the Windows control to be created
6    oHK:Create()
参见