Exemplo n.º 1
0
        private void button1_Click(object sender, EventArgs e)
        {
            a = this.Top;
            b = this.Left;
            English_Main EM = new English_Main(this, a, b);

            this.Hide();
            EM.Show();
        }
Exemplo n.º 2
0
        public English_Help(English_Main EM, int a, int b)
        {
            InitializeComponent();

            this.MaximizeBox = false;

            _EM = EM;

            CloseFlag = 1;

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

            toolTip1.SetToolTip(button1, "Назад");
        }
        public English_Exercises(English_Main EM, int a, int b)
        {
            //Обработка события
            CallBackMyDDaughter.callbackEventHandler = new CallBackMyDDaughter.callbackEvent(this.Coord);

            InitializeComponent();

            this.MaximizeBox = false;

            _EM = EM;

            CloseFlag = 1;

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

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