mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-04-08 10:16:36 +08:00
Flowchart
This commit is contained in:
@@ -176,7 +176,7 @@ namespace AIStudio.Wpf.DiagramHelper.Controls
|
||||
{
|
||||
foreach (var item in SelectedValues)
|
||||
{
|
||||
Node node = _nodeList.FirstOrDefault(i => i.Object != null && i.Object.ToString() != "All" && i.Object.GetPropertyValue(SelectedValuePath) == item);
|
||||
Node node = _nodeList.FirstOrDefault(i => i.Object != null && i.Object.ToString() != "All" && i.Object.GetPropertyValue(SelectedValuePath)?.ToString() == item?.ToString());
|
||||
if (node != null)
|
||||
node.IsSelected = true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user