我想将一个绑定ObservableCollection
到 wpf 数据网格。我ObservableCollection
的不是空的,但是,我的数据网格保持为空:
public partial class Fenetre_EvtCode : Window
{
ObservableCollection<EvtCode> glb_ObservableEvtCode;
public Fenetre_EvtCode()
{
InitializeComponent();
EvtCode myEvt = new EvtCode();
glb_ObservableEvtCode = myEvt.GetAllEvtCode();
}
}
这是我的xml:
<DataGrid Foreground="Aqua"
Name="myDataGridEvtCode"
AutoGenerateColumns="True"
HorizontalAlignment="Stretch"
Margin="0,0,0,0"
VerticalAlignment="Stretch"
Height="453"
ItemsSource="{Binding glb_ObservableEvtCode}" />
我重复一遍:我查看了调试,我ObservableCollection
的不是空的。
任何人都知道为什么 ma datagrid 保持空白?