2015-06-04 18:15:54 +01:00

16 lines
413 B
C#

using System.Windows;
using System.Windows.Controls;
namespace Filtration.UserControls
{
public class CrossButton : Button
{
static CrossButton()
{
// Set the style key, so that our control template is used.
DefaultStyleKeyProperty.OverrideMetadata(typeof(CrossButton),
new FrameworkPropertyMetadata(typeof(CrossButton)));
}
}
}