13 lines
329 B
C#
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)));
|
|
}
|
|
}
|