コード例 #1
0
        private void ShowPlayersButton_Click(object sender, RoutedEventArgs e)
        {
            ShowAllDataWindow showAllDataWindow = new ShowAllDataWindow();

            showAllDataWindow.Datatype = ShowAllDataWindow.DataType.PLAYERS;
            showAllDataWindow.ShowDialog();
        }
コード例 #2
0
        private void ShowGamesButton_Click(object sender, RoutedEventArgs e)
        {
            ShowAllDataWindow showAllDataWindow = new ShowAllDataWindow();

            showAllDataWindow.Datatype = ShowAllDataWindow.DataType.GAMES;
            showAllDataWindow.ShowDialog();
        }