I know that there is information on the Internet about this, but I have problems translating into my situation.
I have a xaml window and I get the error: Partial declarations 'GX3OpenStackupGUIPlugin.GX3OpenStackupGUIPlugin' should not indicate different base classes.
My code is:
public partial class GX3OpenStackupGUIPlugin : GX3ClientPlugin, IGX3PluginInterface
{
My xaml:
<Grid xmlns:my="clr-namespace:CustomControls;assembly=MultiComboBox" xmlns:extToolkit="http://schemas.microsoft.com/winfx/2006/xaml/presentation/toolkit/extended" x:Class="GX3OpenStackupGUIPlugin.GX3OpenStackupGUIPlugin"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
Please, if someone advises :)
Here is a link to what I found, but I'm trying to translate ...
Partial declarations should not indicate different base classes
After a little research, I found that if I changed my code to implement a top-level element in my xaml, it would get rid of the error. This is clearly a problem, since the codebehind class must implement the interfaces that I developed.
source