IgnaceMaes / MaterialSkin

Theming .NET WinForms, C# or VB.Net, to Google's Material Design Principles.
MIT License
2.84k stars 831 forks source link

Cursor turns into "MoveAll" cursor while over any Material Skin controls #114

Closed jumper77 closed 7 years ago

jumper77 commented 7 years ago

This is something new. It started happening about 3 days ago and I have been trying to solve the issue for that long now. The mouse cursor was fine before this. In case it was a Visual Studio thing, I reset all the settings to default. But it did nothing. I've added and and re-added the dll and plus removed it's items from the toolbox, but again, nothing.

Has anyone seen or heard of this happening before? Any help greatly appreciated.

pernicek commented 7 years ago

Recently I reported another issue, but cursor behaves correctly. I think, that there must be some line in your code like

Control.Cursor = ..
Form.Cursor = .. 

In case there's not in your code - check form.designer files also - you can try to download source from here, check if there's something like above and recompile and add it to your project.

jumper77 commented 7 years ago

Thanks for the reply. I don't have any reference to "cursor" in my code, but I will check the designer file and see if I can find anything odd. Will let you know something in a bit.

jumper77 commented 7 years ago

ok, didn't find anything out of place in the designer file, but I tried something else. I put a standard VS label on the form and it does the same thing as the Material controls do. Have more checking to do.

jumper77 commented 7 years ago

Found out this is not a MaterialSkin issue. It's a Visual Studio issue. So I'm going in that direction. Thanks for looking and helping.

IgnaceMaes commented 7 years ago

I'm closing this because it's a Visual Studio related problem, not MaterialSkin.

jumper77 commented 7 years ago

Thanks. Quick question. Is there some place where I can read about using the tab control?

IgnaceMaes commented 7 years ago

Luke Skinner explained the use very well in this post: https://github.com/IgnaceMaes/MaterialSkin/issues/41#issuecomment-90669808

jumper77 commented 7 years ago

thank you