Files
BeWoPlaner/Controls/Controls/PopUpWindow.cs
2016-06-27 01:45:38 +02:00

13 lines
323 B
C#

using System.Windows;
using System.Windows.Controls;
namespace BeWo.Controls
{
public class PopUpWindow : Control
{
static PopUpWindow()
{
DefaultStyleKeyProperty.OverrideMetadata(typeof(PopUpWindow), new FrameworkPropertyMetadata(typeof(PopUpWindow)));
}
}
}