我想将依赖属性添加到UserControl
可以包含UIElement
对象集合的 a 中。您可能会建议我应该从中获得控制权Panel
并为此使用该Children
属性,但在我的情况下这不是一个合适的解决方案。
我已经这样修改了UserControl
:
public partial class SilverlightControl1 : UserControl {
public static readonly DependencyProperty ControlsProperty
= DependencyProperty.Register(
"Controls",
typeof(UIElementCollection),
typeof(SilverlightControl1),
null
);
public UIElementCollection Controls {
get {
return (UIElementCollection) GetValue(ControlsProperty);
}
set {
SetValue(ControlsProperty, value);
}
}
}
我正在这样使用它:
<local:SilverlightControl1>
<local:SilverlightControl1.Controls>
<Button Content="A"/>
<Button Content="B"/>
</local:SilverlightControl1.Controls>
</local:SilverlightControl1>
不幸的是,当我运行应用程序时出现以下错误:
Object of type 'System.Windows.Controls.Button' cannot be converted to type
'System.Windows.Controls.UIElementCollection'.
在使用集合语法设置属性部分中明确指出:
[...] 您不能在 XAML 中显式指定 [UIElementCollection],因为 UIElementCollection 不是可构造的类。
我能做些什么来解决我的问题?解决方案是否只是使用另一个集合类而不是UIElementCollection
?如果是,推荐使用什么集合类?