Remove groupbox borders
-
In a C# WINDOWS BASED APPLICATION I have GroupBox,I want to remove its borders or make them invisible whats the way to do it
Ankit Aneja "Nothing is impossible. The word itself says - I M possible"
-
In a C# WINDOWS BASED APPLICATION I have GroupBox,I want to remove its borders or make them invisible whats the way to do it
Ankit Aneja "Nothing is impossible. The word itself says - I M possible"
You might want to use a panel instead.
Upcoming events: * Glasgow Geek Dinner (5th March) * Glasgow: Tell us what you want to see in 2007 My: Website | Blog | Photos
-
In a C# WINDOWS BASED APPLICATION I have GroupBox,I want to remove its borders or make them invisible whats the way to do it
Ankit Aneja "Nothing is impossible. The word itself says - I M possible"
-
Or you could override the OnPaint event of the group box and make your custom painting, but this is some kind of hard.
Not really. But it would be simpler to use a
Panel
and override theOnpaint
to draw the label text.