Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1612966
  • 博文数量: 585
  • 博客积分: 14610
  • 博客等级: 上将
  • 技术积分: 7402
  • 用 户 组: 普通用户
  • 注册时间: 2008-05-15 10:52
文章存档

2013年(5)

2012年(214)

2011年(56)

2010年(66)

2009年(44)

2008年(200)

分类: C/C++

2012-01-27 02:05:17

 在MFC中用WriteProfileInt等方法保存应用程序配置
分类: 2.1 VC++/MFC 218人阅读 评论(0) 收藏 举报
0.简介

CWinApp类中提供了一组用于读写应用程序配置的方法:
GetProfileInt
WriteProfileInt

GetProfileString
WriteProfileString

可方便的用于读写应用程序配置。

1.关于CWinApp::SetRegistryKey方法

用VC++的向导建立MFC项目之后,在InitInstance中可以看到这样的语句:
SetRegistryKey(_T("应用程序向导生成的本地应用程序"));

该函数将为以上提到的几个方法建立工作环境,此时如果用WriteProfileInt写入数据,将会被写入到如下注册表位置:
HKEY_CURRENT_USER/Software/应用程序向导生成的本地应用程序/应用程序名称/

如果在InitInstance中不执行SetRegistryKey,则用WriteProfileInt写入数据时,将写入到

%windir%/应用程序名称.ini中。

2.用法a.如果在InitInstance中执行了SetRegistryKey("清风居");

则对于:
WriteProfileInt("section","val1",10);

将在注册表中如下路径写入数据:

[HKEY_CURRENT_USER/Software/清风居/测试应用程序/section]
"val1"=dword:0000000a

注:“测试应用程序”是应用程序的名称。

b.如果在InitInstance中没执行SetRegistryKey

则对于:
WriteProfileInt("section","val1",10);

将在“%windir%/测试应用程序.ini”中写入:

[section]
val1=10

3.实例:保存应用程序的窗口大小和位置

 

//改变大小时
void CMyDlg::OnSize(UINT nType, int cx, int cy)
if (m_bInitDialog && cx{
 //保存当前大小位置
 CRect rcWindow;
 GetWindowRect(&rcWindow);
 theApp.WriteProfileInt("Settings","left",rcWindow.left);
 theApp.WriteProfileInt("Settings","top",rcWindow.top);
 theApp.WriteProfileInt("Settings","right",rcWindow.right);
 theApp.WriteProfileInt("Settings","bottom",rcWindow.bottom);
}

//移动窗口时
void CMyDlg::OnMove(int x, int y)
{
 if (m_bInitDialog && x!=0 && y!=0)
 {
  //保存当前大小位置
  CRect rcWindow;
  GetWindowRect(&rcWindow);
  theApp.WriteProfileInt("Settings","left",rcWindow.left);
  theApp.WriteProfileInt("Settings","top",rcWindow.top);
  theApp.WriteProfileInt("Settings","right",rcWindow.right);
  theApp.WriteProfileInt("Settings","bottom",rcWindow.bottom);
 }
}

//初始化
BOOL CMyDlg::OnInitDialog()
{
 CRect rcWindow;
 rcWindow.left=theApp.GetProfileInt("Settings","left",200);
 rcWindow.top=theApp.GetProfileInt("Settings","top",120);
 rcWindow.right=theApp.GetProfileInt("Settings","right",800);
 rcWindow.bottom=theApp.GetProfileInt("Settings","bottom",600);
 MoveWindow(&rcWindow);
}

本文转载自:

阅读(837) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~