selection of line
C#
2
Posts
2
Posters
0
Views
1
Watching
-
hi all, i wanna to ask, that if i have a line and i want to select it how can i make it seems to be selected(u know in graphics shapes have their color changed or selected when clicked) Generator
-
hi all, i wanna to ask, that if i have a line and i want to select it how can i make it seems to be selected(u know in graphics shapes have their color changed or selected when clicked) Generator
The most simple method is to XOR the color. Off the top of my head I do not know the method to XOR a color. Also you can draw a border around the line. Or you can change the pen to be dashed or some other non-solid pen type. Pen pen = new Pen(new System.Drawing.Drawing2D.HatchBrush(System.Drawing.Drawing2D.HatchStyle.Cross, Color.Black), 2f);
File Not Found