我有一个要显示在图像控件中的.cur文件路径("%SystemRoot%\cursors\aero_arrow.cur"
)。所以我需要将Cursor转换为ImageSource。我尝试了CursorConverter和ImageSourceConverter,但没有运气。我也尝试过从光标创建Graphics,然后将其转换为Bitmap,但这也不起作用。
将游标直接转换为图标很复杂,因为游标不公开其使用的图像源。
和
如果您确实想将图像绑定到光标,则有一种方法您可能想尝试。
由于WindowForm能够绘制光标,因此我们可以使用WindowForm在位图上绘制光标。之后,我们可以找到一种方法将该位图复制到WPF支持。
现在有趣的是,我无法使用文件路径和流创建新的System.Windows.Form.Cursor实例,因为它会引发以下异常:
System.Runtime.InteropServices.COMException (0x800A01E1):
Exception from HRESULT: 0x800A01E1 (CTL_E_INVALIDPICTURE)
at System.Windows.Forms.UnsafeNativeMethods.IPersistStream.Load(IStream pstm)
at System.Windows.Forms.Cursor.LoadPicture(IStream stream)
所以有人能告诉我将System.Windows.Input.Cursor
转换为ImageSource
的最佳方法吗?
。ani游标又如何?如果我没记错的话System.Windows.Input.Cursor不支持动画光标,那么如何向用户显示它们呢?将它们转换为gif,然后使用3d派对gif库?
我在此线程中找到了解决方案:How to Render a Transparent Cursor to Bitmap preserving alpha channel?
所以这是代码:
[StructLayout(LayoutKind.Sequential)]
private struct ICONINFO
{
public bool fIcon;
public int xHotspot;
public int yHotspot;
public IntPtr hbmMask;
public IntPtr hbmColor;
}
[DllImport("user32")]
private static extern bool GetIconInfo(IntPtr hIcon, out ICONINFO pIconInfo);
[DllImport("user32.dll")]
private static extern IntPtr LoadCursorFromFile(string lpFileName);
[DllImport("gdi32.dll", SetLastError = true)]
private static extern bool DeleteObject(IntPtr hObject);
private Bitmap BitmapFromCursor(Cursor cur)
{
ICONINFO ii;
GetIconInfo(cur.Handle, out ii);
Bitmap bmp = Bitmap.FromHbitmap(ii.hbmColor);
DeleteObject(ii.hbmColor);
DeleteObject(ii.hbmMask);
BitmapData bmData = bmp.LockBits(new Rectangle(0, 0, bmp.Width, bmp.Height), ImageLockMode.ReadOnly, bmp.PixelFormat);
Bitmap dstBitmap = new Bitmap(bmData.Width, bmData.Height, bmData.Stride, PixelFormat.Format32bppArgb, bmData.Scan0);
bmp.UnlockBits(bmData);
return new Bitmap(dstBitmap);
}
private void Form1_Paint(object sender, System.Windows.Forms.PaintEventArgs e)
{
//Using LoadCursorFromFile from user32.dll, get a handle to the icon
IntPtr hCursor = LoadCursorFromFile("C:\\Windows\\Cursors\\Windows Aero\\aero_busy.ani");
//Create a Cursor object from that handle
Cursor cursor = new Cursor(hCursor);
//Convert that cursor into a bitmap
using (Bitmap cursorBitmap = BitmapFromCursor(cursor))
{
//Draw that cursor bitmap directly to the form canvas
e.Graphics.DrawImage(cursorBitmap, 50, 50);
}
}
它是为Win Forms编写的,并绘制图像。但是也可以在wpf中与System.Windows.Forms一起使用。然后您可以将该位图转换为位图源,并在图像控件中显示它...
我使用System.Windows.Forms.Cursor而不是System.Windows.Input.Cursor的原因是,我无法使用IntPtr句柄创建新的游标实例...
编辑:上面的方法不适用于颜色位低的光标。另一种方法是改用Icon.ExtractAssociatedIcon
:
System.Drawing.Icon i = System.Drawing.Icon.ExtractAssociatedIcon(@"C:\Windows\Cursors\arrow_rl.cur");
System.Drawing.Bitmap b = i.ToBitmap();
希望对某人有帮助...