ComboBox에서 null 값을 선택할 수 없는 이유는 무엇입니까? WPF에서는 (마우스를 사용하여) ComboBox에서 "null" 값을 선택할 수 없습니다.Edit 명확히 하기 위해, 이것은 입니다.NET 3.5 SP1 내가 무슨 말을 하는지 보여줄 몇 가지 코드가 있어.첫 번째 C# 선언은 다음과 같습니다. public class Foo { public Bar Bar { get; set; } } public class Bar { public string Name { get; set; } } 다음으로 Window1 XAML: 마지막으로 Window1 클래스: public partial class Window1 : Window { public Window1() { InitializeComponent(..