Zoomify plugin Forms
Posted: Sun Nov 22, 2020 11:15 am
Zoom is pretty cool.
What is the best way to 'Zoomify' my plugin Forms?
I was able to scale a button that I added to FormProcEdit like so:
Which works fine but I'm a little lost as to how to scale an entire Form in my plugin
What is the best way to 'Zoomify' my plugin Forms?
I was able to scale a button that I added to FormProcEdit like so:
Code: Select all
butLocal.Location = new System.Drawing.Point(387, 208);
int xlocation = 387;
int ylocation = 208;
xlocation = sender.LayoutManager.Scale(xlocation);
ylocation = sender.LayoutManager.Scale(ylocation);
butLocal.Location = new System.Drawing.Point(xlocation, ylocation);
butLocal.Size = new System.Drawing.Size(120, 24);
butLocal.Size = sender.LayoutManager.ScaleSize(butLocal.Size);

