gpt4 book ai didi

wpf - 当前上下文 : strange behaviour 中不存在名称 'InitializeComponent'

转载 作者:行者123 更新时间:2023-12-02 08:44:29 25 4
gpt4 key购买 nike

我创建了非常小的 WPF 应用程序并面临一个问题。我有以下类(class)。

员工.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace StaticResourceVsDynamicResource
{
public class Employee
{
public string strName;
public int nId;

public Employee()
{
strName = "Default name";
nId = -1;
}

public string Name
{
get{return strName;}set{strName = value;}
}

public int ID
{
get{return nId;}set{nId = value;}
}
}
}

MainWindow.xamal.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;

namespace StaticResourceVsDynamicResource
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
}

private void button1_Click(object sender, RoutedEventArgs e)
{
this.Resources["objEmployee"] = new Employee { Name = "Changed employee", ID = 100};

this.Resources.Add("myBrush",new SolidColorBrush(SystemColors.GrayTextColor));
}
}
}

MainWindow.xamal

<Window x:Class="StaticResourceVsDynamicResource.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:StaticResourceVsDynamicResource"
xmlns:sys="clr-namespace:System;assembly=mscorlib"
Title="MainWindow" Height="350" Width="525">
<Window.Resources>
<x:ArrayExtension Type="{x:Type sys:String}" x:Key="objNames">
<sys:String>A1</sys:String>
<sys:String>A2</sys:String>
</x:ArrayExtension>
<local:Employee x:Key="objEmployee"></local:Employee>
</Window.Resources>
<Grid>
<Grid Height="100" HorizontalAlignment="Left" Margin="281,12,0,0" Name="grid3" VerticalAlignment="Top" Width="200" >
<ComboBox ItemsSource="{StaticResource ResourceKey=objNames}" Height="23" HorizontalAlignment="Left" Margin="48,37,0,0" Name="comboBox1" VerticalAlignment="Top" Width="120" />
</Grid>
</Grid>

上面的 xaml 代码很有趣。当我构建这段代码时,我没有收到任何错误。无论出于何种原因,我只是随机调整 <x:ArrayExtension> 的位置和<local:Employee>我开始出现以下错误。

The name 'InitializeComponent' does not exist in the current context

当我声明<local:Employee>时之前<x:ArrayExtenion>那么只有我收到这个错误。我确信这与命名空间有关,但我无法弄清楚。请参阅下面导致编译错误的代码。

<Window.Resources>
<local:Employee x:Key="objEmployee"></local:Employee>
<x:ArrayExtension Type="{x:Type sys:String}" x:Key="objNames">
<sys:String>A1</sys:String>
<sys:String>A2</sys:String>
</x:ArrayExtension>
</Window.Resources>

有人可以帮忙吗?似乎是一个奇怪的问题,但它是......

问候,赫曼特

最佳答案

我也遇到过同样的问题。我解决这个问题的方法是将 XAML 文件的构建操作更改为 Page。

归功于我找到解决方案的来源: http://blog.mahop.net/post/Compile-Error-for-WPF-Files-The-name-InitializeComponent-does-not-exist-in-the-current-context.aspx

关于wpf - 当前上下文 : strange behaviour 中不存在名称 'InitializeComponent',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16080680/

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