SetROP2
C#
2
Posts
2
Posters
0
Views
1
Watching
-
I want to find analogue to this function in C#... I want to draw line on the image with inversed colors... Like when you selecting the area in Photoshop... or drawing new shape in other editors..
-
I want to find analogue to this function in C#... I want to draw line on the image with inversed colors... Like when you selecting the area in Photoshop... or drawing new shape in other editors..
Hello You can use
DrawReversibleFrame
andDrawReversibleLine
methods ofSystem.Windows.Forms.ControlPaint
class for drawing selection regions or lines. But, if you needSetROP2
function, you will need to interop it. [^] Andrew