public Form1()
 {
     InitializeComponent();
     string[] awss = {"1","2","3","4"};
     Question question = new Question("Pergunta ", "isso é um pergunta", awss, 1);
     question.Aswered += aswered;
     this.Enabled = false;
     question.ShowDialog();
     this.Enabled = true;
 }
Exemple #2
0
        public Form1()
        {
            InitializeComponent();
            string[] awss     = { "1", "2", "3", "4" };
            Question question = new Question("Pergunta ", "isso é um pergunta", awss, 1);

            question.Aswered += aswered;
            this.Enabled      = false;
            question.ShowDialog();
            this.Enabled = true;
        }