怎样保存cxGrid的设置,并在要使用时恢复设置 ( 积分: 50 )

  • 主题发起人 主题发起人 siaosa
  • 开始时间 开始时间
S

siaosa

Unregistered / Unconfirmed
GUEST, unregistred user!
怎样保存cxGrid的设置,并在要使用时恢复设置
例如cxGrid的行高,Column[N].Caption,Column[N].Properties.ReadOnly等属性
StoreToIniFile函数保存不了这些属性,还有没有别的方法可以保存cxGrid的这些属性
 
自己写函数,读写注册表和配置文件不会么?
 
用cxPropertiesStore控件。
 
cxPropertiesStore控件保存不了
cxGrid的行高
Column[N].Caption
Column[N].Properties.ReadOnly等属性
 
都没问题呀!Column[N].Properties.ReadOnly必须给Column[N].Properties指定类型后ReadOnly属性才能选定。
 
那行高呢
 
兄弟你好像不会用吧!行高属性是OptionsView.DataRowHeight
 
接受答案了.
 
procedure Tfm_htdq.N1Click(Sender: TObject);
begin
cxGrid1DBTableView1.StoreToIniFile('合同到期.INI',True);
Application.MessageBox('格式成功保存','提示')
end;

procedure Tfm_htdq.N2Click(Sender: TObject);
begin
cxGrid1DBTableView1.RestoreFromIniFile('合同到期.INI',True);
Application.MessageBox('格式成功恢复','提示')
end;
 
后退
顶部