CB情况中实此刻菜单中显示汗青文件列表
本文先容了如安在Windows情况下实现菜单中显示汗青文件列表,同时提要先容了Tregistry类的利用要领。
此刻,在很多Windows应用措施都具有这样一个成果:可以在文件菜单下面显示列出最近会见过的文件,这利用户很容易再次会见曾经会见过的文件。在已往几年中,这项技能以成为拥有文件菜单项的应用措施的配合特色:如Wps系列和Office系列。在以前的DOS情况中,措施员一般通过建设一个文件用来记录文件列表;那么在Windows情况中,尚有其他的要领吗?最近笔者操作C++ Builder5.0 C/S版提供的Tregedit类乐成在注册表中实现了上述成果,现先容如下:
1、在C++ Builder中新建一个工程文件project1,并在Form1上添加如下控件:
控件名称 属性 值
TOpenDialog Name OpenDialog1
TMainMenu Name MainMneu1
同时在 MainMenu1控件中增加一个菜单项,其属性为
Name Caption
Items1 打开文件
2、在unit1.h中
private:
Tregistry *Registry;
String Items[3];//成立显示汗青文件的数组//
int ItemsCount;
void _fastcall TForm1::Display();//显示汗青文件记录//
3、在Items的Click事件中输入如下内容:
void __fastcall TForm1::Items1Click(Tobject *Sender)
{
String TempFile,Files;
OpenDialog1->Filter="All Files(*.*)|*.*";
if(OpenDialog1->Execute())
{
Files=OpenDialog1->FileName;//取得文件名//
for(int i=0;i<3;i++)
TempFile=Items[0];
if(ItemsCount<3)
ItemsCount++;
for(int i=ItemsCount-1;i>0;i--)
Items[i]=Items[i-1];//对打开的汗青文件进排序//
Items[0]=Files;//使最近打开的文件在最前面//
}
Display();
}
4、在unit.cpp中成立Display函数
void _fastcall TForm1::Display()
{
TMenuItem *NewItem;
while(MainMenu1->Items->Items[MainMenu1->Items->Count-1]->Count>2)
{
MainMenu1->Items->Items[MainMenu1->Items->Count-1]->
Delete(MainMenu1->Items->Items[MainMenu1->Items->Count-1]->Count-1);
}//撤除原有的汗青文件列表//
for(int i=0;i<ItemsCount;i++)
{
NewItem=new TMenuItem(MainMenu1);
NewItem->Caption=Items[i];
MainMenu1->Items->Items[MainMenu1->Items->Count-1]->Insert(MainMenu1->Items->Items[MainMenu1->Items->Count-1]->Count,NewItem);
}//成立新的汗青文件列表//
}
5、在Form1的Show事件中输入如下内容:
void __fastcall TForm1::FormShow(Tobject *Sender)
{
Registry =new Tregistry;
ItemsCount=0;
Registry->RootKey=HKEY_LOCAL_MACHINE;
Registry->OpenKey("SOFTWARE\\MYCOMPANY\\Remember",TRUE); //在注册表中打开主键,假如该主键不存在则新建该主键//
Items[0]=Registry->ReadString("Item1");//读items[i]字符串的值//
ItemsCount++;
Items[1]=Registry->ReadString("Item2");
ItemsCount++;
Items[2]=Registry->ReadString("Item3");
ItemsCount++;
}
6、在Form1的Show事件中输入如下内容:
void __fastcall TForm1::FormClose(Tobject *Sender, TCloseAction &Action)
{
if(ItemsCount<3)
for(int i=ItemsCount+1;i<=3;i++)
Items[i]="";
Registry->WriteString("Item1",Items[0]);
Registry->WriteString("Item2",Items[1]);
Registry->WriteString("Item3",Items[2]); //向注册表写入items[i]字符串的值//
}
以上措施在PWin98、C++Builder5.0情况中通过。
其实很多措施的其他成果,如:自动生存措施界面巨细、自动影象用户口令、也是操作Tregedit在注册表中实现的。有乐趣的读者可以试一试。