0

我正在为 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;
}

此方法是从WpfUtilMads Kristensen 的多个扩展中可用的类直接复制粘贴。

如前所述,这在 VS2017 和 VS2019 中运行良好。现在我也希望它在 VS2022 中运行。扩展显示在 VS2022 中,但图标不再显示。问题是这会null在 VS2022 中返回,但在以前的版本中没有:

ServiceProvider.GlobalProvider.GetService(typeof(SVsImageService)) as IVsImageService2;

有谁知道如何在 VS2022 中进行这项工作?

4

1 回答 1

1

这是由 VS2022 中互操作库的更改引起的。也就是说,它们都被合并到一个库中(您可以在此处查看详细信息)。

这确实破坏了与针对 Visual Studio 早期版本的兼容性。有一个将扩展迁移到 VS2022 的指南,但总而言之,该指南是:

  1. 将源代码重构为共享项目。
  2. 创建一个针对 VS2022 的新 VSIX 项目,您现在拥有的 VSIX 项目将保留为针对以前的版本。
于 2021-07-08T16:36:06.667 回答