我有一个DevExpress GridView,我在其中添加一列,然后保存布局:
private void button1_Click(object sender, EventArgs e)
{
// This magically creates a column which I don't want, so delete it
gridControl1.DataSource = new ObservableCollection<object> { new object() };
var gridView = ((GridView)gridControl1.MainView);
gridView.Columns.Clear();
// Create the column I want
var myColumn = new GridColumn { Name = "MyColumn", Caption = "MyColumn" };
gridView.Columns.Add(myColumn);
// At this point, the column is not displayed yet
// And it's not displayed in the column chooser panel
gridView.Columns[0].Visible = true;
// The column is visible now and available in the column chooser
// Awesome layout now, let's save it
using (var stream = new MemoryStream())
{
gridControl1.MainView.SaveLayoutToStream(stream, GetLayoutOptions());
layoutXml = Encoding.UTF8.GetString(stream.GetBuffer(), 0, (int)stream.Length);
}
}
这提供了一个很好的XML,其中包含我的专栏:
<XtraSerializer version="1.0" application="View">
...
<property name="Columns" iskey="true" value="1">
<property name="Item1" isnull="true" iskey="true">
<property name="Visible">true</property>
<property name="VisibleIndex">0</property>
<property name="Name">MyColumn</property>
</property>
</property>
...
</XtraSerializer>
然后,用户可以做其他事情,例如改变布局
private void button2_Click(object sender, EventArgs e)
{
var gridView = ((GridView)gridControl1.MainView);
gridView.Columns.Clear();
}
回到主题,他希望看到&#34; old&#34;视图:
private void button3_Click(object sender, EventArgs e)
{
using (var stream = new MemoryStream(Encoding.UTF8.GetBytes(layoutXml)))
{
gridControl1.MainView.RestoreLayoutFromStream(stream, GetLayoutOptions());
}
}
但是没有显示该列。查看调试器中的((GridView)gridControl1.MainView).Columns
会显示列数为0.
做了一些研究,我在DevExpress Forum中发现我需要在保存和阅读布局时设置选项,所以我调整了我的代码以包含建议的方法(已在上面的代码中使用) :
private OptionsLayoutGrid GetLayoutOptions() {
OptionsLayoutGrid layoutGrid = new OptionsLayoutGrid();
layoutGrid.StoreAllOptions = true;
layoutGrid.StoreAppearance = true;
return layoutGrid;
}
仍然没有运气。
如何找回布局的列?
我知道我可以自己解析XML并以编程方式添加列,但是......好吧......我希望它能作为GridControl / GridView的内置功能。 / p>
添加
layoutGrid.Columns.AddNewColumns = true;
another DevExpress Forum post中提出的也没有帮助。
答案 0 :(得分:1)
由于您要检索的列存在于已保存的布局中,但在网格中不存在,因此必须将 OptionsLayoutGrid.Columns.RemoveOldColumns 属性设置为false。在这种情况下,应启用 OptionsLayoutGrid.Columns.StoreAllOptions 选项。