Exemplo n.º 1
0
        private void MakeSendNotice()
        {
            SendNoticeForm form = new SendNoticeForm(connection);

            form.NoticeRegisterRequested += RegisterNotice;
            form.Show();
        }
Exemplo n.º 2
0
 private void MakeSendNotice()
 {
     SendNoticeForm form = new SendNoticeForm();
     //form.BtnSend.MouseClick += new MouseEventHandler(BtnSendNotice_Click);
     //form.TextBoxContent.KeyUp += new KeyEventHandler(textBox1_KeyDown_SendNotice);
     form.NoticeRegisterRequested += RegisterNotice;
     form.Show();
 }
Exemplo n.º 3
0
 private void MakeSendNotice()
 {
     SendNoticeForm form = new SendNoticeForm();
     form.BtnSend.MouseClick += new MouseEventHandler(BtnSendNotice_Click);
     form.textBox1.KeyUp += new KeyEventHandler(textBox1_KeyDown_SendNotice);
     form.Show();
 }
Exemplo n.º 4
0
 private void MakeSendNotice()
 {
     SendNoticeForm form = new SendNoticeForm(connection);
     form.NoticeRegisterRequested += RegisterNotice;
     form.Show();
 }