Help needed.
C#
1
Posts
1
Posters
0
Views
1
Watching
-
hello everyone.. Good evening..:)) I' doing an application with GDI+ to draw sine wave...
float fltZoomF = 1; Graphics gPanel2Graphics = this.CreateGraphics(); gPanel2Graphics.Clip = new Region(Panel1.ClientRectangle); gPanel2Graphics.ScaleTransform(fltZoomF, 1F);
if i run my application the sine wave fits correctly to the screen size, but if i try to zoom by increaseing the fltZoomF value to 2.. how much pixel or percentage it ll going to increase the width of the graph.. im using horizontal scrollbar to scroll, how do i proceed to increase the ScrollBar maximum value while the fltZoomF is changed to 2. please help me..