DevExpress gridControl 布局(Layout)保存与读取----3

把活动视图的布局保存到本地Xml文件中,使用SaveLayoutToXml 和 RestoreLayoutFromXml方法。
using DevExpress.XtraGrid;
   // ...string fileName = "c:\\XtraGrid_SaveLayoutToXML.xml";

   privatevoid Form1_Load(object sender, System.EventArgs e) 
{
      gridControl1.ForceInitialize();
      // Restore the previously saved layout 
      gridControl1.MainView.RestoreLayoutFromXml(fileName);
    }

    privatevoid Form1_Closing(object sender, System.ComponentModel.CancelEventArgs e)
 {
      // Save the layout to an XML file 
      gridControl1.MainView.SaveLayoutToXml(fileName);
     }
posted @ 2011-05-13 18:31  十一_x  阅读(2483)  评论(0编辑  收藏  举报