如何更改axShockwaveFlash的光标?

时间:2017-09-02 21:43:56

标签: c# cursor axshockwaveflash

我想将光标更改为黑色。我搜索了很多网站并最终得到了一些答案,但他们并没有与axShockwaveFlash合作。我有这个:

Cursor = new Cursor(@"PathToCurFile");

它只会更改表单的光标,但我想更改控件的鼠标。我尝试了另一种选择:

Cursor.Override = Cursor;

我相信,它没有做任何事情。所以我尝试了这个:

axShockwaveFlash1.Cursor = new Cursor(@"PathToCurFile");

同样,它什么也没做。有人会告诉我如何更改光标的颜色吗?

Edit1:我尝试在它上面放置一个看不见的标签......改变了鼠标但是我无法点击游戏,所以我试图将点击传递给AxShockwaveFalsh我可以点击等但是光标去了恢复正常。

1 个答案:

答案 0 :(得分:1)

您需要使用Win32 API在较低级别执行此操作。这是代码:

using System;
using System.Collections;
using System.Collections.Generic;
using System.Data;
using System.Diagnostics;

using System.Runtime.InteropServices;
public class Form1
{
    [DllImport("user32.dll")]
    public static extern IntPtr SetCursor(IntPtr hCursor);

    [DllImport("user32.dll")]
    private static extern IntPtr LoadCursorFromFile(string lpFileName);

    [DllImport("user32.dll")]
    private static extern bool SetSystemCursor(IntPtr hCursor, int id);

    private const uint OCR_NORMAL = 32512;

    static Cursor ColoredCursor;

    public Form1()
    {
        this.Load += Form1_Load;
    }
    private void Form1_Load(object sender, EventArgs e)
    {
        this.CenterToScreen();
    }

    private void Button1_Click(object sender, EventArgs e)
    {
        IntPtr cursor = LoadCursorFromFile("C:\\Whatever\\Whatever\\example.cur");
        bool ret_val = SetSystemCursor(cursor, OCR_NORMAL);
    }
}

我建议更改axShockwaveFlash1中的光标控制MouseEnter和MouseLeave事件,例如:

this.Controls["AxShockwaveFlashObject1"].MouseEnter +=Form1_MouseEnter;

如果没有这些事件,则将axShockwaveFlash1控件放在PictureBox控件中并使用其输入/输出鼠标事件。