Exemplo n.º 1
0
 private void _annotationLogo_DoubleClick(object sender, EventArgs e)
 {
     Cursor.Current = Cursors.WaitCursor;
     using (var dlg = new AnnotationInspector(_model.Annotation))
     {
         dlg.ShowDialog();
     }
     Cursor.Current = Cursors.Default;
 }
Exemplo n.º 2
0
 private void _annotationLogo_DoubleClick(object sender, EventArgs e)
 {
     Cursor.Current = Cursors.WaitCursor;
     var dlg = new AnnotationInspector(_model.Annotation);
     dlg.ShowDialog();
     Cursor.Current = Cursors.Default;
 }