コード例 #1
0
ファイル: RotateLeftTool.cs プロジェクト: UIKit0/ClearCanvas
		public RotateLeftTool()
		{
			_operation = new SpatialTransformImageOperation(Apply);
		}
コード例 #2
0
ファイル: FlipVerticalTool.cs プロジェクト: nhannd/Xian
		public FlipVerticalTool()
		{
			_operation = new SpatialTransformImageOperation(Apply);
		}
コード例 #3
0
ファイル: PanTool.cs プロジェクト: UIKit0/ClearCanvas
		public PanTool()
			: base(SR.TooltipPan)
		{
			this.CursorToken = new CursorToken("Icons.PanToolSmall.png", this.GetType().Assembly);
			_operation = new SpatialTransformImageOperation(Apply);
		}
コード例 #4
0
		public FlipHorizontalTool()
		{
			_operation = new SpatialTransformImageOperation(Apply);
		}