gpt4 book ai didi

c# - 部分声明不得在 Silverlight 小工具中指定不同的基类

转载 作者:行者123 更新时间:2023-11-30 16:20:38 28 4
gpt4 key购买 nike

我正在为 Windows 小部件开发一个 Silverlight 小工具。当我在我的小部件中添加另一个页面时,我发现了这个错误。我在 Stack Overflow 中发现了同样的问题,但它不是针对小部件的。

我的示例代码在这里是 XAML 代码

<navigation:Page x:Class="SilverlightGadgetDocked.Test" 
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
xmlns:navigation="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Navigation"
d:DesignWidth="359" d:DesignHeight="225"
Title="Test Page">
<Grid x:Name="LayoutRoot">
<Button Content="Button" Height="23" HorizontalAlignment="Left" Margin="182,103,0,0" Name="button1" VerticalAlignment="Top" Width="75" Click="button1_Click" />
</Grid>
</navigation:Page>

CS代码在这里,

public partial class Test:UserControl
{
public Test()
{
MessageBox.Show("af");
InitializeComponent();
}

// Executes when the user navigates to this page.
protected override void OnNavigatedTo(NavigationEventArgs e)
{
}

private void button1_Click(object sender, RoutedEventArgs e)
{

}

}

最佳答案

您的代码背后指定了 UserControl 的基类,但您的 XAML 文件指定了 Page 的基类(文档的根节点对应于类型)。

改变

public partial class Test:UserControl

public partial class Test

一切都会好起来的。值得注意的是,您实际上不必在部分类的所有部分上指定基类。由于基类是在 XAML 文件中设置的,因此无需在代码隐藏的类中再次指定它(但是,如果您这样做,它必须与 XAML 中指定的类型相匹配)。

关于c# - 部分声明不得在 Silverlight 小工具中指定不同的基类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14001977/

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