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