我想在silverlight數據網格中顯示xml文件數據。即時通訊使用下面的代碼,但它does not工作。請幫助。在silverlight datagrid中顯示xml數據,vb.net
我的vb.net代碼:
進口系統 進口System.Collections.Generic 進口System.Linq的 進口System.Windows 進口System.Windows.Controls 進口System.Xml.Linq的
命名空間SilverlightApplication1 公共部分分類頁面 Inherits UserControl Public Sub New() InitializeComponent() End Sub
Private Sub Page_Loaded(ByVal sender As Object, ByVal e As RoutedEventArgs)
DataGrid1.ItemsSource = GetReport()
End Sub
Public Function GetStatusReport() As List(Of Table)
Dim statusReport As New List(Of Table)()
Dim doc As XElement = XElement.Load("Data/Report.xml")
report = (From row In doc.Elements() _
Select GetStatus(row)).ToList()
Return statusReport
End Function
Private Function GetReport(ByVal row As XElement) As Table
Dim s As New Table()
s.JobID= row.Attribute("ID").Value
s.VenueName= row.Attribute("Name").Value)
Return s
End Function
End Class
末命名空間