我在标准 wpf 组合框中添加了一些额外的东西。在构造函数中,我设置了两个属性:
public SmartComboBox()
: base()
{
this.IsEditable = true;
this.IsTextSearchEnabled = false;
...
}
这两个属性继承自 System.Windows.Controls.ComboBox。在构造函数中设置它们的值后,如何防止修改这两个属性?