* UIComboTreeView : 修复SelectedNode=null的问题

This commit is contained in:
Sunny 2021-07-29 15:40:49 +08:00
parent 550a338cec
commit 52365fe599
5 changed files with 1 additions and 1 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -96,7 +96,7 @@ namespace Sunny.UI
set
{
item.TreeView.SelectedNode = value;
Text = value.Text;
Text = value?.Text;
}
}