* UITreeView: 修改LabelEdit属性

This commit is contained in:
Sunny 2023-03-26 21:32:14 +08:00
parent a77a5dfd01
commit 9b3e30d54a

View File

@ -31,6 +31,7 @@
* 2022-11-03: V3.2.6 * 2022-11-03: V3.2.6
* 2022-12-06: V3.3.0 * 2022-12-06: V3.3.0
* 2023-03-13: V3.3.3 MouseDoubleClick和MouseClick事件 * 2023-03-13: V3.3.3 MouseDoubleClick和MouseClick事件
* 2023-03-26: V3.3.4 LabelEdit属性
******************************************************************************/ ******************************************************************************/
using System; using System;
@ -219,7 +220,7 @@ namespace Sunny.UI
public bool LabelEdit public bool LabelEdit
{ {
get => view.LabelEdit; get => view.LabelEdit;
set => view.LabelEdit = true; set => view.LabelEdit = value;
} }
private void View_KeyUp(object sender, KeyEventArgs e) private void View_KeyUp(object sender, KeyEventArgs e)