我正在尝试实现一些应该很简单但又被困住的事情。
这就是我要执行的操作:一个UserControl,它只是边框前的FontAwesome图标。
这是我的UC的xaml
<UserControl
x:Class="Project.Views.UC.UC_CircledIcons"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:Project.Views.UC"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
xmlns:fa="using:FontAwesome5.UWP"
DataContext="{Binding RelativeSource={RelativeSource Self}}"
d:DesignHeight="200"
d:DesignWidth="200">
<Border Style="{StaticResource BorderStyle1}" Height="{Binding Height}" Width="{Binding Width}" BorderBrush="{Binding MyColor}" VerticalAlignment="Center" HorizontalAlignment="Center">
<fa:FontAwesome Foreground="{Binding MyColor}" Icon="{Binding MyIcon}" Height="{Binding Height}" Width="{Binding Width}" FontSize="{Binding MyFontSize}" VerticalAlignment="Center" HorizontalAlignment="Center"></fa:FontAwesome>
</Border>
这是我的UC的CS代码:
namespace Project.Views.UC
{
public sealed partial class UC_CircledIcons : UserControl
{
public UC_CircledIcons()
{
this.InitializeComponent();
this.Height = 200;
this.Width = 200;
}
/// <summary>
/// Le font size de l'icon est égal à 2.6 fois sa hauteur
/// </summary>
public double MyFontSize
{
get
{
return (double)GetValue(HeightProperty) / 2.6;
}
}
/// <summary>
/// Pour setter l'icone FontAwesome du composant via l'enum
/// </summary>
public static readonly DependencyProperty IconProperty = DependencyProperty.Register("MyIcon", typeof(EFontAwesomeIcon), typeof(UC_CircledIcons), new PropertyMetadata(default(EFontAwesomeIcon)));
public EFontAwesomeIcon MyIcon
{
get
{
return (EFontAwesomeIcon)GetValue(IconProperty);
}
set
{
SetValue(IconProperty, value);
}
}
/// <summary>
/// Pour setter la color du border et de l'icone en même temps
/// </summary>
public static readonly DependencyProperty ColorProperty = DependencyProperty.Register("MyColor", typeof(string), typeof(UC_CircledIcons), new PropertyMetadata(default(string)));
public string MyColor
{
get {
return (string)GetValue(ColorProperty);
}
set {
SetValue(ColorProperty, value);
}
}
}
}
如果我像这样在我的xaml页面中静态使用UserControl,这将很好地工作:
<uc:UC_CircledIcons MyColor="#321654" MyIcon="Solid_Check"></uc:UC_CircledIcons>
但是我试图动态设置此UC的颜色和图标。因此,我想使用绑定来实现这一目标。像这样:
<uc:UC_CircledIcons MyColor="{Binding MainIconColor}" MyIcon="{Binding MainIcon}"></uc:UC_CircledIcons>
就像我通过绑定到ViewModel的任何属性来处理任何Textblock内容一样。但是,用我的UserControl不能正常工作。在输出窗口中,我可以看到绑定错误:
错误:BindingExpression路径错误:在“ Project.Views.UC.UC_CircledIcons”上找不到“ MainIcon”属性。 BindingExpression:Path ='MainIcon'DataItem ='Project.Views.UC.UC_CircledIcons';目标元素是“ Project.Views.UC.UC_CircledIcons”(名称=“空”);目标属性为“ MyIcon”(类型为“ EFontAwesomeIcon”)
我相信这是由以下行引起的:
DataContext="{Binding RelativeSource={RelativeSource Self}}"
使用我的UserControl代码。似乎xaml在我的USerControl的定义中正在寻找一个名为MainIcon的属性,或者该属性是ViewModel的一部分。
我在哪里缺少什么?有什么办法可以实现我想要做的事情?非常感谢您的帮助。
答案 0 :(得分:1)
将DataContext="{Binding RelativeSource={RelativeSource Self}}"
替换为Name="uc"
,并使用ElementName
绑定到属性:
<Border ... BorderBrush="{Binding MyColor, ElementName=uc}" ... />
然后UserControl
应该继承预期的DataContext
,但是您仍然可以在XAML标记中绑定到控件本身的属性。