在 VS2022 中将 ImageMoniker 转换为 WPF BitmapSource
Converting ImageMoniker to WPF BitmapSource in VS2022
我正在为 Visual Studio 开发一个扩展,其中包括 VS window 中的 XAML 视图。我希望扩展看起来和感觉上像原生 UI。该扩展目前 运行 并且在 VS2017 和 VS2019 中运行良好,使用以下代码将名字对象转换为可以直接从 XAML 使用的 WPF BitmapSource:
public static BitmapSource GetIconForImageMoniker(ImageMoniker? imageMoniker, int sizeX, int sizeY)
{
if (imageMoniker == null)
{
return null;
}
IVsImageService2 vsIconService = ServiceProvider.GlobalProvider.GetService(typeof(SVsImageService)) as IVsImageService2;
if (vsIconService == null)
{
return null;
}
ImageAttributes imageAttributes = new ImageAttributes
{
Flags = (uint)_ImageAttributesFlags.IAF_RequiredFlags,
ImageType = (uint)_UIImageType.IT_Bitmap,
Format = (uint)_UIDataFormat.DF_WPF,
LogicalHeight = sizeY,
LogicalWidth = sizeX,
StructSize = Marshal.SizeOf(typeof(ImageAttributes))
};
IVsUIObject result = vsIconService.GetImage(imageMoniker.Value, imageAttributes);
object data;
result.get_Data(out data);
BitmapSource glyph = data as BitmapSource;
if (glyph != null)
{
glyph.Freeze();
}
return glyph;
}
此方法是 WpfUtil
class 的直接复制粘贴,在 Mads Kristensen 的多个扩展程序中可用。
如前所述,这在 VS2017 和 VS2019 中运行良好。现在我也想在 VS2022 中使用这个 运行。扩展显示在 VS2022 中,但不再显示图标。问题是这个 returns null
在 VS2022 但在以前的版本中没有:
ServiceProvider.GlobalProvider.GetService(typeof(SVsImageService)) as IVsImageService2;
有谁知道如何在 VS2022 中也能做到这一点?
这是由 VS2022 中的互操作库更改引起的。也就是说,它们都被合并到一个库中(您可以查看详细信息here)。
这确实破坏了与 Visual Studio 的目标早期版本的兼容性。有一个guide for migrating extensions to VS2022,但总结一下,指导是:
- 将源代码重构到共享项目中。
- 创建一个针对 VS2022 的新 VSIX 项目,您现在拥有的 VSIX 项目将保留用于针对以前的版本。
我正在为 Visual Studio 开发一个扩展,其中包括 VS window 中的 XAML 视图。我希望扩展看起来和感觉上像原生 UI。该扩展目前 运行 并且在 VS2017 和 VS2019 中运行良好,使用以下代码将名字对象转换为可以直接从 XAML 使用的 WPF BitmapSource:
public static BitmapSource GetIconForImageMoniker(ImageMoniker? imageMoniker, int sizeX, int sizeY)
{
if (imageMoniker == null)
{
return null;
}
IVsImageService2 vsIconService = ServiceProvider.GlobalProvider.GetService(typeof(SVsImageService)) as IVsImageService2;
if (vsIconService == null)
{
return null;
}
ImageAttributes imageAttributes = new ImageAttributes
{
Flags = (uint)_ImageAttributesFlags.IAF_RequiredFlags,
ImageType = (uint)_UIImageType.IT_Bitmap,
Format = (uint)_UIDataFormat.DF_WPF,
LogicalHeight = sizeY,
LogicalWidth = sizeX,
StructSize = Marshal.SizeOf(typeof(ImageAttributes))
};
IVsUIObject result = vsIconService.GetImage(imageMoniker.Value, imageAttributes);
object data;
result.get_Data(out data);
BitmapSource glyph = data as BitmapSource;
if (glyph != null)
{
glyph.Freeze();
}
return glyph;
}
此方法是 WpfUtil
class 的直接复制粘贴,在 Mads Kristensen 的多个扩展程序中可用。
如前所述,这在 VS2017 和 VS2019 中运行良好。现在我也想在 VS2022 中使用这个 运行。扩展显示在 VS2022 中,但不再显示图标。问题是这个 returns null
在 VS2022 但在以前的版本中没有:
ServiceProvider.GlobalProvider.GetService(typeof(SVsImageService)) as IVsImageService2;
有谁知道如何在 VS2022 中也能做到这一点?
这是由 VS2022 中的互操作库更改引起的。也就是说,它们都被合并到一个库中(您可以查看详细信息here)。
这确实破坏了与 Visual Studio 的目标早期版本的兼容性。有一个guide for migrating extensions to VS2022,但总结一下,指导是:
- 将源代码重构到共享项目中。
- 创建一个针对 VS2022 的新 VSIX 项目,您现在拥有的 VSIX 项目将保留用于针对以前的版本。