Custom Control

  • Thread starter Thread starter seshu
  • Start date Start date
S

seshu

Hi,

Can any one help me in creating the custom control in C-Sharp .Net.

I want to create a transparent resizable rectangle which when placed on any
window should be able to see the contents of the window.


Thanks in advance
 
I don't know exactly what you are trying to use it for but just use the Panel
control, set the TransparencyKey for the form to say, Color.Black and set the
BackColor of the Panel control to black. This will do the same thing. Or you
could just set the BackColor of the Panel to Transparent
 
Back
Top