Example #1
0
        private void Form1_FormClosing(object sender, FormClosingEventArgs e)
        {
            ColumnRows.Save();
            DialogResult result;

            result = MessageBox.Show("Вы желаете завершить работу с программой", "Выход из программы", MessageBoxButtons.YesNo);
            if (result == DialogResult.No)
            {
                e.Cancel = true;
            }
        }
Example #2
0
        private void Form1_Load(object sender, EventArgs e)
        {
            pass pass = new pass();

            pass.ShowDialog(this);
            ColumnRows.Open();
            dataGridView1.ColumnCount = ColumnRows.Col;
            dataGridView1.RowCount    = ColumnRows.Row;
            numericUpDown1.Value      = ColumnRows.Row;
            numericUpDown2.Value      = ColumnRows.Col;
        }