private void Window_Loaded(object sender, RoutedEventArgs e)
        {
            SettingImporter importer = new SettingImporter();
            LayoutInformation court_layout = importer.Import("Setting.ini");

            courtCountRowTextBox.Text = court_layout.Row.ToString();
            courtCountColumnTextBox.Text = court_layout.Column.ToString();
            MatchCountTextBox.Text = court_layout.CourtCount.ToString();
        }
        private void Window_Loaded(object sender, RoutedEventArgs e)
        {
            SettingImporter setting_importer = new SettingImporter();
            CourtLayout = setting_importer.Import("Setting.ini");

            InitializeMemberData();
            InitializeEntrantData();
        }