12 lines
297 B
C#
12 lines
297 B
C#
using Windows.UI.Xaml.Controls;
|
|
|
|
namespace NotificationFlyout.Uwp.UI.Controls
|
|
{
|
|
public class NotificationFlyoutPresenter : ContentControl
|
|
{
|
|
public NotificationFlyoutPresenter()
|
|
{
|
|
DefaultStyleKey = typeof(NotificationFlyoutPresenter);
|
|
}
|
|
}
|
|
} |