コード例 #1
0
ファイル: ProcessingThread.cs プロジェクト: rajbindu/misc
 private void ChangeZoomToFitType(Accusoft.ImagXpressSdk.ZoomToFitType newZoomFitType)
 {
     object[] theArgs = { newZoomFitType };
     myReferenceToMyViewer.Invoke(new SafeContextZoomChanger(this.RealZoomToFitChangerInTheSafeContext), theArgs);
 }
コード例 #2
0
ファイル: ProcessingThread.cs プロジェクト: rajbindu/misc
 private void RealZoomToFitChangerInTheSafeContext(Accusoft.ImagXpressSdk.ZoomToFitType newZoomFitType)
 {
     myReferenceToMyViewer.ZoomToFit(newZoomFitType);
 }