提交 4206bfd6 编写于 作者: N NaBian

fix: close #1405

上级 0d0a5028
......@@ -44,6 +44,11 @@ public class ComboBox : System.Windows.Controls.ComboBox
{
CommandBindings.Add(new CommandBinding(ControlCommands.Clear, (s, e) =>
{
if (IsReadOnly)
{
return;
}
SetCurrentValue(SelectedValueProperty, null);
SetCurrentValue(SelectedItemProperty, null);
SetCurrentValue(SelectedIndexProperty, -1);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册