Click here to Skip to main content
15,888,733 members
Home / Discussions / C#
   

C#

 
GeneralRe: Convert jQUERY code to C# Pin
Member 130142789-Mar-17 6:11
Member 130142789-Mar-17 6:11 
GeneralRe: Convert jQUERY code to C# Pin
Pete O'Hanlon9-Mar-17 6:55
mvePete O'Hanlon9-Mar-17 6:55 
QuestionDwg free nuget package Pin
Member 108502538-Mar-17 10:40
Member 108502538-Mar-17 10:40 
QuestionRe: Dwg free nuget package Pin
dan!sh 8-Mar-17 18:10
professional dan!sh 8-Mar-17 18:10 
AnswerRe: Dwg free nuget package Pin
Pete O'Hanlon8-Mar-17 20:57
mvePete O'Hanlon8-Mar-17 20:57 
GeneralRe: Dwg free nuget package Pin
dan!sh 8-Mar-17 21:28
professional dan!sh 8-Mar-17 21:28 
AnswerRe: Dwg free nuget package Pin
Pete O'Hanlon8-Mar-17 21:33
mvePete O'Hanlon8-Mar-17 21:33 
QuestionChange Cursor Mouse for an image in application but when close app return to the initial state Pin
Member 130142788-Mar-17 4:41
Member 130142788-Mar-17 4:41 
I have a kinect application and I want change the cursor for an image, but without affect the features like click, drag etc that works now.

I tried use this code, but its not the goal, because, the image appears, but I can't click, drag etc. Somebody have any ideas?

Or in the last case is it possible to hide the cursor and show just one image? The cursor will be there but is hidden or the image are above cursor. is it possible?

public void showImageInsteadCursor(){

        form frm = new form();
        picturebox pb = new picturebox() { image = image.fromfile(@"c:\users\user\desktop\img.bmp") };
        frm.cursor = new cursor(((bitmap)pb.image).gethicon());
        frm.windowstate = formwindowstate.maximized;
        frm.transparencykey = frm.backcolor = system.drawing.color.turquoise;
        frm.formborderstyle = formborderstyle.none;
        frm.showdialog();
}

AnswerRe: Change Cursor Mouse for an image in application but when close app return to the initial state Pin
Eddy Vluggen8-Mar-17 6:24
professionalEddy Vluggen8-Mar-17 6:24 
GeneralRe: Change Cursor Mouse for an image in application but when close app return to the initial state Pin
Member 130142788-Mar-17 6:40
Member 130142788-Mar-17 6:40 
GeneralRe: Change Cursor Mouse for an image in application but when close app return to the initial state Pin
Eddy Vluggen8-Mar-17 6:48
professionalEddy Vluggen8-Mar-17 6:48 
GeneralRe: Change Cursor Mouse for an image in application but when close app return to the initial state Pin
Member 130142788-Mar-17 7:03
Member 130142788-Mar-17 7:03 
GeneralRe: Change Cursor Mouse for an image in application but when close app return to the initial state Pin
Eddy Vluggen8-Mar-17 7:09
professionalEddy Vluggen8-Mar-17 7:09 
GeneralRe: Change Cursor Mouse for an image in application but when close app return to the initial state Pin
Member 130142788-Mar-17 7:12
Member 130142788-Mar-17 7:12 
GeneralRe: Change Cursor Mouse for an image in application but when close app return to the initial state Pin
Eddy Vluggen9-Mar-17 2:24
professionalEddy Vluggen9-Mar-17 2:24 
GeneralRe: Change Cursor Mouse for an image in application but when close app return to the initial state Pin
Member 130142789-Mar-17 3:11
Member 130142789-Mar-17 3:11 
GeneralRe: Change Cursor Mouse for an image in application but when close app return to the initial state Pin
Eddy Vluggen9-Mar-17 3:45
professionalEddy Vluggen9-Mar-17 3:45 
GeneralRe: Change Cursor Mouse for an image in application but when close app return to the initial state Pin
Member 130142789-Mar-17 4:03
Member 130142789-Mar-17 4:03 
GeneralRe: Change Cursor Mouse for an image in application but when close app return to the initial state Pin
Eddy Vluggen9-Mar-17 4:20
professionalEddy Vluggen9-Mar-17 4:20 
GeneralRe: Change Cursor Mouse for an image in application but when close app return to the initial state Pin
Member 130142789-Mar-17 6:39
Member 130142789-Mar-17 6:39 
GeneralRe: Change Cursor Mouse for an image in application but when close app return to the initial state Pin
Eddy Vluggen9-Mar-17 9:33
professionalEddy Vluggen9-Mar-17 9:33 
GeneralRe: Change Cursor Mouse for an image in application but when close app return to the initial state Pin
Member 1301427810-Mar-17 0:50
Member 1301427810-Mar-17 0:50 
GeneralRe: Change Cursor Mouse for an image in application but when close app return to the initial state Pin
Eddy Vluggen10-Mar-17 2:47
professionalEddy Vluggen10-Mar-17 2:47 
GeneralRe: Change Cursor Mouse for an image in application but when close app return to the initial state Pin
Member 1301427813-Mar-17 6:21
Member 1301427813-Mar-17 6:21 
Question.NET core, standart and desktop app (using VS2017) (trying to replace PCL) Pin
Super Lloyd8-Mar-17 4:04
Super Lloyd8-Mar-17 4:04 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.