部分声明不得指定不同的基类

部分声明不得指定不同的基类

本文介绍了部分声明不得指定不同的基类的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我一直面临一个错误,告诉我部分声明不能指定不同的基类。

I've been facing an error that tells me that the partial declarations must not specify a different base class.

public partial class MainWindow : Shape
    {
        public MainWindow()
        {
            InitializeComponent();
            this.Stretch = System.Windows.Media.Stretch.Fill;
            this.StrokeLineJoin = PenLineJoin.Round;
        }



我收到错误:


I get error from :

public partial class MainWindow : Shape



'MainWindow'给出了关于指定不同基数的错误。我如何纠正这个错误?



我的XAML目前是默认的:


The 'MainWindow' gives me error about the specifying of a different base. How do i go about rectifying this error?

My XAML currently, is the default one:

   <Window x:Class="Triangle.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="MainWindow" Height="350" Width="525">
    <Grid>

    </Grid>
</Window>



我还没有编辑XAML中的任何内容,因为这些代码是我在网上找到的代码,并用它来试验是否或不工作。


I have yet to edit anything from the XAML as this codes are codes i found somewhere from online and is using it to try out whether or not it work.

推荐答案

<local:Shape x:Class="Triangle.MainWindow"

  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"

  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"

  xmlns:local="clr-namespace:<your namespace here>"

  Title="MainWindow" Height="350" Width="525">
  <Grid>

  </Grid>
</Shape>



这篇关于部分声明不得指定不同的基类的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-13 01:37