Ejemplo n.º 1
0
            /**
             * The constructor
             */
            public PanoramaView()
            {
                mPanorama = new Microsoft.Phone.Controls.Panorama();

                mPage.Children.Add(mPanorama);
                Grid.SetColumn(mPanorama, 0);
                Grid.SetRow(mPanorama, 0);

                //The application bar is chanded at the SelectionChanged event occurence.
                //This allows the user to have more that one application bar / panorama view
                mPanorama.SelectionChanged += new EventHandler<SelectionChangedEventArgs>(
                    delegate(object from, SelectionChangedEventArgs target)
                    {
                        bool appBarVisible = (this.mChildren[(from as Microsoft.Phone.Controls.Panorama).SelectedIndex] as Screen).GetApplicationBarVisibility();
                        if (appBarVisible)
                        {
                            mApplicationBar = (this.mChildren[(from as Microsoft.Phone.Controls.Panorama).SelectedIndex] as Screen).GetApplicationBar();
                            mApplicationBar.IsVisible = true;
                            ((Application.Current.RootVisual as Microsoft.Phone.Controls.PhoneApplicationFrame).Content as
                                Microsoft.Phone.Controls.PhoneApplicationPage).ApplicationBar = mApplicationBar;
                            this.SetApplicationBarVisibility(true);
                        }
                        else
                        {
                            this.SetApplicationBarVisibility(false);
                            if (((Application.Current.RootVisual as Microsoft.Phone.Controls.PhoneApplicationFrame).Content as
                                Microsoft.Phone.Controls.PhoneApplicationPage).ApplicationBar != null)
                            {
                                ((Application.Current.RootVisual as Microsoft.Phone.Controls.PhoneApplicationFrame).Content as
                                Microsoft.Phone.Controls.PhoneApplicationPage).ApplicationBar.IsVisible = false;
                            }
                        }
                    });
            }
Ejemplo n.º 2
0
            /**
             * The constructor
             */
            public PanoramaView()
            {
                mPanorama = new Microsoft.Phone.Controls.Panorama();

                mPage.Children.Add(mPanorama);
                Grid.SetColumn(mPanorama, 0);
                Grid.SetRow(mPanorama, 0);
            }
Ejemplo n.º 3
0
            /**
             * The constructor
             */
            public PanoramaView()
            {
                mPanorama = new Microsoft.Phone.Controls.Panorama();

                mPage.Children.Add(mPanorama);
                Grid.SetColumn(mPanorama, 0);
                Grid.SetRow(mPanorama, 0);

                mPanorama.Loaded += new RoutedEventHandler(
                    delegate(object from, RoutedEventArgs args)
                    {
                        SetApplicationBarVisibility(0);
                    });

                //The application bar is chanded at the SelectionChanged event occurence.
                //This allows the user to have more that one application bar / panorama view
                mPanorama.SelectionChanged += new EventHandler<SelectionChangedEventArgs>(
                    delegate(object from, SelectionChangedEventArgs target)
                    {
                        SetApplicationBarVisibility((from as Microsoft.Phone.Controls.Panorama).SelectedIndex);
                    });
            }
Ejemplo n.º 4
0
            /**
             * The constructor
             */
            public PanoramaView()
            {
                mPanorama = new Microsoft.Phone.Controls.Panorama();

                mPage.Children.Add(mPanorama);
                Grid.SetColumn(mPanorama, 0);
                Grid.SetRow(mPanorama, 0);

                mPanorama.Loaded += new RoutedEventHandler(
                    delegate(object from, RoutedEventArgs args)
                {
                    SetApplicationBarVisibility(mCurrentScreenIndex);
                });

                //The application bar is chanded at the SelectionChanged event occurence.
                //This allows the user to have more that one application bar / panorama view
                mPanorama.SelectionChanged += new EventHandler <SelectionChangedEventArgs>(
                    delegate(object from, SelectionChangedEventArgs target)
                {
                    mCurrentScreenIndex = (from as Microsoft.Phone.Controls.Panorama).SelectedIndex;
                    SetApplicationBarVisibility((from as Microsoft.Phone.Controls.Panorama).SelectedIndex);
                });
            }
            /**
             * The constructor
             */
            public PanoramaView()
            {
                mPanorama = new Microsoft.Phone.Controls.Panorama();

                mPage.Content = mPanorama;
            }