gpt4 book ai didi

c# - WPF-C# : This element is not currently associated with any context

转载 作者:太空宇宙 更新时间:2023-11-03 16:55:55 31 4
gpt4 key购买 nike

我有一个 WPF 用户控件,我在 ElementHostControl 内的 WinForms 控件中使用它。然后我启动一个 WPF 窗口,同时 Windows 窗体仍处于打开状态。如果我随后关闭 WPF 窗口,并尝试向我的 WPF UserControl 添加一个子元素,它会在“InitializeComponent()”(子元素的)处崩溃,但以下情况除外:

"A first chance exception of type 'System.Configuration.ConfigurationErrorsException' occurred in System.Configuration.dll. Additional information: This element is not currently associated with any context"

我找到了为什么会这样,但我不知道如何解决这个问题。如果我省略这段代码:

public static void EnsureApplicationResources()
{
if (Application.Current == null)
{
// create the Application object
new Application();
string assemblyName = System.IO.Path.GetFileNameWithoutExtension(
Assembly.GetExecutingAssembly().ManifestModule.Name);

// merge in your application resources
Application.Current.Resources.MergedDictionaries.Add(
Application.LoadComponent(new Uri("/KolonistenClient;component/KolonistenResourceDictionary.xaml", UriKind.RelativeOrAbsolute))
as ResourceDictionary);
}
}

然后一切都很好。不过,我需要它,因为我的 ResourceDictionary(以及我定义的样式和模板)在整个 WPF 窗口和控件中都不可用。 This I found out about here

有什么方法可以结合两全其美吗?保留我的 ResourceDictionary,同时防止应用程序崩溃?

最佳答案

我最终通过 xaml 在每个窗口中手动添加 ResourceDictionary 解决了这个问题。这样,我的 WinForms 中的 UserControl 就不会受到影响。

不幸的是,仍然不明白 为什么 它崩溃了。

<Window.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="/KolonistenClient;component/KolonistenResourceDictionary.xaml"/>
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Window.Resources>

关于c# - WPF-C# : This element is not currently associated with any context,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2073497/

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