Esempio n. 1
0
        public SaveFileForm(ChampionsLeagueForm ParentForm)
        {
            this.MainForm = ParentForm;
            InitializeComponent();

            GetAllClubsInList();
        }
Esempio n. 2
0
 public PlayerForm(ChampionsLeagueForm ParentForm)
 {
     InitializeComponent();
     clubComboBox.DataSource = FillClubComboBox();
     this.MainForm           = ParentForm;
     if (!ParentForm.addingProcedure)
     {
         formerPlayer              = ParentForm.GetSelectedRow();
         nameTextBox.Text          = formerPlayer.Name;
         clubComboBox.SelectedItem = FootballClubInfo.GetNazev((int)formerPlayer.Club);
         goalCountUpDown.Value     = formerPlayer.GoalCount;
     }
 }
Esempio n. 3
0
 public BestClubForm(ChampionsLeagueForm ParentForm)
 {
     this.MainForm = ParentForm;
     InitializeComponent();
     FillDialog();
 }