Graphics
Intel® graphics drivers and software, compatibility, troubleshooting, performance, and optimization
20622 Discussions

How to use Graphics in Control panel drawing

ICONT10
Beginner
585 Views

hi,

I am New user in this forum. We are manufacturer control panel. but panel programme develop in graphic. so tell me how to use ?

 

http://ikcontrols.com

 

0 Kudos
3 Replies
AdrianM_Intel
Employee
466 Views

Hello ICONT10,

 

Thank you for posting on the Intel® communities. 

 

Can you please let us know with more details what would you like to do or what would you like to know about the drivers to better assist you?

 

Are you developing customized software?

 

 

Regards,

 

Adrian M.

Intel Customer Support Technician

A Contingent Worker at Intel

0 Kudos
Max44
Beginner
466 Views

To obtain a reference to a Graphics object from the PaintEventArgs in the Paint event

  1. Declare the Graphics object.
  2. Assign the variable to refer to the Graphics object passed as part of the PaintEventArgs.
  3. Insert code to paint the form or control.
  4. The following example shows how to reference a Graphics object from the PaintEventArgs in the Paint event:

 

private void Form1_Paint(object sender,

System.Windows.Forms.PaintEventArgs pe)

{

// Declares the Graphics object and sets it to the Graphics object

// supplied in the PaintEventArgs.

Graphics g = pe.Graphics;

// Insert code to paint the form here.

}

 

0 Kudos
AdrianM_Intel
Employee
466 Views

Hello ICONT10,

 

Thank you for the information.

 

To better assist you, we recommend that you submit your question on the Intel® Developer Zone. 

  

Please register, and create an account so that you can receive further support. 

  

Intel® Developer Zone - Contact Page 

https://software.intel.com/en-us/support 

 

Regards,

 

Adrian M.

Intel Customer Support Technician

A Contingent Worker at Intel

 

0 Kudos
Reply