Ejemplo n.º 1
0
        private void pictureBox4_Click(object sender, EventArgs e)
        {
            if (((Games)gamesBindingSource.Current).Publishers == null)
            {
                return;
            }
            var infa = new InformationWindows(1, ((Games)gamesBindingSource.Current).Publishers);

            infa.Show();
        }
Ejemplo n.º 2
0
        private void pictureBox5_Click(object sender, EventArgs e)
        {
            if (((Games)gamesBindingSource.Current).RF_Distributors == null)
            {
                return;
            }
            var infa = new InformationWindows(2, ((Games)gamesBindingSource.Current).RF_Distributors);

            infa.Show();
        }
Ejemplo n.º 3
0
        private void DevName_Click(object sender, EventArgs e)
        {
            if (((Games)gamesBindingSource.Current).Developers == null)
            {
                return;
            }
            var infa = new InformationWindows(0, ((Games)gamesBindingSource.Current).Developers);

            infa.Show();
        }