用户登录  |  用户注册
首 页商业源码原创产品编程论坛
当前位置:PB创新网文章中心编程技巧C++ Builder

如何使用OnIdle事件

减小字体 增大字体 作者:佚名  来源:本站整理  发布时间:2009-03-16 20:44:17

使用OnIdle事件随时监视剪贴板内容以改变弹出菜单的可执行项。
在Form1的.h的private加上:
void __fastcall OnIdle(TObject* Sender,bool& Done);
在Form1的.cpp内加上:
void __fastcall TForm1::OnIdle(TObject* Sender,bool& Done)
{
 bool TextSelected=DBRichEdit1->SelLength>0;
 N17->Enabled=TextSelected;//剪切,复制,清除
 N18->Enabled=TextSelected;
 N20->Enabled=TextSelected;
 bool CBHasText=Clipboard()->HasFormat(CF_TEXT);// 需加入#include<Clipbrd.h>
 N19->Enabled=CBHasText;//粘贴
 bool HasText=RichEdit1->Lines->Count>0;
 N21->Enabled=HasText;//全选
 bool HasChanged=RichEdit1->Modified;
 ToolButton2->Enabled=HasChanged;
 ToolButton4->Enabled=HasChanged;
}
在Form1的OnCreate内加上:
Application->OnIdle=OnIdle; 

Tags:

作者:佚名

文章评论评论内容只代表网友观点,与本站立场无关!

   评论摘要(共 0 条,得分 0 分,平均 0 分) 查看完整评论
PB创新网ourmis.com】Copyright © 2000-2009 . All Rights Reserved .
页面执行时间:24,687.50000 毫秒
Email:ourmis@126.com QQ:2322888 蜀ICP备05006790号