Form (gb.qt4)
程序中每个窗体的父类。
作为缺省,一个窗体是它/自己的/事件观察器,这意味着窗体对象发生的所有事件被窗体源代码中定义的事件处理捕获。
Examples
PUBLIC SUB btnOpenForm1_Click()
DIM newform AS Form
' 这是一个IDE中创建的窗体,在屏幕上移动它。
Form1.Show ' 激活,首次显示Form1窗体
WAIT 1.5
Form1.X = 20
Form1.Y = 200 ' 移动窗体
WAIT 1.5
Form1.X = 90
Form1.Y = 150 ' 再次移动窗体
' 这是一个用程序代码新创建的窗体
newform = NEW Form
newform.x = 180
newform.Y = 180
newform.Caption = "另一个被创建的窗体"
newform.Show
END
该类继承于
Window.
在需要时,通过创建一个隐含的实例,该类可以像对象一样使用。
该类是
可创建。
该类行为像一个
只读数组。
Inherited constants
静态方法
Load
|
This function is called Load to recall the Visual Basic™ terminology.
|
Main
|
|
Inherited properties
Inherited methods
Inherited events