Ejemplo n.º 1
0
        private void Security_Click(object sender, EventArgs e)
        {
            Form SecurityForm = new SecurityForm();

            SecurityForm.Show();
            this.Hide();
        }
Ejemplo n.º 2
0
        public Start()
        {
            labelText          = new Label();
            labelText.Location = new Point(0, 0);
            labelText.Size     = new Size(ClientSize.Width, 35);
            labelText.Text     = "Куда вы хотите обратиться?";
            Controls.Add(labelText);

            security          = new Button();
            security.Location = new Point(0, labelText.Bottom);
            security.Size     = labelText.Size;
            security.Text     = "Охрана";
            security.Click   += (sender, args) =>
            {
                Form SecurityForm = new SecurityForm();
                SecurityForm.Show();
                this.Hide();
            };
            Controls.Add(security);

            waggon          = new Button();
            waggon.Location = new Point(0, security.Bottom);
            waggon.Size     = labelText.Size;
            waggon.Text     = "Вахтер";
            waggon.Click   += (sender, args) =>
            {
                Form WaggonForm = new WaggonForm();
                WaggonForm.Show();
                this.Hide();
            };
            Controls.Add(waggon);


            deanery          = new Button();
            deanery.Location = new Point(0, waggon.Bottom);
            deanery.Size     = labelText.Size;
            deanery.Text     = "Деканат";
            deanery.Click   += (sender, args) =>
            {
                Form DeaneryForm = new DeaneryForm();
                DeaneryForm.Show();
                this.Hide();
            };
            Controls.Add(deanery);
        }