I need to make a cursor in Kinect, but I don’t know where to start. I need to make it using WPF and C#. Cursor should be in shape of hand and when I hover over element the “loading” circle should appear, and when it “loads” it should fire click event on hovered element.
I’m sure that your’re all familiar with this.
It would be of great help if someone could write me some directions oh how to accomplish this.
Here is a code snippet that might help you:
If you want your cursor to be different hovering on an element then just go to the elements properties and set a cursor for that element. In Visual Studio you can choose a cursor in the elements properties.
To make a click on a hover over an element you have to implement the MouseEnter event
Here are some infos about it:
button1.PerformClick() in wpf