mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
28 lines
764 B
C#
28 lines
764 B
C#
using System.Windows.Controls;
|
|
using System.Windows.Media;
|
|
|
|
namespace DarkBlendTheme
|
|
{
|
|
public static class TreeViewItemExtensions
|
|
{
|
|
public static int GetDepth(this TreeViewItem item)
|
|
{
|
|
TreeViewItem parent;
|
|
while ((parent = GetParent(item)) != null) return GetDepth(parent) + 1;
|
|
return 0;
|
|
}
|
|
|
|
private static TreeViewItem GetParent(TreeViewItem item)
|
|
{
|
|
var parent = VisualTreeHelper.GetParent(item);
|
|
|
|
while (!(parent is TreeViewItem || parent is TreeView))
|
|
{
|
|
if (parent == null) return null;
|
|
parent = VisualTreeHelper.GetParent(parent);
|
|
}
|
|
|
|
return parent as TreeViewItem;
|
|
}
|
|
}
|
|
} |