ShellView.xaml.cs 326 B

1234567891011121314
  1. using Windows.UI.Xaml.Controls;
  2. // The User Control item template is documented at http://go.microsoft.com/fwlink/?LinkId=234236
  3. namespace SimpleViewer.Universal.Views
  4. {
  5. public sealed partial class ShellView : UserControl
  6. {
  7. public ShellView()
  8. {
  9. InitializeComponent();
  10. }
  11. }
  12. }