深入浅出 CPropertySheet

为了最大限度的发挥属性页的效用,首先让我们先从 CPropertySheet 继承一个新类,取名为 CMyPropSheet.

接着便可以进行下面的各种操作:

一、隐藏属性页默认按钮

隐藏掉Apply应用按钮:

view source
print?
1.propsheet.m_psh.dwFlags |= PSH_NOAPPLYNOW;

或隐藏掉Cancel取消按钮:

view source
print?
1.CWnd *pWnd = GetDlgItem( IDCANCEL );
2.pWnd->ShowWindow( FALSE );

二、移动属性页按钮

首先,要获取按钮的句柄,然后就可以象对待窗体一样处理它们了. 下面代码先隐藏掉Apply和Help铵钮,再把OK和Cancel按移动到右侧。

view source
print?
01.BOOL CMyPropSheet::OnInitDialog () 
02.{
03.    BOOL bResult = CPropertySheet::OnInitDialog();
04.  
05.    int ids [] = {IDOK, IDCANCEL};//, ID_APPLY_NOW, IDHELP };
06.      
07.    // Hide Apply and Help buttons
08.    CWnd *pWnd = GetDlgItem (ID_APPLY_NOW);
09.    pWnd->ShowWindow (FALSE);
10.    pWnd = GetDlgItem (IDHELP);
11.    pWnd->ShowWindow (FALSE);
12.      
13.    CRect rectBtn;
14.    int nSpacing = 6;        // space between two buttons...
15.  
16.    for( int i =0; i < sizeof(ids)/sizeof(int); i++)
17.    {
18.        GetDlgItem (ids [i])->GetWindowRect (rectBtn);
19.          
20.        ScreenToClient (&rectBtn);
21.        int btnWidth = rectBtn.Width();
22.        rectBtn.left = rectBtn.left + (btnWidth + nSpacing)* 2;
23.        rectBtn.right = rectBtn.right + (btnWidth + nSpacing)* 2;
24.  
25.        GetDlgItem (ids [i])->MoveWindow(rectBtn);
26.    }
27.  
28.      
29.    return bResult;
30.}

下面代码移动所有按钮到右侧,并且重新置属性页为合适的大小.

view source
print?
01.BOOL CMyPropSheet::OnInitDialog () 
02.{
03.    BOOL bResult = CPropertySheet::OnInitDialog();
04.  
05.      
06.    int ids[] = { IDOK, IDCANCEL, ID_APPLY_NOW };
07.      
08.    CRect rectWnd;
09.    CRect rectBtn;
10.      
11.    GetWindowRect (rectWnd);
12.    GetDlgItem (IDOK)->GetWindowRect (rectBtn);
13.      
14.    int btnWidth = rectBtn.Width();
15.    int btnHeight = rectBtn.Height();
16.    int btnOffset = rectWnd.bottom - rectBtn.bottom;
17.    int btnLeft = rectWnd.right - rectWnd.left;
18.  
19.    rectWnd.bottom = rectBtn.top;
20.    rectWnd.right = rectWnd.right + btnWidth + btnOffset;
21.    MoveWindow(rectWnd);
22.      
23.    rectBtn.left = btnLeft;
24.    rectBtn.right = btnLeft + btnWidth;
25.  
26.    for (int i = 0; i < sizeof (ids) / sizeof (int); i++)
27.    {
28.        rectBtn.top = (i + 1) * btnOffset + btnHeight * i;
29.        rectBtn.bottom = rectBtn.top + btnHeight;
30.        GetDlgItem (ids [i])->MoveWindow (rectBtn);
31.    }
32.      
33.    return bResult;
34.}

 三、改变属性页上的标签文字

首先修改TC_ITEM结构,然后用 SetItem 来修改标签文字,如下代码:

view source
print?
1.TC_ITEM item;
2.item.mask = TCIF_TEXT;
3.item.pszText = "New Label";
4.  
5.//Change the label of the first tab (0 is the index of the first tab)...
6.GetTabControl ()->SetItem (0, &item);

四、改变属性页标签文字的字体属性

代码如下

view source
print?
1.m_NewFont.CreateFont (14, 0, 0, 0, 800, TRUE, 0, 0, 1, 0, 0, 0, 0, _T("Arial") );
2.    GetTabControl()->SetFont (&m_NewFont);

五、在属性页标签上显示位图

可以用 CImageList 建立图像. 用 SetItem 来设置,如下代码所示:

view source
print?
01.BOOL CMyPropSheet::OnInitDialog ()
02.{
03.    BOOL bResult = CPropertySheet::OnInitDialog();
04.  
05.    m_imageList.Create (IDB_MYIMAGES, 13, 1, RGB(255,255,255));
06.    CTabCtrl *pTabCtrl = GetTabControl ();
07.    pTabCtrl->SetImageList (&m_imageList);
08.      
09.    TC_ITEM item;
10.    item.mask = TCIF_IMAGE;
11.    for (int i = 0; i < NUMBER_OF_TABS; i++)
12.    {
13.        item.iImage = i;
14.        pTabCtrl->SetItem (i, &item );
15.    }
16.  
17.    return bResult;
18.}

六、在属性页左下角显示位图

如下代码所示:

view source
print?
01.void CMyPropSheet::OnPaint () 
02.{
03.    CPaintDC dc(this); // device context for painting
04.      
05.    int nOffset = 6;
06.    // load IDB_BITMAP1 from our resources
07.    CBitmap bmp;
08.    if (bmp.LoadBitmap (IDB_BITMAP1))
09.    {
10.        // Get the size of the bitmap
11.        BITMAP bmpInfo;
12.        bmp.GetBitmap (&bmpInfo);
13.          
14.        // Create an in-memory DC compatible with the
15.        // display DC we''re using to paint
16.        CDC dcMemory;
17.        dcMemory.CreateCompatibleDC (&dc);
18.          
19.        // Select the bitmap into the in-memory DC
20.        CBitmap* pOldBitmap = dcMemory.SelectObject (&bmp);
21.          
22.        // Find a bottom-left point for the bitmap in the client area
23.        CRect rect;
24.        GetClientRect (&rect);
25.        int nX = rect.left + nOffset;
26.        int nY = rect.top + (rect.Height () - bmpInfo.bmHeight) - nOffset;
27.          
28.        // Copy the bits from the in-memory DC into the on-
29.        // screen DC to actually do the painting. Use the centerpoint
30.        // we computed for the target offset.
31.        dc.BitBlt (nX, nY, bmpInfo.bmWidth, bmpInfo.bmHeight, &dcMemory, 
32.            0, 0, SRCCOPY);
33.          
34.        dcMemory.SelectObject (pOldBitmap);
35.    }
36.  
37.    // Do not call CPropertySheet::OnPaint() for painting messages
38.}

七、在属性页右下角显示3D文字Logo

代码如下:

view source
print?
01.void CMyPropSheet::OnPaint () 
02.{
03.    /
04.    //在TAB按钮旁边显示3D文字提示,jingzhou xu
05.    Cstring m_LogoName = “属性页”;
06.//  if(m_LogoName == "")
07.//      return;
08.  
09.    GetWindowRect(rect);
10.    ScreenToClient(rect);
11.      
12.    LOGFONT logFont;
13.    ZeroMemory((void*)&logFont,sizeof(logFont));
14.    strcpy(logFont.lfFaceName,"宋体");
15.    logFont.lfHeight = -12;
16.    logFont.lfWeight = 400;
17.    logFont.lfCharSet = GB2312_CHARSET;
18.    logFont.lfOutPrecision = 3;
19.    logFont.lfClipPrecision = 2; 
20.    logFont.lfQuality = 1;
21.    logFont.lfPitchAndFamily = 2;
22.    m_font.CreateFontIndirect(&logFont);
23.    SetFont(&m_font);
24.    CFont   *pOldFont = pDC->SelectObject(&m_font);
25.  
26.        rect.left += 6;
27.        rect.right -= 6;
28.        rect.bottom -= 1;
29.        rect.top = rect.bottom - ITEMBUTTON_HEIGHT + 1;
30.      
31.  
32.    CFont m_LogoFont;
33.    CString sLogoString;
34.          
35.    m_LogoFont.CreateFont(rect.Height()*4/5, 0, 0, 0, FW_BOLD, 1, FALSE, FALSE,
36.            DEFAULT_CHARSET, OUT_DEFAULT_PRECIS, CLIP_DEFAULT_PRECIS, DEFAULT_QUALITY,
37.            FIXED_PITCH | FF_ROMAN, "楷体_GB2312");
38.          
39.    sLogoString = m_LogoName;
40.          
41.    RECT m_rDataBox;
42.    CopyRect(&m_rDataBox,&rect);
43.          
44.    TEXTMETRIC tm;
45.    pDC->GetTextMetrics(&tm);
46.    CFont* oldFont = pDC->SelectObject(&m_LogoFont);
47.    CSize sz = pDC->GetTextExtent(sLogoString, sLogoString.GetLength());
48.    //用GetTextExtent来计算字体logo大小,依靠于设备环境,使用logo位于右下角
49.    m_rDataBox.left = m_rDataBox.right  - sz.cx - tm.tmAveCharWidth/2;
50.    m_rDataBox.top  = m_rDataBox.bottom - sz.cy - tm.tmHeight/5;
51.    pDC->SetBkMode(TRANSPARENT);
52.    //用3D字体显示,先黑后白,最后再用默认色
53.    COLORREF oldColor = pDC->SetTextColor(GetSysColor(COLOR_3DDKSHADOW));
54.    pDC->DrawText(sLogoString, sLogoString.GetLength(), &m_rDataBox, DT_VCENTER | DT_SINGLELINE | DT_CENTER);
55.    m_rDataBox.left -= tm.tmAveCharWidth;
56.    pDC->SetTextColor(GetSysColor(COLOR_3DHILIGHT));
57.    pDC->DrawText(sLogoString, sLogoString.GetLength(), &m_rDataBox, DT_VCENTER | DT_SINGLELINE | DT_CENTER);
58.    m_rDataBox.left += 3*tm.tmAveCharWidth/5;
59.    pDC->SetTextColor(RGB(0,0,255));
60.    pDC->DrawText(sLogoString, sLogoString.GetLength(), &m_rDataBox, DT_VCENTER | DT_SINGLELINE | DT_CENTER);
61.          
62.    //释放资源
63.    pDC->SelectObject(oldFont);
64.    pDC->SetTextColor(oldColor);   
65.    m_LogoFont.DeleteObject();
66.    //
67.}

八、在属性页中动态加入其它控件

下面演示如何在左下角加入一Edit控件:

MyPropSheet.h中:

view source
print?
1.public:
2.    CEdit m_edit;

MyPropSheet.cpp中:

view source
print?
01.BOOL CMyPropSheet::OnInitDialog ()
02.{
03.    BOOL bResult = CPropertySheet::OnInitDialog ();
04.  
05.      
06.    CRect rect;
07.      
08.    int nHeight = 24;
09.    int nWidth = 120;
10.    int nOffset = 6;
11.      
12.    GetClientRect (&rect);
13.  
14.    // Find a bottom-left point for the edit control in the client area
15.    int nX = rect.left + nOffset;
16.    int nY = rect.top + (rect.Height() - nHeight) - nOffset;
17.      
18.    // finally create the edit control
19.    m_Edit.CreateEx (WS_EX_CLIENTEDGE, _T("EDIT"), NULL,
20.                     WS_CHILD | WS_VISIBLE | WS_TABSTOP | WS_BORDER, 
21.        nX, nY, nWidth, nHeight, m_hWnd, 0, 0 );
22.  
23.    return bResult;
24.}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/435617.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

【转】make makefile cmake qmake都是什么,有什么区别?

转自&#xff1a; 作者&#xff1a;知乎用户 链接&#xff1a;https://www.zhihu.com/question/27455963/answer/89770919 来源&#xff1a;知乎 著作权归作者所有。商业转载请联系作者获得授权&#xff0c;非商业转载请注明出处。 1.gcc是GNU Compiler Collection&#xf…

WinCE 字体平滑 ClearType

WinCE 5.0 字体效果糙&#xff0c;英文字体&#xff08;Zurich&#xff09;可以在代码里面设置ClearType&#xff0c;中文字体不行。 解决方法&#xff1a; [HKEY_LOCAL_MACHINE\System\GDI] "FontLinkMethods"dword:00000000 [HKEY_LOCAL_MACHINE\System\GDI\Cle…

用ASP.NET 2.0设计网络在线投票系统

一、系统功能设计和数据库设计 1、系统功能设计和数据库设计 1.1 系统功能设计 网络在线投票系统实现的功能比较简单&#xff0c;具体如下&#xff1a; ◎投票项目的管理&#xff1b; ◎添加投票的项目&#xff1b; ◎删除投票的项目&#xff1b; ◎对项目进行投票&#xff1…

Convert.Int32、(int)和int.Parse三者的区别

今天去面试&#xff0c;碰到这样一道题目&#xff0c;回来查了下答案~&#xff01; Convert.ToInt32、(int)和int.Parse三者的区别&#xff1a; 前者适合将object类类型转换成int类型&#xff0c;如Convert.ToInt32(session["shuzi"]); (int)适合简单数据类型之间的转…

Wince6.0 cleartype

WinCE6.0下显示宋体毛刺很严重&#xff0c;影响显示效果&#xff0c;打开cleartype以后字体显示平滑&#xff0c;但是不知道为什么wince桌面上的中文字体显示乱码&#xff0c;而且自己的引用程序也变的很卡。 开始以为是字库的原因&#xff0c;后来添加了系统的组件以后一切正常…

【转】ubuntu16.04安装配置tftp服务

转自&#xff1a;ubuntu16.04安装配置tftp服务_carspiriter的博客-CSDN博客_ubuntu安装tftp 首先声明&#xff1a;tftp是client客户端&#xff0c;tftpd是server服务器端&#xff0c;d应该指的是daemon。如果你要从别人的tftp服务器端上传/下载东西&#xff0c;就要用到tftp&a…

如何编程得到数据库信息

获取数据库信息&#xff1a;public List<string> GetDatabase(string connectionString) {using (SqlDataAdapter sqlDataAdapter new SqlDataAdapter("SELECT Name FROM Master.sys.SysDatabases WHERE dbid > 4 ORDER BY Name ", connectionStrin…

【转】Dicom中的Image Orientation/Position的理解

转自&#xff1a;Dicom中的Image Orientation/Position的理解 - 知乎 在DICOM中&#xff0c;是通过Image Position和Image Orientation来描述当前的图像和人体坐标系的相对位置的。 打开DCM文件时&#xff0c;会发现下边的两个tag (0020,0032) DS ImagePosition(Patient) &q…

搭建TFS2008的过程及其注意事项

TFS服务端的安装 1、安装windows Server 2003 操作系统 2、打windows Server 2003 sp2 补丁 3、安装iis, 记得选上asp.net &#xff0c;不能选extend homepage 4、访问 Microsoft 网站上的 Windows Update&#xff0c;并安装“高优先级更新程序”组中的所有项 5、装上ms sql2…

【转】矩阵变换坐标系 深入理解

转自&#xff1a;矩阵变换坐标系 深入理解 - 知乎 网址链接&#xff1a;从坐标系图中理解“空间变换” 小谈矩阵和坐标变换 矩阵坐标系变化理解 让我们从一个实际的例子入手&#xff1a;下图是一个用两维的笛卡尔坐标系表示的二维空间。 其中&#xff0c;黑色坐标系 x-y代表…

【转】坐标系变换矩阵推导

转自&#xff1a; 坐标系的变换矩阵推导 1.平移变换 假设存在点(x,y,z)&#xff0c;将x移动a&#xff0c;y移动b&#xff0c;z移动c&#xff0c;到新的点(x′,y′,z′)&#xff0c;则&#xff1a; 中间4x4的矩阵叫变换矩阵。可见&#xff0c;如果要平移坐标&#xff0c;要将坐…

Crystal Report 2008

郁闷的Crystal Report 2008&#xff0c;下午逛了一圈sap网站&#xff0c;Crystal给Sap收购后就没怎么上过他们的网站&#xff0c;像迷宫一下逛了半天才找到下载升级包的地址&#xff0c;备用&#xff0c;也许你看到的时候已经失效了 http://www.sdn.sap.com/irj/boc/crystalrep…

【转】图形流水线中坐标变换详解:模型矩阵、视角矩阵、投影矩阵

转自&#xff1a;图形流水线中坐标变换详解&#xff1a;模型矩阵、视角矩阵、投影矩阵_sherlockreal的博客-CSDN博客_视角矩阵 图形流水线中坐标变换详解&#xff1a;模型矩阵、视角矩阵、投影矩阵 图形流水线中坐标变换过程模型矩阵&#xff1a;模型局部坐标系和世界坐标系之…

set row count

SET ROWCOUNT 使 Microsoft&reg; SQL Server 在返回指定的行数之后停止处理查询。 语法 SET ROWCOUNT { number | number_var } 参数 number | number_var 是在停止给定查询之前要处理的行数&#xff08;整数&#xff09;。 注…

【转】C#开发PACS医学影像处理系统(二):界面布局之菜单栏

转自&#xff1a;C#开发PACS医学影像处理系统(二)&#xff1a;界面布局之菜单栏 - 乔克灬叔叔 - 博客园 在菜单栏布局上&#xff0c;为了使用自定义窗体样式和按钮&#xff0c;我们需要先将窗体设置为无边框&#xff0c;然后添加一个Grid作为菜单栏并置顶&#xff0c;Vertical…

WF4.0 基础篇 (二十九) WorkflowInspectionServices

本文例子下载: http://files.cnblogs.com/foundation/WorkflowInspectionServicesSample.rar WorkflowInspectionServices 类 WorkflowInspectionServices可以得到流程中的Activity&#xff0c; 由于WF4.0的ActivityTree相对复杂,并不是象WF3.X的结构那样清晰, 在WF4.0中Activi…

Linux 命令平时积累

我是Windows Live Writer 写博客&#xff0c;来记录我平时遇到的一些问题和解决的方法。 记得刚刚接触Linux的时候&#xff0c;自己真是一名不折不扣的菜鸟&#xff0c;通过一年的努力&#xff0c;自己可以单独操作Linux了&#xff0c;我将把以后遇到的比较有用的命令积累在这篇…

【转】C#开发PACS医学影像处理系统(三):界面布局之工具栏

转自&#xff1a;https://www.cnblogs.com/Uncle-Joker/p/13650330.html 工具栏布局采用WPF中Grid作为容器&#xff0c;按钮采用自定义样式和图标&#xff0c;并采用Separator分割线&#xff1a; XAML设计器代码&#xff1a; 其中 Style"{StaticResource ButtonStyle}&…

WinCE6.0 修改开机Logo方法

中秋假期已过&#xff0c;回来继续该博文主题。今天讲解第二种方法&#xff0c;将 Logo 图片的数据写入到 Nand Flash 中&#xff0c;在启动初始化 LCD 的时候&#xff0c;从固定的地址将数据读出并填充到显示缓存中。实验平台&#xff1a;WinCE6.0Android6410 4.3寸CLD。以下内…

sql 替换text字段中的指定字符

--text不能直接替换 --mbody未目标字段update b_mail set mbodyreplace(convert(varchar(max),mbody),_viewstate,viewstate) where mno124转载于:https://www.cnblogs.com/stealther/archive/2010/04/02/1703191.html