gpt4 book ai didi

wpf - 当我提供默认值时,为什么依赖属性实现会使我的应用程序崩溃?

转载 作者:行者123 更新时间:2023-12-04 10:02:31 26 4
gpt4 key购买 nike

当我提供默认值时,为什么依赖属性实现会使我的应用程序崩溃?

这段代码在我的 UserControl 对象的类声明中。一切正常 - 它编译和运行完美。

public static System.Windows.DependencyProperty DepProp
= System.Windows.DependencyProperty.Register( "Rect",
typeof(System.Windows.Shapes.Rectangle),
typeof(FooControl));
public System.Windows.Shapes.Rectangle Rect
{
get
{ return ((System.Windows.Shapes.Rectangle)(GetValue(DepProp))); }
set
{ SetValue(DepProp, value); }
}

但是,当我将默认值添加到依赖属性时:
代码可以编译,但在尝试实例化 UserControl 时会因致命异常而崩溃。

作为引用,我的代码现在看起来像这样 - 添加了 PropertyMetaData 行:
public static System.Windows.DependencyProperty DepProp
= System.Windows.DependencyProperty.Register( "Rect",
typeof(System.Windows.Shapes.Rectangle),
typeof(FooControl),
new System.Windows.PropertyMetadata(new System.Windows.Shapes.Rectangle()));
public System.Windows.Shapes.Rectangle Rect
{
get
{ return ((System.Windows.Shapes.Rectangle)(GetValue(DepProp))); }
set
{ SetValue(DepProp, value); }
}

从对 Register() 的调用中删除 PropertyMetadata 会导致程序完美运行,不会出现任何崩溃或任何其他问题。但是我需要以后代码的默认值。如何让它接受默认值而不崩溃?

当它崩溃时,输出窗口中会显示以下异常:
A first chance exception of type 'System.ArgumentException' occurred in WindowsBase.dll  
A first chance exception of type 'System.Reflection.TargetInvocationException' occurred in mscorlib.dll
A first chance exception of type 'System.Windows.Markup.XamlParseException' occurred in PresentationFramework.dll

我需要尽快让这个工作,所以任何建议都会很棒!

最佳答案

简短的回答:

依赖属性默认值需要是线程安全的(例如从 System.Windows.Freezable 继承),但 System.Windows.Forms.Rectangle 不是。

长答案:

http://social.msdn.microsoft.com/forums/en-US/wpf/thread/2cb12481-ef86-40b7-8333-443598d89933/

暗示:

如果您使用的是 Visual Studio,它确实有助于让 IDE 在每次抛出异常时中断。只需转到“调试”->“异常”并检查“公共(public)语言运行时异常”“抛出”。

然后您将收到提示并收到异常消息,在您的情况下如下所示:“附加信息:'Rect' 属性的默认值不能绑定(bind)到特定线程。”

关于wpf - 当我提供默认值时,为什么依赖属性实现会使我的应用程序崩溃?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1168648/

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