Graphics General

GDI+ is the graphical library used in the .NET Framework. Good Resources http://www.functionx.com/vccli/index.htm How To Draw Graphics On A Form Include the namespace: System::Drawing Add the following to the forms constructor bmpDrawingArea = gcnew Bitmap(Width, Height); graphDrawingArea = Graphics::FromImage(bmpDrawingArea); Then Create the forms paint event (select form > select the properties lighting bolt icon > […]

Read More