Home > Software design >  How to remove the Square mouse pointer in WinForms in Visual Studio 2022
How to remove the Square mouse pointer in WinForms in Visual Studio 2022

Time:08-09

I have this strange issue with Visual Studio 2022. I have a Windows Forms app and in some forms I have a square as the mouse pointer. It doesn't let me do anything. I can't resize or move controls, etc.

square mouse

It's the same issue this user had: https://www.youtube.com/watch?v=Qo1oqg2Wl5k.

However, the solution he used doesn't works for me.

The forms that present this issue are derived from another form, such as this:

public partial class Form1 : maintenance

How can I get back a normal mouse cursor?

EDIT: The issue is in the form designer, not when running the app

CodePudding user response:

It is probably some debug feature. Try building using release preset and run the executable without debugger and report back if that worked or not.

CodePudding user response:

The problem I encountered is to conflict with the TranslucentTB, just uninstall it

  • Related