Cannot access a disposed object?

前端 未结 6 1470
面向向阳花
面向向阳花 2020-12-16 04:50

I have a countdown Timer form - on the first form the user will enter the countdown time - warning times, end message, etc. There are also two Radio buttons (Max/Min) and d

6条回答
  •  佛祖请我去吃肉
    2020-12-16 05:23

    Create Object inside button click event like this

    private void btn_supplier_order_Click(object sender, EventArgs e)
            {
                form_supplier_order so = new form_supplier_order();
                so.Show();
            }
    

提交回复
热议问题