我有时会为我的自定义控件遇到以下异常:
XamlParseException occurred
Unknown attribute Points in element SectionClickableArea [Line: 10 Position 16]
堆栈跟踪:
{System.Windows.Markup.XamlParseException: Unknown attribute Points on element SectionClickableArea. [Line: 10 Position: 16]
at System.Windows.Application.LoadComponent(Object component, Uri resourceLocator)
at SomeMainDialog.InitializeComponent()
at SomeMainDialog..ctor()}
发生这种情况的元素声明如下所示(当然,此处引用的事件处理程序是定义的):
<l:SectionClickableArea x:Name="SomeButton"
Points="528,350, 508,265, 520,195, 515,190, 517,165, 530,120, 555,75, 570,61, 580,60, 600,66, 615,80, 617,335, 588,395, 550,385, 540,390, 525,393, 520,385"
Click="SomeButton_Click"/>
这是SectionClickableArea
代码的一部分:
public partial class SectionClickableArea : Button {
public static readonly DependencyProperty PointsProperty
= DependencyProperty.Register("Points", typeof(PointCollection), typeof(SectionClickableArea),
new PropertyMetadata((s, e) => {
SectionClickableArea area = (SectionClickableArea) s;
area.areaInfo.Points = (PointCollection) e.NewValue;
area.UpdateLabelPosition();
}));
public PointCollection Points {
get { return (PointCollection) GetValue(PointsProperty); }
set { SetValue(PointsProperty, value); }
}
我将此控件用于多边形按钮之类的东西。因此,我从按钮继承。数周以来,我在这个控件上遇到了类似的问题(E_AG_BAD_PROPERTY_VALUE
在另一个字符串类型的DependencyProperty
上,根据给出的行和列等),但我完全不知道为什么。
今天早上,另一个用户(取自日志并从德语翻译)发生了同一控件的另一个异常:
Type: System.InvalidCastException Message: The object of type System.Windows.Controls.ContentControl could not be converted to type [...]SectionClickableArea. at SomeOtherMainDialog.InitializeComponent()
at SomeOtherMainDialog..ctor()
内部异常:
Type: System.Exception Message: An HRESULT E_FAIL error was returned when calling COM component at MS.Internal.XcpImports.CheckHResult(UInt32 hr)
at MS.Internal.XcpImports.SetValue(INativeCoreTypeWrapper obj, DependencyProperty property, DependencyObject doh)
at MS.Internal.XcpImports.SetValue(INativeCoreTypeWrapper doh, DependencyProperty property, Object obj)
at System.Windows.DependencyObject.SetObjectValueToCore(DependencyProperty dp, Object value)
at System.Windows.DependencyObject.SetValueInternal(DependencyProperty dp, Object value, Boolean allowReadOnlySet, Boolean isSetByStyle, Boolean isSetByBuiltInStyle)
at System.Windows.DependencyObject.SetValueInternal(DependencyProperty dp, Object value)
at System.Windows.DependencyObject.SetValue(DependencyProperty dp, Object value)
at System.Windows.Controls.Control.set_DefaultStyleKey(Object value)
at System.Windows.Controls.ContentControl..ctor()
at System.Windows.CoreTypes.GetCoreWrapper(Int32 typeId)
at MS.Internal.ManagedPeerTable.EnsureManagedPeer(IntPtr unmanagedPointer, Int32 typeIndex, Type type, Boolean preserveManagedObjectReference)
at MS.Internal.ManagedPeerTable.EnsureManagedPeer(IntPtr unmanagedPointer, Int32 typeIndex, Type type)
at MS.Internal.ManagedPeerTable.GetManagedPeer(IntPtr nativeObject)
at MS.Internal.FrameworkCallbacks.SetPropertyAttribute(IntPtr nativeTarget, String attrName, String attrValue, String attachedDPOwnerNamespace, String attachedDPOwnerAssembly)
任何想法控件出了什么问题,或者我可以做些什么来找到这些异常的来源?正如我所说,这些问题仅在控件实例化后的几十次发生一次。
我也遇到了这个问题。我对此没有很好的解释(似乎是 XAML 解析错误),但我已通过将以下代码添加到 XAML 来修复它:
<UserControl.Resources>
<customNamespace:InheritedControl x:Name="dummyInstance"/>
</UserControl.Resources>
我不是 XAML 专家,但您是否缺少点上的命名空间(例如 l:Points)?
我认为我们看到了同样的问题。 我只是更频繁地收到无效广播异常。当通过盲目评论东西,我可以抑制无效广播时,我有时会得到一个属性的属性缺失错误,事实上,它就在那里。 你找到解决方案了吗?
顺便说一句:重现它的简单方法是加载有问题的应用程序并反复按 F5 刷新页面。 你最终会得到它。
我还看到了一个间歇性的 InvalidOperationException,它来自 DependencyObject.get_NativeObject()。
在这里看到我的SO问题:Intermittent InavlidCastException in a UserControl.InitializeComponent()
在此处查看我的 silverlight.net 错误报告:http://silverlight.net/forums/t/67732.aspx
我遇到了同样的问题。在我的情况下,错误发生在其中一个成员身上。成员构造函数上引发异常。
我通过将断点放在 InitializeComponent() 方法之前并在调试模式下按 F11 单步进入并发现错误来解决它。
希望这会有所帮助。
谢谢。