public void Close() { if (_form != null) { _form.Dispose(); _form = null; } }
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(); }