各位老师好:
我想使用AnnotationChanged事件,及时获取Annotation位置、大小、测量结果的变化,但在使用过程中发现事件处理函数根本不执行,这是为什么呢?
以下是部分代码:
cell.AnnotationChanged += new EventHandler<MedicalViewerAnnotationChangedEventArgs>(cellAnnotationChanged);
void cellAnnotationChanged(object sender, MedicalViewerAnnotationChangedEventArgs e)
{
MessageBox.Show("cellAnnotationChanged");
}
当我拖动尺子,改变尺子的距离时,MessageBox不能执行。
这是为什么呢?求各位大神指点啊
|
|