Пример #1
0
        private void ShowAboutSettingFlyout()
        {
            var flyout = new AboutFlyout();

            flyout.Show();
        }
Пример #2
0
        /// <summary>
        /// This the event handler for the "Defaults" button added to the settings charm. This method
        /// is responsible for creating the Popup window will use as the container for our settings Flyout.
        /// The reason we use a Popup is that it gives us the "light dismiss" behavior that when a user clicks away
        /// from our custom UI it just dismisses.  This is a principle in the Settings experience and you see the
        /// same behavior in other experiences like AppBar.
        /// </summary>
        /// <param name="command"></param>
        void onAboutCommand(IUICommand command)
        {
            AboutFlyout mypane = new AboutFlyout();

            CreateFlyout(mypane);
        }
Пример #3
0
 private async void OnAboutTapped(object sender, TappedRoutedEventArgs e)
 {
     var flyout = new AboutFlyout();
     await flyout.ShowAsync();
 }
Пример #4
0
        public void ShowAboutFlyout()
        {
            var flyout = new AboutFlyout();

            flyout.Show();
        }