Example #1
0
 private void HinzufügenButton_Click(object sender, EventArgs e)
 {
     listBox1.SelectedIndex = -1;
     OKButton.Show();
     TitelBox.Clear();
     DatumBox.Clear();
     LetztesSpielDatumBox.Clear();
     InstallationspfadBox.Clear();
     KategorieBox.Clear();
     PublisherBox.Clear();
     USKBox.Clear();
     StartButton.Hide();
 }
Example #2
0
        /// <summary>
        /// Hinzufügen der Elemente in die Boxen
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void SpieleListeBox_SelectedIndexChanged(object sender, EventArgs e)
        {
            SpieleMethoden spiel = new SpieleMethoden();

            spiel.SpielLaden(spiel.ParameterDesSpielsListe);
            TitelBox.Clear();
            InstallationsDatumBox.Clear();
            ZuletztGespieltBox.Clear();
            InstallPfadBox.Clear();
            PublisherBox.Clear();
            UskEinstufungBox.Clear();
            KategorieBox.Clear();
            if (SpieleListeBox.SelectedIndex >= 0)
            {
                TitelBox.Text = spiel.ParameterDesSpielsListe[SpieleListeBox.SelectedIndex].TitelDesSpiels.Replace("_", " ");
                InstallationsDatumBox.Text = spiel.ParameterDesSpielsListe[SpieleListeBox.SelectedIndex].InstallationsDatum.Replace("_", " ");
                ZuletztGespieltBox.Text    = spiel.ParameterDesSpielsListe[SpieleListeBox.SelectedIndex].ZuletztGespielt.Replace("_", " ");
                InstallPfadBox.Text        = spiel.ParameterDesSpielsListe[SpieleListeBox.SelectedIndex].InstallationsPfad.Replace("_", " ");
                PublisherBox.Text          = spiel.ParameterDesSpielsListe[SpieleListeBox.SelectedIndex].Publisher.Replace("_", " ");
                KategorieBox.Text          = spiel.ParameterDesSpielsListe[SpieleListeBox.SelectedIndex].Kategorie.Replace("_", " ");
                UskEinstufungBox.Text      = Convert.ToString(spiel.ParameterDesSpielsListe[SpieleListeBox.SelectedIndex].UskEinstufung).Replace("_", " ");
            }
        }
Example #3
0
 private void listBox1_SelectedIndexChanged(object sender, EventArgs e)
 {
     TitelBox.Clear();
     DatumBox.Clear();
     LetztesSpielDatumBox.Clear();
     InstallationspfadBox.Clear();
     KategorieBox.Clear();
     PublisherBox.Clear();
     USKBox.Clear();
     if (listBox1.SelectedIndex >= 0)
     {
         OKButton.Hide();
         StartButton.Show();
         ErstellError.Hide();
         TitelBox.Text             = ILibrary.SpieleListe[listBox1.SelectedIndex].Titel;
         DatumBox.Text             = ILibrary.SpieleListe[listBox1.SelectedIndex].Datum;
         LetztesSpielDatumBox.Text = ILibrary.SpieleListe[listBox1.SelectedIndex].LetztesSpielDatum;
         InstallationspfadBox.Text = ILibrary.SpieleListe[listBox1.SelectedIndex].InstallationsPfad;
         KategorieBox.Text         = ILibrary.SpieleListe[listBox1.SelectedIndex].Kategorie;
         PublisherBox.Text         = ILibrary.SpieleListe[listBox1.SelectedIndex].Publisher;
         USKBox.Text = Convert.ToString(ILibrary.SpieleListe[listBox1.SelectedIndex].USK);
     }
 }