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);

     }

你可能感兴趣的:(DevExpress)