将组合框项目源绑定到这些对象中的某些 属性

Bind combobox items source to certain property of those objects

假设我有一个包含名称和 ID 属性 的 TeamParameter 对象列表。我想要一个组合框,它将显示 TeamParameter 对象列表,但只向用户显示组合框中每个对象的名称 属性。有没有办法绑定到 MainWindow.xaml 中的那个 属性?

尝试过点符号,认为它可以工作,但不行。

MainViewModel.cs

public class MainViewModel : ViewModelBase
{
        private List<TeamParameters> _teams;

        public class TeamParameters
        {
            public string Name { get; set; }

            public int Id { get; set; }
        }

        public List<TeamParameters> Teams
        {
            get { return _teams; }
            set { Set(ref _teams, value); }
        }
}

MainWindow.xaml

<Window x:Class="LiveGameApp.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
        xmlns:local="clr-namespace:LiveGameApp"
        mc:Ignorable="d"
        Title="MainWindow" Height="450" Width="800"
        DataContext="{Binding Main, Source={StaticResource Locator}}">



    <DockPanel>
        <ComboBox  Name="TeamChoices" ItemsSource="{Binding Team.Name}"  DockPanel.Dock="Top" Height="30" Width="175" VerticalContentAlignment="Center" HorizontalContentAlignment="Center"></ComboBox>
    </DockPanel>
</Window>

要指向数据模型上的特定 属性,您可以通过设置 DisplayMemberPath:

来指定成员路径
<ComboBox  ItemsSource="{Binding Teams}" DisplayMemberPath="Name" />

当您没有提供 DataTemplate 并且没有为 ItemsControl 的项目指定 DisplayMemberPath 时,控件将显示项目的 string默认表示。这是通过对每个项目调用 Object.ToString() 来完成的。因此,作为替代方案,您始终可以覆盖 TeamParameters 类型(或一般的项目模型)的 Object.ToString()

public class TeamParameters
{
  public override string ToString() => this.Name;

  public string Name { get; set; }

  public int Id { get; set; }
}

XAML

<ComboBox  ItemsSource="{Binding Teams}" />

或者简单地提供一个 DataTemplate:

<ComboBox ItemsSource="{Binding Teams}">
    <ComboBox.ItemTemplate>
        <DataTemplate DataType="TeamParameters">
            <TextBlock Text="{Binding Name}" /> 
        </DataTemplate>
    </ComboBox.ItemTemplate>
</ComboBox>