コード例 #1
0
        private void Form1_FormClosing(object sender, FormClosingEventArgs e)
        {
            e.Cancel = true;
            ConfirmWindow confirm = new ConfirmWindow("Czy na pewno zakończyć działanie aplikacji?");

            confirm.ShowDialog();
            if (confirm.DialogResult == DialogResult.Yes)
            {
                e.Cancel = false;
            }
        }
コード例 #2
0
        private void button10_Click(object sender, EventArgs e)
        {
            ConfirmWindow confirm = new ConfirmWindow("Czy na pewno usunąć zaznaczone zamówienie?");

            confirm.ShowDialog();
            if (confirm.DialogResult != DialogResult.Yes)
            {
                return;
            }
            if (dataGridView3.CurrentRow != null && DeleteOrder((int)dataGridView3.CurrentRow.Cells[0].Value))
            {
                dataGridView3.Rows.RemoveAt(dataGridView3.CurrentRow.Index);
            }
            else
            {
                MessageBox.Show("Wystąpił błąd z usunięciem zamówienia");
            }
        }
コード例 #3
0
        private void button27_Click(object sender, EventArgs e)
        {
            ConfirmWindow confirm = new ConfirmWindow("Czy na pewno usunąć zaznaczony produkt z zaznaczonej dostawy?");

            confirm.ShowDialog();
            if (confirm.DialogResult != DialogResult.Yes)
            {
                return;
            }
            if (dataGridView7.CurrentRow != null && dataGridView8.CurrentRow != null && DeleteDetail((int)dataGridView8.CurrentRow.Cells[0].Value))
            {
                dataGridView8.Rows.RemoveAt(dataGridView8.CurrentRow.Index);
            }
            else
            {
                MessageBox.Show("Wystąpił błąd z usunięciem produktu z dostawy");
            }
        }
コード例 #4
0
        private void button6_Click(object sender, EventArgs e)
        {
            ConfirmWindow confirm = new ConfirmWindow("Czy na pewno usunąć zaznaczoną kategorię?");

            confirm.ShowDialog();
            if (confirm.DialogResult != DialogResult.Yes)
            {
                return;
            }
            if (dataGridView2.CurrentRow != null && (int)dataGridView2.CurrentRow.Cells[0].Value != 0 && DeleteCategory((int)dataGridView2.CurrentRow.Cells[0].Value))
            {
                dataGridView2.Rows.RemoveAt(dataGridView2.CurrentRow.Index);
            }
            else
            {
                MessageBox.Show("Wystąpił błąd z usunięciem kategorii");
            }
        }