コード例 #1
0
        public void FullScreen()
        {
            var fs = new Windows.Fullscreen();
            fs.FullScreenClosing += fs_FullScreenClosing;

            object o = PageContent;

            PageContent = null;

            fs.WindowContent = o;
            fs.Show();
        }
コード例 #2
0
        public void FullScreen()
        {
            var fs = new Windows.Fullscreen();

            fs.FullScreenClosing += fs_FullScreenClosing;

            object o = PageContent;

            PageContent = null;

            fs.WindowContent = o;
            fs.Show();
        }