I have an application which I'm interested in eventually porting to mono so I'm trying to avoid using p/invoke's to accomplish this task.

I would like to load a cursor dynamically, as in I have a Bitmap that is generated on the fly in the application. From what I can tell the safest way to do it without using p/invoke's is to create a .cur file which I can then load to a memory stream and use the Cursor(Stream) constructor. However I have no idea how to create a .cur file.

I found this article on the Microsoft Knowledge Base which sort of explains the format, but I'm not sure how it can be used without the interop calls. How To Create an Alpha Blended Cursor or Icon in Windows XP

Does anyone else have a managed solution I can use to accomplish this task?

link|improve this question
1  
Since your code will be Windows specific, what's wrong with P/invoke? – David Heffernan Sep 30 '11 at 13:16
@DavidHeffernan Are you saying that mono will not let me load custom cursors in linux or OSX? – liquidhot Sep 30 '11 at 13:19
I expect it will but the code will be completely different. You have to do this with platform specific code, or find a wrapper that someone else has produced with platform specific code. – David Heffernan Sep 30 '11 at 13:29
@DavidHeffernan So I cannot use this class in other operating systems even though it's part of the winforms section of .NET? msdn.microsoft.com/en-us/library/… – liquidhot Sep 30 '11 at 13:39
System.Windows.Forms doesn't sound terribly portable. Does it exist in Mono? – David Heffernan Sep 30 '11 at 13:42
show 4 more comments
feedback

1 Answer

Simple: YOU CAN NOT - the functionaltiy you ask for is not part of the .NET framework, so you need to go native.

If you application needds porting to mono, isloate this code in one class so you can turn if off like with a compiler switch - not hard.

link|improve this answer
If I were to figure out the format of the .cur file, couldn't I then create that format in .NET? – liquidhot Sep 30 '11 at 13:21
@liquid What would Linux or Mac do .cur file? – David Heffernan Sep 30 '11 at 13:34
@DavidHeffernan I was assuming I could load it into my .NET application to display my custom cursor. Using the Cursor class provided in the framework. I won't actually be giving out the .cur file to the user, I'm just assuming that's the best way to load a dynamically created one. – liquidhot Sep 30 '11 at 13:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.