2016-12-03 57 views
0

所以,我创建了一个真正是“高级按钮”的UserControl。 我已经实现了依赖属性,其中之一是ICommand,当在实际窗口中使用控件时,应该进一步绑定它。WPF C#绑定到userControl的命令不会触发

但是,由于某些原因命令不起作用。

当我在普通按钮上尝试完全相同的方法时,一切正常(因此它不是我的DelegateCommand实现或ViewModel的错误)。

我试图跟进为什么绑定的命令不会触发,但我找不到一个可靠的理由。

这里是我的用户XAML:

<Window x:Class="NoContact.MainWindow" 
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
    xmlns:local="clr-namespace:NoContact" 
    mc:Ignorable="d" 
    xmlns:userControls="clr-namespace:NoContact.UserControls" 
    Title="MainWindow" Height="800" Width="960" Background="#22282a"> 
<Border BorderThickness="1" BorderBrush="#ffcd22" Margin="10,10,10,10"> 
<Grid> 
    <Button HorizontalContentAlignment="Stretch" Foreground="{Binding ElementName=ImageButtonUC, Path=Foreground}" 
      Background="{Binding ElementName=ImageButtonUC, Path=Background}"> 
     <DockPanel Width="{Binding ElementName=ImageButtonUC, Path=ActualWidth}"> 
      <Image Source="{Binding ElementName=ImageButtonUC, Path=Image}" DockPanel.Dock="Left" 
        Height="{Binding ElementName=ImageButtonUC, Path=ActualHeight, Converter={StaticResource HeightConverter}}" 
        Width="{Binding ElementName=ImageButtonUC, Path=ActualWidth, Converter={StaticResource HeightConverter}}" VerticalAlignment="Center"/> 
      <TextBlock Text="{Binding ElementName=ImageButtonUC, Path=Text}" FontSize="17" VerticalAlignment="Center" /> 
     </DockPanel> 
    </Button> 
</Grid> 
<UserControl.Resources> 
    <Style TargetType="{x:Type Button}"> 
     <Setter Property="Template"> 
      <Setter.Value> 
       <ControlTemplate TargetType="{x:Type Button}"> 
        <Border Background="{TemplateBinding Background}"> 
         <ContentPresenter Content="{TemplateBinding Content}" HorizontalAlignment="Center" VerticalAlignment="Center" /> 
        </Border> 
       </ControlTemplate> 
      </Setter.Value> 
     </Setter> 
    </Style> 
</UserControl.Resources> 

这里是我的用户后台代码:

public partial class ImageButton : UserControl 
{ 

    // OTHER IRRELEVANT CLASS PARAMETERS ARE HERE 

    public ICommand ClickCommand 
    { 
     get { return (ICommand)GetValue(ClickCommandProperty); } 
     set { SetValue(ClickCommandProperty, value); } 
    } 

    // OTHER IRRELEVANT DEPENDENCY PROPERTIES ARE HERE 

    public static DependencyProperty ClickCommandProperty = 
     DependencyProperty.Register("ClickCommand", typeof(ICommand), typeof(ImageButton)); 

    public ImageButton() 
    { 
     InitializeComponent(); 
    } 
} 

最后,这是我如何使用我的控制:

<userControls:ImageButton x:Name="phoneButton" ClickCommand="{Binding Path=MyButtonClickCommand}" Style="{StaticResource phoneImageButtonUCStyle}" Text="Telefon" Width="200" Height="100" VerticalAlignment="Top" /> 

该控件的DataContext设置在一个堆栈面板上,它围绕着我的控件。我也尝试了直接在控制上设置它,没有效果。

再次,在常规按钮上做同样的工作很好。

+0

似乎有一些关闭标签在你的XAML例子失踪。尝试添加这些内容,并让示例更“复制粘贴”,这样人们可以复制粘贴问题的当前状态。从那里开始找出解决方案更容易:) – Teknikaali

+0

'这里是我的UserControl XAML: Will

回答

0

我终于解决了这个问题 - 这是相当平凡的。

我已经ommited最重要的绑定 - 用户控件的按钮命令UserControl的依赖项属性。

这样的改变也使得它的工作:

<Button HorizontalContentAlignment="Stretch" Foreground="{Binding ElementName=ImageButtonUC, Path=Foreground}" 
     Background="{Binding ElementName=ImageButtonUC, Path=Background}" 
     Command="{Binding ElementName=ImageButtonUC, Path=ClickCommand}">