我正在为 Visual Studio 开发一个扩展,它在 VS 窗口中包含一个 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
Mads Kristensen 的多个扩展中可用的类直接复制粘贴。
如前所述,这在 VS2017 和 VS2019 中运行良好。现在我也希望它在 VS2022 中运行。扩展显示在 VS2022 中,但图标不再显示。问题是这会null
在 VS2022 中返回,但在以前的版本中没有:
ServiceProvider.GlobalProvider.GetService(typeof(SVsImageService)) as IVsImageService2;
有谁知道如何在 VS2022 中进行这项工作?