如何在 Xaml 中设置绑定
Xaml 代码:
ItemsSource="{Binding Path=compassLogCollection}"
.cs 代码
compassDataGrid.DataContext = LogSession.compassLogCollection;
compassLogCollection 是一个静态的 ObservableCollection<>
和
LogSession
是单身人士(如果重要的话)
如何在 Xaml 中设置绑定
Xaml 代码:
ItemsSource="{Binding Path=compassLogCollection}"
.cs 代码
compassDataGrid.DataContext = LogSession.compassLogCollection;
compassLogCollection 是一个静态的 ObservableCollection<>
和
LogSession
是单身人士(如果重要的话)
要回答您的第一个问题,您可以更改Xaml
如下:
ItemSource = {Binding}
这告诉ItemSource
直接绑定到DataContext
.
您的后续问题询问如何DataContext
在 Xaml 中分配。为此,我建议您看看这个问题 -如何在 XAML 中实例化 DataContext 对象。如果这不起作用,那么你应该问另一个问题。