1

有人可以在这里看到我需要更改的内容吗?我正在显示 AddressTypeClass 项目的 observablecollection。对象项而不是数据显示在列表框中。我可以在调试模式下查看对象中的数据。

XAML.CS 文件:

DataContext MyTableDataContext = new MyTableDataContext();
ObservableCollection<AddressTypeClass> theOC = new ObservableCollection<AddressTypeClass>(new MyTableDataContext().AddressTypes.AsEnumerable()
        .Select(lt => new AddressTypeClass
        {
          AddressTypeID = lt.AddressTypeID,
          AddressType = lt.AddressType,
        })
          .ToList());
this.listBox1.ItemsSource = theOC;

XAML 文件:

<ListBox Name="listBox1" Margin="8" Height ="200" Width ="150" FontSize="12" Foreground="#FF2F3806"  ItemsSource="{Binding AddressType}" IsSynchronizedWithCurrentItem="True" >
    </ListBox> 
4

2 回答 2

0

您需要将 ItemTemplate 添加到您的 ListBox,例如

<ListBox Name="listBox1" Margin="8" Height ="200" Width ="150" FontSize="12" Foreground="#FF2F3806"  ItemsSource="{Binding AddressType}" IsSynchronizedWithCurrentItem="True" >
   <ListBox.ItemTemplate>
    <DataTemplate>
      <StackPanel>
        <TextBlock Text="{Binding Path=AddressType}" />
      </StackPanel>
    </DataTemplate>
  </ListBox.ItemTemplate>
</ListBox>
于 2012-04-28T15:35:20.293 回答
0

您可以使用我的ObservableComputations库来改进您的代码。在您的代码中,每次 MyTableDataContext.AddressTypes dbSet(我假设您正在使用 EntityFramework)更改(新项目或删除)或属性(AddressType.AddressTypeID,AddressType.AddressType)更改时,您都会手动更新 OC。使用 AddressType 您可以自动化该过程:

DataContext MyTableDataContext = new MyTableDataContext();
ObservableCollection<AddressTypeClass> theOC = MyTableDataContext.AddressTypes.Local
        .Selecting(lt => new AddressTypeClass
        {
          AddressTypeID = lt.AddressTypeID,
          AddressType = lt.AddressType,
        });
this.listBox1.ItemsSource = theOC;

theOC 是ObservableCollection,反映了上面代码中提到的 MyTableDataContext.AddressTypes.Local 集合和属性的所有变化。确保上面代码中提到的所有属性都通过INotifyProperytChanged接口通知更改。

于 2019-11-19T12:26:01.300 回答