1

我想阅读从 DevExpress 的 XtrapivotGrid 获得的 Stream。我可以将它保存在计算机中,但我想要将它保存在我的数据集中的一个表中,称为 dataset1。现在我有允许将其保存在目录 Temp: 的代码。

Using FS As New IO.FileStream("D:\Temp\qqc.layout", IO.FileMode.Create)
     PivotGridControl1.SaveLayoutToStream(FS)
End Using

Dim read As New System.IO.FileStream("D:\Temp\qqc.layout", IO.FileMode.Open, IO.FileAccess.Read)
DataSet1.LayoutMainRapport.ReadXml(read)
DataSet1.AcceptChanges()
read.Close()

表格 LayoutMainRapport 有 3 列:

  • ID(整数)
  • 名称(nvarchar(50))
  • 内容(xml)。

流的输出是 xml。

提前致谢!

4

2 回答 2

1

我只需要为 xml 保存一个名称,然后将其保存到我的数据集中。

    Dim saveDialog As SaveLayout = New SaveLayout
    If saveDialog.ShowDialog() = Windows.Forms.DialogResult.OK Then
        Dim read As New IO.MemoryStream
        PivotGridControl1.SaveLayoutToStream(read)
        read.Position = 0
        Dim lecteur As New IO.StreamReader(read)
        Dim ligne As DataRow = DataSet1.LayoutMainRapport.NewRow()

        ligne("Nom") = saveDialog.txtNom.Text
        ligne("Contenu") = lecteur.ReadToEnd()
        DataSet1.LayoutMainRapport.Rows.Add(ligne)
        LayoutMainRapportTableAdapter.Update(DataSet1)
    End If
于 2013-05-22T19:10:43.050 回答
1

我相信您应该将保存的布局转换为字符串,然后将此字符串保存到数据库(当然您可以从数据库字符串值加载此布局):

Private Function SaveLayoutToString(ByVal dxControl As DevExpressControl) As String
    Using ms As MemoryStream = New MemoryStream()
        dxControl.SaveLayoutToStream(ms)
        Return Convert.ToBase64String(ms.ToArray())
    End Using
End Function
Private Sub RestoreLayoutFromString(ByVal dxControl As DevExpressControl, ByVal layout As String)
    If String.IsNullOrEmpty(layout) Then
        Return
    End If
    Using ms As MemoryStream = New MemoryStream(Convert.FromBase64String(layout))
        dxControl.RestoreLayoutFromStream(ms)
    End Using
End Sub

DevExpressControl dxControl是支持保存和加载布局的 DevExpress 控件(XtraPivotGrid、XtraGrid、XtraLayoutControl 等)

于 2013-03-27T13:14:45.577 回答