我想制作一个UserControl,我可以重复使用我的应用程序中的各种按钮。有没有办法通过XAML将参数传递给UserControls?我的应用程序中的大多数按钮都包含两个矩形(一个在另一个内),并带有一些用户指定的颜色。它也可能有一个图像。我希望它表现得像这样:
<Controls:MyCustomButton MyVarColor1="<hard coded color here>" MyVarIconUrl="<null if no icon or otherwise some URI>" MyVarIconX="<x coordinate of icon within button>" etc etc>
然后在按钮内我希望能够在XAML中使用这些值(将IconUrl分配给Icon的来源等等。
我只是想错误的方式,还是有办法做到这一点?我的目的是为我的所有按钮提供更少的XAML代码。
谢谢!
答案 0 :(得分:5)
是的,您可以访问xaml中Control
中的任何媒体资源,但如果您想使用DataBind,Animate等,UserControl
中的媒体资源必须为DependencyProperties
。
示例:
public class MyCustomButton : UserControl
{
public MyCustomButton()
{
}
public Brush MyVarColor1
{
get { return (Brush)GetValue(MyVarColor1Property); }
set { SetValue(MyVarColor1Property, value); }
}
// Using a DependencyProperty as the backing store for MyVarColor1. This enables animation, styling, binding, etc...
public static readonly DependencyProperty MyVarColor1Property =
DependencyProperty.Register("MyVarColor1", typeof(Brush), typeof(MyCustomButton), new UIPropertyMetadata(null));
public double MyVarIconX
{
get { return (double)GetValue(MyVarIconXProperty); }
set { SetValue(MyVarIconXProperty, value); }
}
// Using a DependencyProperty as the backing store for MyVarIconX. This enables animation, styling, binding, etc...
public static readonly DependencyProperty MyVarIconXProperty =
DependencyProperty.Register("MyVarIconX", typeof(double), typeof(MyCustomButton), new UIPropertyMetadata(0));
public Uri MyVarIconUrl
{
get { return (Uri)GetValue(MyVarIconUrlProperty); }
set { SetValue(MyVarIconUrlProperty, value); }
}
// Using a DependencyProperty as the backing store for MyVarIconUrl. This enables animation, styling, binding, etc...
public static readonly DependencyProperty MyVarIconUrlProperty =
DependencyProperty.Register("MyVarIconUrl", typeof(Uri), typeof(MyCustomButton), new UIPropertyMetadata(null));
}
XAML:
<Controls:MyCustomButton MyVarColor1="AliceBlue" MyVarIconUrl="myImageUrl" MyVarIconX="60" />
答案 1 :(得分:0)
如果您正在讨论在XAML中传递构造函数参数,则无法做到这一点。在对象初始化之后,您必须通过属性设置它们,或者您需要通过代码实现它们。
这里有一个类似的问题:Naming user controls without default constructors in XAML