예제 #1
0
 public void Close()
 {
     if (_form != null)
     {
         _form.Dispose();
         _form = null;
     }
 }
예제 #2
0
		public void Close()
		{
			if (_form != null)
			{
				_form.Dispose();
				_form = null;
			}
		}
예제 #3
0
 public void Open(float magnificationFactor, PresentationImage image, Point location)
 {
     _form = new MagnificationForm(magnificationFactor, image, location);
     _form.Show();
 }
예제 #4
0
		public void Open(float magnificationFactor, PresentationImage image, Point location)
		{
			_form = new MagnificationForm(magnificationFactor, image, location);
			_form.Show();
		}
        public void Open(IPresentationImage image, Point locationTile, RenderMagnifiedImage render)
		{
            _form = new MagnificationForm((PresentationImage)image, locationTile, render);
			_form.Show();
		}
 public void Open(IPresentationImage image, Point locationTile, RenderMagnifiedImage render)
 {
     _form = new MagnificationForm((PresentationImage)image, locationTile, render);
     _form.Show();
 }