gpt4 book ai didi

c# - 样式化 WPF ComboBox 项目

转载 作者:可可西里 更新时间:2023-11-01 07:49:57 25 4
gpt4 key购买 nike

我有一个非常简单的 WPF 应用程序,它显示一个 ComboBox,它绑定(bind)到代表人的类列表。每个“Person”对象都有一个 Name 字符串字段和一个 Sex 枚举。我希望 ComboBox 显示各种人的姓名字段的下拉列表,但要根据性别字段设置每一行的样式,例如,男性为蓝色,女性为粉红色。谁能告诉我我做错了什么?

这是 XML:

<Window x:Class="ComboBoxColour.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525">
<StackPanel Orientation="Vertical">
<ComboBox ItemsSource="{Binding People}" Width="100" Height="20">
<ComboBox.ItemTemplate>
<DataTemplate>
<TextBlock Name="somePerson" Text="{Binding Path=Name}">
<TextBlock.Triggers>
<DataTrigger Binding="{Binding Path=Sex}" Value="Male">
<DataTrigger.Setters>
<Setter Property="Foreground" Value="Blue" TargetName="somePerson" />
</DataTrigger.Setters>
</DataTrigger>
</TextBlock.Triggers>
</TextBlock>
</DataTemplate>
</ComboBox.ItemTemplate>
</ComboBox>
</StackPanel>
</Window>

这是 C#:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Collections.ObjectModel;

namespace ComboBoxColour
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
public List<Person> people;
public List<Person> People
{
get { return people; }
set { people = value; }
}

public MainWindow()
{
this.DataContext = this;

People = new List<Person>();
People.Add(new Person("Alice", SexEnum.Female));
People.Add(new Person("Bob", SexEnum.Male));
People.Add(new Person("Claire", SexEnum.Female));
People.Add(new Person("Daniel", SexEnum.Male));

InitializeComponent();
}
}

public enum SexEnum{Male,Female};

public class Person
{
private string name;
public string Name
{
get { return name; }
set { name = value; }
}

private SexEnum sex;
public SexEnum Sex
{
get { return sex; }
set { sex = value; }
}

public Person(string Name, SexEnum Sex)
{
this.Name = Name;
this.Sex = Sex;
}
}
}

提前致谢

最佳答案

使用 ItemContainerStyle 而不是 ItemTemplate:

    <ComboBox ItemsSource="{Binding People}" Width="100" Height="20">
<ComboBox.ItemContainerStyle>
<Style TargetType="ComboBoxItem">
<Setter Property="Foreground" Value="Pink" />
<Style.Triggers>
<DataTrigger Binding="{Binding Path=Sex}" Value="Male">
<Setter Property="Foreground" Value="Blue" />
</DataTrigger>
</Style.Triggers>
</Style>
</ComboBox.ItemContainerStyle>
</ComboBox>

关于c# - 样式化 WPF ComboBox 项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8746306/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com