Files
ShrlAlgoToolkit/WPFluent/Controls/TreeModelListView/TreeRowExpander.cs

13 lines
309 B
C#

using System.Windows;
using System.Windows.Controls;
namespace WPFluent.Controls;
public class TreeRowExpander : ContentControl
{
static TreeRowExpander()
{
DefaultStyleKeyProperty.OverrideMetadata(typeof(TreeRowExpander), new FrameworkPropertyMetadata(typeof(TreeRowExpander)));
}
}