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; }
private void _annotationLogo_DoubleClick(object sender, EventArgs e) { Cursor.Current = Cursors.WaitCursor; var dlg = new AnnotationInspector(_model.Annotation); dlg.ShowDialog(); Cursor.Current = Cursors.Default; }