14 lines
336 B
C#
14 lines
336 B
C#
using Windows.UI.Xaml.Controls;
|
|
|
|
// The User Control item template is documented at https://go.microsoft.com/fwlink/?LinkId=234236
|
|
|
|
namespace NotificationFlyoutSample
|
|
{
|
|
public sealed partial class WindowContent : UserControl
|
|
{
|
|
public WindowContent()
|
|
{
|
|
this.InitializeComponent();
|
|
}
|
|
}
|
|
} |