How to create a selection rectangle
C#
2
Posts
2
Posters
0
Views
1
Watching
-
i wnat to create a blue selection rectangle, i've tried to serch inside ControlPaint class but nothing. Who can help me?
What exactly do you mean. Some blueish transparent thingie?
SolidBrush brush = new SolidBrush(Color.FromArgb(100, Color.Blue));
graphics.FillRectangle(brush, destRect);
graphics.DrawRectangle(Brushes.Black, destRect);