下载首页 | 资讯中心 | 文章分类 | 最近更新 | 排 行 榜 | 国产软件 | 国外软件 | 绿色软件 | 汉化补丁 | |
文章搜索: 分类 关键字
您的位置:首页编程开发编程语言 → 用VC实现动态改变Windows的显示特性
用VC实现动态改变Windows的显示特性
来源:天极yesky 作者: 加入时间:2006-12-8 访问次数:3 [  ]



Bool GetCurrentVideoSettings(DEVMODE *devmode)
{
 HWND hwndDesktop=GetDesktopWindow();
 HDC hdc=GetDC(hwndDesktop);
 devmode -> dmSize =sizeof(DEVMODE);
 devmode -> dmBitsPerPel=GetDeviceCaps(hdc,BITSPIXEL);
 devmode -> dmPelsWidth=GetSystemMetrics(SM_CXSCREEN);
 devmode -> dmPelsHeight=GetSystemMetrics(SM_CYSCREEN);
 devmode -> dmFields=DM_BITSPERPEL | DM_PELSWIDTH | DM_PELSHEIGHT;
 return TRUE;
}

  下面的代码展示了如何使用EnumDisplaySettings获得当前支持的所有显示模式:

int modenum,done;
DEVMODE devmode;
done=0;
modenum=0;
do
{
 done=!EnumDisplaySettings(NULL,modenum,&devmode);
 AddToList(&devmode);
 modenum++;
}while (!done);

  设置显示模式的方法如下:

  rc = ChangeDisplaySettings(&devmode,CDS_FULLSCREEN));这里的devmode就是前面使用EnumDisplaySettings获得的。如果设置正常,返回值DISP_CHANGE_SUCCESSFUL。

  二、 编程步骤

  1、启动Visual C++6.0,生成一个基于对话框的项目ChngDsplyMd,在对话框上放置三个编辑控件,ID分别命名为ID_EDIT_WIDTH、ID_EDITHEIGHT、ID_EDIT_BITS,为了说明编辑框控件的功能,其中前二个编辑框控件放置在一个标题为"屏幕区域"的组合框中,第三个编辑框控件旁边添加一个STATIC控件,"Caption"设置为"像素位数"。对话框架上的两个按钮控件的"Caption分别设置为"改变分辩率"、"关闭",ID分别定义为IDC_CHANGE、IDOK;

  2、使用Class Wizard为上述三个编辑控件定义相应的成员变量,它们分别为:

  UINT m_nWidthPixels、 UINT m_nHeightPixels、 UINT m_nBitsPerPixel

  3、实现对话框架中的按钮单击情况下的处理函数,编译运行程序。

 三、实现代码

///////////////////////////////////////////////////////////////////// ChngDsplyMdDlg.h : header file
#if !defined(AFX_CHNGDSPLYMDDLG_H__1D52415E_62DE_11D6_8F32_00E04CE76240__INCLUDED_)
#define AFX_CHNGDSPLYMDDLG_H__1D52415E_62DE_11D6_8F32_00E04CE76240__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CChngDsplyMdDlg : public Cdialog // CChngDsplyMdDlg dialog
{
 // Construction
 public:
  CChngDsplyMdDlg(CWnd* pParent = NULL); // standard constructor
  // Dialog Data
  //{{AFX_DATA(CChngDsplyMdDlg)
   enum { IDD = IDD_CHNGDSPLYMD_DIALOG };
   UINT m_nBitsPerPixel;
   UINT m_nHeightPixels;
   UINT m_nWidthPixels;
  //}}AFX_DATA
  // ClassWizard generated virtual function overrides
  //{{AFX_VIRTUAL(CChngDsplyMdDlg)
   protected:
    virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  //}}AFX_VIRTUAL
  // Implementation
 protected:
  HICON m_hIcon;
 // Generated message map functions
 //{{AFX_MSG(CChngDsplyMdDlg)
  virtual BOOL OnInitDialog();
  afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  afx_msg void OnPaint();
  afx_msg HCURSOR OnQueryDragIcon();
  afx_msg void OnChagne();
 //}}AFX_MSG
 DECLARE_MESSAGE_MAP()
};
#endif
////////////////////////////////////////////////////////////////// // CChngDsplyMdDlg dialog
#include "stdafx.h"
#include "ChngDsplyMd.h"
#include "ChngDsplyMdDlg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
CChngDsplyMdDlg::CChngDsplyMdDlg(CWnd* pParent /*=NULL*/)
: CDialog(CChngDsplyMdDlg::IDD, pParent)
{
 //{{AFX_DATA_INIT(CChngDsplyMdDlg)
  m_nBitsPerPixel = 32;
  m_nWidthPixels = 1024;
  m_nHeightPixels = 768;
 //}}AFX_DATA_INIT
 // Note that LoadIcon does not require a subsequent DestroyIcon in Win32
 m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
}
void CChngDsplyMdDlg::DoDataExchange(CDataExchange* pDX)
{
 CDialog::DoDataExchange(pDX);
 //{{AFX_DATA_MAP(CChngDsplyMdDlg)
  DDX_Text(pDX, IDC_EDIT_BITS, m_nBitsPerPixel);
  DDX_Text(pDX, IDC_EDIT_HEIGHT, m_nHeightPixels);
  DDX_Text(pDX, IDC_EDIT_WIDTH, m_nWidthPixels);
 //}}AFX_DATA_MAP
}

BEGIN_MESSAGE_MAP(CChngDsplyMdDlg, CDialog)
//{{AFX_MSG_MAP(CChngDsplyMdDlg)
 ON_WM_SYSCOMMAND()
 ON_WM_PAINT()
 ON_WM_QUERYDRAGICON()
 ON_BN_CLICKED(IDC_CHAGNE, OnChagne)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CChngDsplyMdDlg message handlers
BOOL CChngDsplyMdDlg::OnInitDialog()
{
 CDialog::OnInitDialog();
 // Add "About..." menu item to system menu.
 // IDM_ABOUTBOX must be in the system command range.
 ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);
 ASSERT(IDM_ABOUTBOX < 0xF000);
 CMenu* pSysMenu = GetSystemMenu(FALSE);
 if (pSysMenu != NULL)
 {
  CString strAboutMenu;
  strAboutMenu.LoadString(IDS_ABOUTBOX);
  if (!strAboutMenu.IsEmpty())
  {
   pSysMenu->AppendMenu(MF_SEPARATOR);
   pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
  }
 }
 // Set the icon for this dialog. The framework does this automatically
 // when the application's main window is not a dialog
 SetIcon(m_hIcon, TRUE); // Set big icon
 SetIcon(m_hIcon, FALSE); // Set small icon
 // TODO: Add extra initialization here
 return TRUE; // return TRUE unless you set the focus to a control
}
void CChngDsplyMdDlg::OnSysCommand(UINT nID, LPARAM lParam)
{
 if ((nID & 0xFFF0) == IDM_ABOUTBOX)
 {
  CAboutDlg dlgAbout;
  dlgAbout.DoModal();
 }
 else
 {
  CDialog::OnSysCommand(nID, lParam);
 }
}
// If you add a minimize button to your dialog, you will need the code below
// to draw the icon. For MFC applications using the document/view model,
// this is automatically done for you by the framework.
void CChngDsplyMdDlg::OnPaint()
{
 if (IsIconic())
 {
  CPaintDC dc(this); // device context for painting
  SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
  // Center icon in client rectangle
  int cxIcon = GetSystemMetrics(SM_CXICON);
  int cyIcon = GetSystemMetrics(SM_CYICON);
  CRect rect;
  GetClientRect(&rect);
  int x = (rect.Width() - cxIcon + 1) / 2;
  int y = (rect.Height() - cyIcon + 1) / 2;
  // Draw the icon
  dc.DrawIcon(x, y, m_hIcon);
 }
 else
 {
  CDialog::OnPaint();
 }
}
// The system calls this to obtain the cursor to display while the user drags
// the minimized window.
HCURSOR CChngDsplyMdDlg::OnQueryDragIcon()
{
 return (HCURSOR) m_hIcon;
}
void CChngDsplyMdDlg::OnChagne()
{
 UpdateData(TRUE);
 DEVMODE lpDevMode;
 lpDevMode.dmBitsPerPel = m_nBitsPerPixel;
 lpDevMode.dmPelsWidth = m_nWidthPixels;
 lpDevMode.dmPelsHeight = m_nHeightPixels;
 lpDevMode.dmSize = sizeof(lpDevMode);
 lpDevMode.dmFields = DM_PELSWIDTH|DM_PELSHEIGHT|DM_BITSPERPEL;
 LONG result = ChangeDisplaySettings(&lpDevMode,0);
 if(result == DISP_CHANGE_SUCCESSFUL)
 {
  AfxMessageBox("修改成功");
  ChangeDisplaySettings(&lpDevMode,CDS_UPDATEREGISTRY);
  //使用CDS_UPDATEREGISTRY表示次修改是持久的,
  //并在注册表中写入了相关的数据
 }
 else
 {
  AfxMessageBox("修改失败,恢复原有设置");
  ChangeDisplaySettings(NULL,0);
 }
}

  
上一页 [1] [2] [3] 下一页
评论人 评论内容摘要(共 0 条,查看完整内容) 得分 0 发表时间
 热点文章
·惊爆!《暗黑破坏神3》将对应全平台
·《荣誉勋章:太平洋之战》中文版上市
·MediaShow魅力四射快速制作音乐电子相册
·《花木兰》完美流程攻略
·轻松可爱 最新10大Q版网络游戏推荐
·2006年暑期新宣布免费网络游戏一览
·photoshop制作水晶球中的精灵
·NVIDIA发布Forceware 93.71 WHQL驱动
·经验分享 微软Word2007实用技巧两则
·国内新记录产生 1M super pi运算仅用9秒
 推荐文章
·微软高官爆料:欧盟对Vista哪些功能不安
·在Google Talk上与QQ、MSN好友聊天
·Word使用过程中的常见问题及其解决
·手把手教你内存终极变相“造假”大法
·NVIDIA联手海盗船 推出自动超频内存
·Windows Vista特殊功能介绍:语音识别
·公安机关检验软件样本 流氓软件制造者面临坐牢危..
·比英特尔UMPC还要小 移动PC新品推出
·性感暴力完美结合 御姐武戏X新画面
·盖茨访谈:我就是微软里的兼职员工
WinXP下载基地 版权所有 Copyright© 2006-2008 WWW.WinXpd.COM, All Rights Reserved. 页面维护: WinXP下载基地(WinXP基D)