Example #1
0
        private void NextClick(object sender, System.Windows.RoutedEventArgs e)
        {
            ConsoleName = ConsoleNameBox.Text;
            HACGUIKeyset.RootFolderInfo.Create();
            HACGUIKeyset.RootConsoleFolderInfo.Create();

            HACGUIKeyset.SetConsoleDirectoryAsIncomplete(ConsoleName, true);

            // Navigate to next page
            NavigationWindow root = FindNavigationWindow();

            root.Navigate(new PickSDPage());
        }
Example #2
0
        public FinishPage()
        {
            InitializeComponent();

            Loaded += (_, __) =>
            {
                TextArea.Text += HACGUIKeyset.PrintCommonKeys(HACGUIKeyset.Keyset, true);
                TextArea.Text += "--------------------------------------------------------------\n";
                TextArea.Text += HACGUIKeyset.PrintCommonWithoutFriendlyKeys(HACGUIKeyset.Keyset);
                TextArea.Text += "--------------------------------------------------------------\n";
                TextArea.Text += ExternalKeys.PrintUniqueKeys(HACGUIKeyset.Keyset);
                TextArea.Text += "--------------------------------------------------------------\n";
                TextArea.Text += ExternalKeys.PrintTitleKeys(HACGUIKeyset.Keyset);
            };
            HACGUIKeyset.SetConsoleDirectoryAsIncomplete(PickConsolePage.ConsoleName, false);
        }