thotkey是一个windows common control热键的包。
类关系:tobject->tpersistent->tcomponent->tcontrol->twincontrol->tcustomhotkey
对象thotkey中实现了在tcustomhotkey类中介绍的一般方法。对象 thotkey公开了许多从tcustomhotkey类中继承来的属性。当没有定义任何其他的新特性时,使用thotkey对旬可以建立一个组合热键。
方法列表
~thotkey 释放与thotkey对象有关的内存。
~thotkey 创建一个新的thotkey对象
thotkey::~thotkey
__fastcall virtual ~thotkey(void){ }
释放与thotkey对象有关的内存。
不要直接调用~thotkey。用delete会自动调用~thotkey。
thotkey::thotkey
__fastcall virtual thotkey(classes::tcomponent* aowner): comctrls:tcustomhotkey(aowner){ }
__fastcall thotkey(hwnd parentwindow):comctrls::tcustomhotkey(parentwindow){ }
创建一个新的thotkey对象。
用new间接调用thotkey。把一个组件作为参数传递为thotkey语法。把一个窗口句柄作为参数传递可把thotkey嵌入非vcl窗口。该语法在控制作为嵌入非vcl窗口的activex控制实现时使用。