Готовая лабораторная работа 1
This commit is contained in:
parent
9b7acfad63
commit
96353d7682
@ -121,15 +121,8 @@ namespace MyCustomComponents
|
|||||||
throw new ArgumentNullException("Added object is null");
|
throw new ArgumentNullException("Added object is null");
|
||||||
}
|
}
|
||||||
|
|
||||||
// Ищем индекс свойства в иерархии
|
// Получаем первый узел в дереве
|
||||||
int index = hierarchy.IndexOf(propertyName);
|
TreeNode currentNode = null;
|
||||||
if (index == -1)
|
|
||||||
{
|
|
||||||
throw new PropertyNullException("Property not found in hierarchy");
|
|
||||||
}
|
|
||||||
|
|
||||||
// Получаем первый узел в дереве, либо нулл, если узлов нет
|
|
||||||
TreeNode currentNode = treeView.SelectedNode;
|
|
||||||
|
|
||||||
// Проходимся по иерархии
|
// Проходимся по иерархии
|
||||||
foreach (var property in hierarchy)
|
foreach (var property in hierarchy)
|
||||||
@ -140,8 +133,8 @@ namespace MyCustomComponents
|
|||||||
|
|
||||||
if (currentNode == null)
|
if (currentNode == null)
|
||||||
{
|
{
|
||||||
currentNode = treeView.Nodes.Cast<TreeNode>()
|
currentNode = treeView.Nodes.Cast<TreeNode>().FirstOrDefault(n => n.Text == value)
|
||||||
.FirstOrDefault(n => n.Text == value) ?? treeView.Nodes.Add(value);
|
?? treeView.Nodes.Add(value);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user