How do I create a dynamic mouse cursor .NET without using interop?

前端 未结 4 936
有刺的猬
有刺的猬 2021-01-20 08:01

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 c

4条回答
  •  余生分开走
    2021-01-20 08:33

    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.

提交回复
热议问题