Пример #1
0
        public GUITARList()
        {
            this.InitializeComponent();
            _navigationHelper = new NavigationHelper(this);

            GUITARModel = new GUITARViewModel();

            SizeChanged += OnSizeChanged;
        }
Пример #2
0
        public GUITARPage()
        {
            this.InitializeComponent();
            _navigationHelper = new NavigationHelper(this);

            GUITARModel = new GUITARViewModel();
            DataContext = this;

            SizeChanged += OnSizeChanged;
        }
Пример #3
0
        public GUITARDetail()
        {
            this.InitializeComponent();
            _navigationHelper = new NavigationHelper(this);

            GUITARModel = new GUITARViewModel();

            ApplicationView.GetForCurrentView().
            SetDesiredBoundsMode(ApplicationViewBoundsMode.UseVisible);
        }