13 lines
247 B
C#
13 lines
247 B
C#
using System.Windows.Controls.Primitives;
|
|
|
|
namespace NodeNetwork.Views.Controls
|
|
{
|
|
public partial class ArrowToggleButton : ToggleButton
|
|
{
|
|
public ArrowToggleButton()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|