我已将文件“x.ani”导入资源文件Resources.resx.现在尝试使用ResourceManager.GetObject(“aero_busy.ani”)加载该文件
@H_404_9@解决方法@H_403_10@
Cursor.Current = (Cursor)ResourcesX.GetObject("aero_busy.ani");
但它没有用..(当然):)
如何使用资源对象更改当前Cursor?
我没有找到比转储到临时文件更好的方法,并使用文件方法中的Win32加载游标.黑客行为是这样的(为了清楚起见,我删除了一大块样板代码,其中使用流中的数据写入临时文件).此外,删除了所有异常处理等.
[DllImport("User32.dll",CharSet = CharSet.Ansi,BestFitMapping = false,ThrowOnUnmappableChar = true)] private static extern IntPtr LoadCursorFromFile(String str); public static Cursor LoadCursorFromResource(string resourceName) { Stream cursorStream = Assembly.GetExecutingAssembly().GetManifestResourceStream(resourceName); // Write a temp file here with the data in cursorStream Cursor result = new Cursor(LoadCursorFromFile(tempFile)); File.Delete(tempFile); return result. }
您可以将其用作(在加载嵌入式资源时记住命名空间).
Cursors.Current = LoadCursorFromResource("My.Namespace.Filename");