Files
Shrlalgo.RvKits/WPFluent/Controls/TreeModelListView/TreeModelRowExpander.cs

13 lines
329 B
C#

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