- 1、本文档共19页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
Windows Shell Programming Task Ba.ppt
Windows Shell Programming Task Bar Introduction Introduction Two display options: Auto Hide and Always On Top. 取得 Toolbar 的顯示狀態 use the ABM_GETSTATE message Registering an Application Desktop Toolbar 要接收 Task Bar 的訊息, 就必須先註冊 使用 ABM_NEW message 移除註冊使用 ABM_REMOVE 使用範例 自動設定 TaskBar 狀態 use the ABM_SETSTATE message TaskBar 的 Status Area 一般應用程式利用 Status Area 顯示目前的狀態 Adding, Modifying, and Deleting Icons in the Status Area Actions with status area icons To add an icon to the taskbars status area To modify an icons information To delete an icon from the status area To add an icon Add an Icon 完整範例 Modify an Icon’s Information delete an icon 全部合在一起 攔截 Mouse Clicked Callback function 的處理 定義我們自己的處理 End * * 重要參考資料: ms-help://MS.MSDNQTR.2004JAN.1033/shellcc/platform/shell/programmersguide/ shell_int/shell_int_programming/taskbar.htm Quick Launch Bar Start Menu ToolBar buttons Status area contains commands that can access programs, documents, and settings contains shortcuts to applications A single click on the applications icon in this area launches the application. To switch to a window, the user clicks its window button. Applications can put icons in the status area to indicate the status of an operation or to notify the user about an event Auto Hide Always On Top 1 2 void CRetiveveTheStateofTaskbarDlg::OnBnClickedOk(){ // Step 1: 建立 APPBARDATA 結構以包含 system appbar message APPBARDATA abd; abd.cbSize=sizeof(APPBARDATA); // Step 2: Send appbar message 給系統 (要求取出 task bar 的狀態) UINT uState = (UINT) SHAppBarMessage(ABM_GETSTATE, abd); switch(uState){ case ABS_ALWAYSONTOP: MessageBox(The taskbar is in the always-on-top state,\ Taskbar status); break; case ABS_AUTOHIDE: MessageBox(The taskbar is in the autohide state,Taskbar status); break; default: MessageBox(Error (invalid args?),Error); } } 取得目前 Task Bar 的顯示狀態
您可能关注的文档
- Longest Increasing Subsequences in Windows Based o…….ppt
- Macromedia Flash 5.ppt
- Macromedia Flash Design Application.ppt
- Managing Multiple Windows with OpenGL and GLUT.ppt
- Math Flash Fractions III.ppt
- Math Flash.ppt
- MBA运营管理-4工艺.ppt
- MCSE Guide to Microsoft Windows 7.ppt
- MCTS Guide to Microsoft Windows 7.ppt
- MCTS Guide to Microsoft Windows Vista.ppt
文档评论(0)