gpt4 book ai didi

wpf - 部分声明,一定不能指定不同的基类?

转载 作者:行者123 更新时间:2023-12-04 22:42:14 24 4
gpt4 key购买 nike

当我改变这个时:

public partial class FrmCategories : UserControl

到这里:

public partial class FrmCategories : MyUserControl

其中 MyUserControl 继承自 UserControl

我收到了这个错误:

Error 2 Partial declarations of 'WpfTest.FrmCategories' must not specify different base classes

\Projects\WpfTest\WpfTest\FrmCategories.xaml.cs 21 26 WpfTest

XAML:

<UserControl x:Class="WpfTest.FrmCategories"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"

xmlns:we="clr-namespace:WpfTest"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
mc:Ignorable="d" Background="Azure" Height="131" Width="229">
<StackPanel Margin="5,24,5,0" Name="catFrm" Height="75" VerticalAlignment="Top">

我正在开始 WPF(正如项目名称所暗示的那样),所以我预计这里会出现一个微不足道的错误

最佳答案

您需要更改 XAML 文件的根元素:

<we:MyUserControl x:Class="WpfTest.FrmCategories"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:we="clr-namespace:WpfTest"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
mc:Ignorable="d" Background="Azure" Height="131" Width="229">
<StackPanel Margin="5,24,5,0" Name="catFrm" Height="75" VerticalAlignment="Top">
</we:MyUserControl>

关于wpf - 部分声明,一定不能指定不同的基类?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43390340/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com