Esempio n. 1
0
        private void button2_Click(object sender, EventArgs e)
        {
            a = this.Top;
            b = this.Left;
            Germany_Main GM = new Germany_Main(this, a, b);

            this.Hide();
            GM.Show();
        }
        public Germany_DataBase(Germany_Main GM, int a, int b)
        {
            InitializeComponent();

            this.MaximizeBox = false;

            CloseFlag = 1;

            _GM = GM;

            this.Top  = a;
            this.Left = b;

            toolTip1.SetToolTip(button5, "Назад");
        }
        public Germany_About(Germany_Main GM, int a, int b)
        {
            InitializeComponent();

            this.MaximizeBox = false;

            _GM = GM;

            CloseFlag = 1;

            this.Top  = a;
            this.Left = b;

            toolTip1.SetToolTip(button1, "Назад");

            this.linkLabel1 = new LinkLabel();
        }
        public Germany_Exercises(Germany_Main GM, int a, int b)
        {
            //Обработка события
            CallBackMyDDaughter.callbackEventHandler = new CallBackMyDDaughter.callbackEvent(this.Coord);

            InitializeComponent();

            this.MaximizeBox = false;

            _GM = GM;

            CloseFlag = 1;

            this.Top  = a;
            this.Left = b;

            toolTip1.SetToolTip(button1, "Назад");
            toolTip2.SetToolTip(button2, "Начать упражнение");
            toolTip3.SetToolTip(button3, "Начать упражнение");
        }