程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 更多關於編程 >> VC++ 自定義控件的建立及使用方法

VC++ 自定義控件的建立及使用方法

編輯:更多關於編程

       這篇文章主要介紹了VC++ 自定義控件的建立及使用方法的相關資料,十分的詳細,需要的朋友可以參考下

      一、VC++定義自定義控件與delphi,VB有些差異。

      delphi,vb在 file-new-other中建立。vc++在工具欄中就有自定義控件,但必須加入控件類型。

      許多書籍都在類向導中建立。我這裡介紹的是手動建立,其結果是一樣的。

      二.建立過自定義控件類型:

      2.1、把工具欄上的自定義控件放入對話框中

      2.2、建立Mycontrol.h, Mycontrol.cpp文件

      2.3、Mycontrol.h中的定義是

      ?

    1 2 3 4 5 6 7 8 9 10 11 12 13 #ifndef __MYCTROLTRL_H__ #define __MYCTROLTRL_H__ #define MYWNDCLASS "mycontrol" #include <afxtempl.h> class CMycontrol: public CWnd { private: public: static BOOL RegisterWndClass(); CMycontrol(); void customfun();//一個自定義方法 }; #endif

      2.4 Mycontrol.cpp中的實現部分

      ?

    1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 #include "StdAfx.h" #include "mycontrol.h" CMycontrol::CMycontrol() { CMycontrol::RegisterWndClass(); } //注冊控件RegisterWndClass格式是固定的不要記憶沒有那個必要直接拷貝粘貼就可以。 CMycontrol::RegisterWndClass() { WNDCLASS windowclass; HINSTANCE hInst = AfxGetInstanceHandle(); //Check weather the class is registerd already if (!(::GetClassInfo(hInst, MYWNDCLASS, &windowclass))) { //If not then we have to register the new class windowclass.style = CS_DBLCLKS;// | CS_HREDRAW | CS_VREDRAW; windowclass.lpfnWndProc = ::DefWindowProc; windowclass.cbClsExtra = windowclass.cbWndExtra = 0; windowclass.hInstance = hInst; windowclass.hIcon = NULL; windowclass.hCursor = AfxGetApp()->LoadStandardCursor(IDC_ARROW); windowclass.hbrBackground = ::GetSysColorBrush(COLOR_WINDOW); windowclass.lpszMenuName = NULL; windowclass.lpszClassName = MYWNDCLASS; if (!AfxRegisterClass(&windowclass)) { AfxThrowResourceException(); return FALSE; } } return TRUE; } //自定義方法 void CMycontrol::customfun() { AfxMessageBox(_T("my control!")); }

      三、使用自定義控件

      3.1.在類向導中綁定自定義控件時你是找不到剛才你定義的類型的,所以我采用手動加入代碼方法。

      3.2.在對話框.h文件中手動加入:public: CMycontrol m_mycontrol;

      3.3.在對話框.cpp文件中手動加入:DDX_Control(pDX,IDC_CUSTOM1,m_mycontrol);

      3.4.在對話框中加入Button 在點擊事件中加入測試代碼:

      ?

    1 2 3 4 5 void CCustomcontrolDlg::OnButton1() { // TODO: Add your control notification handler code here m_mycontrol.customfun(); }

      四、編譯運行vc++自定義控件的對話框窗體.編譯成功但運行什麼也不顯示的解決

      右鍵自定義控件->屬性->類型中填寫"mycontrol"再次允許OK!

      到此VC++自定義控件就全部介紹完畢,你可以在類型中加入你要實現的方法。

      以上所述就是本文的全部內容了,希望大家能夠喜歡。

    1. 上一頁:
    2. 下一頁:
    Copyright © 程式師世界 All Rights Reserved