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