摘要: ///////////////////////////////////////////// 透明的控件, 一般继承自TGraphicControl的 (就是那些没有handle属性, 不能有focus的控件, 如image) 都有Transparent属性. 对TW... 阅读全文
posted @ 2009-03-13 11:12 谭志宇 阅读(3387) 评论(0) 推荐(0)
摘要: procedure TForm1.FormCreate(Sender: TObject); var i:integer; begin for i:=0 to ComponentCount-1 do if Components[i] is TEdit then (Components[i] as TEdit).OnKeyPress:=EditKeyPress; end; ... 阅读全文
posted @ 2009-03-13 00:26 谭志宇 阅读(1046) 评论(0) 推荐(0)