I have a easy winform with a button on it.
When I press the button, the cursor is like 1ms the cursor I want it to be, but than it instantly changes back to the default cursor.
How can i keep the cursor a cross? (Not only on the form, everywhere on the screen)
private void btn_takeScreenshot_Click(object sender, EventArgs e)
{
Cursor.Current = Cursors.Cross;
}