Exemplo n.º 1
0
 private void uiAttachmentToolStripButton_Click(object sender, EventArgs e)
 {
     using (AttachmentForm attachment = new AttachmentForm())
     {
         attachment.ShowDialog();
     }
 }
Exemplo n.º 2
0
        private void btnNew_Click(object sender, EventArgs e)
        {
            AttachmentForm form = new AttachmentForm(_letterId);

            form.ShowDialog();
            fillGrid();
        }