项目在导航应用程序中添加两次

发布于 2024-11-10 16:40:47 字数 944 浏览 2 评论 0原文

我有一个自定义的 Silverlight (4) 控件,与数据网格没有什么不同。该控件有一个名为 ColumnConfiguration 的属性。在导航应用程序中使用此控件时,ColumnConfiguration 会再次添加其项目(通过 XAML),同时保留其旧列,结果是向控件添加正常数量的列的两倍。

public ColumnCollection ColumnConfiguration
{
    get { return (ColumnCollection)GetValue(ColumnConfigurationProperty); }
    set { SetValue(ColumnConfigurationProperty, value); }
}

public class ColumnCollection : Collection<ColumnBase> { }

如何防止这些列再次添加到控件中?

Xaml是这样的:

<my:Control.ColumnConfiguration>
<my:ColumnTypeA Width="*" MinWidth="50">
</my:ColumnTypeA>
<my:ColumnTypeB Width="2*" MinWidth="50">

</my:ColumnTypeB>
<my:ColumnTypeB Width="2*" MinWidth="50">

</my:ColumnTypeB>
<my:ColumnTypeB Width="*" MinWidth="50">

</my:ColumnTypeB>
<my:ColumnTypeB Width="2*" MinWidth="50">

</my:ColumnTypeB>
</my:Control.ColumnConfiguration>

I have a custom Silverlight (4) control, not unlike a datagrid. This control has a property called ColumnConfiguration. When using this control in a Navigation application, the ColumnConfiguration has its items added again (through XAML), while retaining it's old columns, the result is that twice the normal amount of columns are added to the control.

public ColumnCollection ColumnConfiguration
{
    get { return (ColumnCollection)GetValue(ColumnConfigurationProperty); }
    set { SetValue(ColumnConfigurationProperty, value); }
}

public class ColumnCollection : Collection<ColumnBase> { }

How can i prevent these columns being added to the control again?

Xaml is like this:

<my:Control.ColumnConfiguration>
<my:ColumnTypeA Width="*" MinWidth="50">
</my:ColumnTypeA>
<my:ColumnTypeB Width="2*" MinWidth="50">

</my:ColumnTypeB>
<my:ColumnTypeB Width="2*" MinWidth="50">

</my:ColumnTypeB>
<my:ColumnTypeB Width="*" MinWidth="50">

</my:ColumnTypeB>
<my:ColumnTypeB Width="2*" MinWidth="50">

</my:ColumnTypeB>
</my:Control.ColumnConfiguration>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

平定天下 2024-11-17 16:40:47

您是否在 DependencyProperty UIPropertyMetaData 中提供了默认值?由于 DependencyProperty 是静态的,因此为控件的所有实例指定的默认值将相同(引用)。当使用值类型时,这是无害的,但是当您的属性是引用类型时,您必须使用控件的 .ctor() (或任何其他实例方式)来设置其初始值为了创建单独的初始值。

我想您在应用程序中两次实例化了该控件,据说是使用 MVVM DataTemplate ?第一个实例将向使用默认值创建的静态 ColumnCollection 添加列,第二个实例也将再次使用该实例。

您可以通过查看 ColumnCollection 的默认 ToString() 值来验证这一点,它将包含引用的哈希值。

要解决此问题,只需将 ColumnConfigurationProperty 的默认值设置为 null 即可。

Could it be that you supplied a default value in the DependencyProperty UIPropertyMetaData? As the DependencyProperty is static, the default value specified there will be the same (reference) for all instances of your control. This is harmless when using value types, but when your property is a reference type, you will have to set its initial value using the .ctor() of your control (or any other instance-way) in order to create individual initial values.

I suppose you have this control twice instantiated in your application, supposedly using MVVM DataTemplate? The first instance will add columns to the static ColumnCollection created using the default value and the secod will also use this very instance again.

You could verify this by looking at the default ToString() value of your ColumnCollection, it will contain a hash value for the reference.

To resolve, simply set the default value for the ColumnConfigurationProperty to null.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文