15 lines
326 B
C#
15 lines
326 B
C#
|
using Windows.UI.Xaml.Controls;
|
|||
|
|
|||
|
// The User Control item template is documented at http://go.microsoft.com/fwlink/?LinkId=234236
|
|||
|
|
|||
|
namespace SimpleViewer.Universal.Views
|
|||
|
{
|
|||
|
public sealed partial class ShellView : UserControl
|
|||
|
{
|
|||
|
public ShellView()
|
|||
|
{
|
|||
|
InitializeComponent();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|