So I\'m trying to simulate the left mouse click and the left mouse release to do some automated dragging and dropping.
It\'s currently in a C# Winforms (Yes, winform
The following code should return true if the left mouse button is down, false if it is up, Control being System.Windows.Forms.Control:
Control.MouseButtons.HasFlag(MouseButtons.Left)
p.s. documentation for this can be found on MSDN here.