这是 Visual Studio 或 AxWMPLib::AxWindowsMediaPlayer 上的错误吗?

Is this a bug on Visual Studio or AxWMPLib::AxWindowsMediaPlayer?

Microsoft Visual Studio Community 2019 版本 16.8.4.

这是一个 CLR 项目 (.NET Framework 4.5)。

我不确定这个错误的来源,所以我无法向其各自的程序填写错误报告。

我在 Visual Studio Community 2019AxWMPLib::AxWindowsMediaPlayer 上发现了一个错误。在 Designer 中添加从 AxWMPLib::AxWindowsMediaPlayer 派生的自定义控件时,如果您将 formLanguage 切换为 Designer,那么它将全部空白,您被迫关闭Designer。对于从 System::Windows::Forms::* 派生的另一个自定义控件,该错误不会发生。

这是我的 ClassLibrary1.dll 例如:

#pragma once

using namespace System;

namespace ClassLibrary1 {
    [System::ComponentModel::ToolboxItem(true)]
    public ref class MyMediaPlayer : public AxWMPLib::AxWindowsMediaPlayer
    {
    public:
        MyMediaPlayer() {}
    };
}

问题已在版本 16.8.6 上解决。所以这实际上是一个 Visual Studio 错误。