コード例 #1
0
 public Report()
 {
     CoreApplication.GetCurrentView();
     this.InitializeComponent();
     this.navigationHelper = new NavigationHelper(this);
     this.view.Activated += OnViewActivated;
     this.PhotosGridView.ItemsSource = photos;
 }
コード例 #2
0
        public Scanner()
        {
            this.InitializeComponent();
            this.SetupApplicatoinBar();
            this.SetupBarcodeTimer();
            this.SetupBarcodeFilter();

            this.navigationHelper = new NavigationHelper(this);
            HardwareButtons.BackPressed += OnBackPressed;
        }
コード例 #3
0
 public About()
 {
     this.InitializeComponent();
     this.navigationHelper = new NavigationHelper(this);
     this.VersionTextBlock.Text = Package.Current.Id.Version.ToVersion().ToString();
 }