Styling WPF ComboBox items

后端 未结 2 1511
悲哀的现实
悲哀的现实 2020-12-20 12:27

I have a very simple WPF application which displays a ComboBox which binds to a list of classes which represent people. Each \'Person\' object has a Name string field, and a

2条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-12-20 12:50

    You should use "Style" triggers instead of "TextBlock.Triggers"

    use this XAML:

    
        
            
                
                    
                        
                            
                                
                            
                        
                    
                
            
        
    
    

    Now you'll have blue for male and pink for female.

提交回复
热议问题