码迷,mamicode.com
首页 > 其他好文 > 详细

TControl.WMLButtonUp的inherited的作用

时间:2015-08-25 21:31:04      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:

procedure TControl.WMLButtonUp(var Message: TWMLButtonUp);
begin
inherited;
if csCaptureMouse in ControlStyle then MouseCapture := False;
if csClicked in ControlState then
begin
Exclude(FControlState, csClicked);
if PtInRect(ClientRect, SmallPointToPoint(Message.Pos)) then Click;
end;
DoMouseUp(Message, mbLeft);
end;

TControl.WMLButtonUp的inherited的作用

标签:

原文地址:http://www.cnblogs.com/findumars/p/4758554.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!