【发布时间】:2017-06-09 12:09:15
【问题描述】:
我正在尝试将点击事件传递给 WPF 用户控件中的按钮。
我的用户控件的 xaml 部分:
<UserControl>
<Grid>
<Button Name="btnlrg"
Command="{Binding Command, RelativeSource={RelativeSource AncestorType={x:Type local:ButtonLarge}}}"
Click="{Binding Click, RelativeSource={RelativeSource AncestorType={x:Type local:ButtonLarge}}}">
<Button.Content>
<StackPanel Orientation="Horizontal">
<!-- shortened -->
</StackPanel>
</Button.Content>
</Button>
</Grid>
</UserControl>
我的用户控件的 c# 部分:
public partial class ButtonLarge : UserControl
{
public ButtonLarge()
{
InitializeComponent();
}
public string Text
{
get { return (string)GetValue(TextProperty); }
set { SetValue(TextProperty, value); }
}
public static readonly DependencyProperty TextProperty =
DependencyProperty.Register("Text", typeof(string), typeof(ButtonLarge), new UIPropertyMetadata(""));
public ImageSource Image
{
get { return (ImageSource)GetValue(ImageProperty); }
set { SetValue(ImageProperty, value); }
}
public static readonly DependencyProperty ImageProperty =
DependencyProperty.Register("Image", typeof(ImageSource), typeof(ButtonLarge), new UIPropertyMetadata(null));
//Make Commands available in UserControl
public static readonly DependencyProperty CommandProperty =
DependencyProperty.Register("Command", typeof(ICommand), typeof(ButtonLarge));
public ICommand Command
{
get { return (ICommand)GetValue(CommandProperty); }
set { SetValue(CommandProperty, value); }
}
//Make Click Event available in UserControl
public static readonly RoutedEvent ClickEvent = EventManager.RegisterRoutedEvent("Click", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(ButtonLarge));
public event RoutedEventHandler Click
{
add { btnlrg.AddHandler(ButtonLarge.ClickEvent, value); }
remove { btnlrg.RemoveHandler(ButtonLarge.ClickEvent, value); }
}
}
用户控件的使用:
<ui:ButtonLarge Image="{StaticResource Icon}" Text="Ok" Click="newClickEvent"/>
我不能在这里继续:(有人可以帮帮我吗?
【问题讨论】:
-
ButtonLarge 不应该从 Button 继承吗?