Ejemplo n.º 1
0
		public RotateLeftTool()
		{
			_operation = new SpatialTransformImageOperation(Apply);
		}
Ejemplo n.º 2
0
		public FlipVerticalTool()
		{
			_operation = new SpatialTransformImageOperation(Apply);
		}
Ejemplo n.º 3
0
		public PanTool()
			: base(SR.TooltipPan)
		{
			this.CursorToken = new CursorToken("Icons.PanToolSmall.png", this.GetType().Assembly);
			_operation = new SpatialTransformImageOperation(Apply);
		}
Ejemplo n.º 4
0
		public FlipHorizontalTool()
		{
			_operation = new SpatialTransformImageOperation(Apply);
		}