1

我从 Button 类派生了 ImageButton。我希望能够使用自定义属性在其上设置文本。

图像按钮 XAML

<Button x:Class="MyProject.ImageButton"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Height="50" Width="75" Template="{DynamicResource BlueButton}">
    <StackPanel>
        <TextBlock Text="{Binding Path = ImageButton.ButtonText}" TextWrapping="Wrap" Foreground="White"/>
    </StackPanel>
</Button>

后面的 ImageButton 代码

    public partial class ImageButton : Button
    { 
        public string ButtonText
        {
            get { return (string)GetValue(ButtonTextProperty); }
            set { SetValue(ButtonTextProperty, value); }
        }

        public static readonly DependencyProperty ButtonTextProperty =
            DependencyProperty.Register("ButtonText", typeof(string), typeof(ImageButton), new UIPropertyMetadata(string.Empty));

        public ImageButton()
        {
            InitializeComponent();
        }
    }

客户端代码:

<local:ImageButton Margin="114,15.879,96,15.878" Grid.Row="2" ButtonText="test"/>

按钮上没有显示任何文字。由于某种原因,绑定似乎没有发生。我究竟做错了什么?

4

2 回答 2

3

您没有DataContext集合,因此数据绑定不知道它应该绑定到哪个源对象。

我发现解决此问题的最简单方法是为外部控件命名,并ElementName在绑定中使用它来引用它:

<Button x:Class="MyProject.ImageButton"
        x:Name="myImageButton"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Height="50" Width="75" Template="{DynamicResource BlueButton}">
    <StackPanel>
        <TextBlock Text="{Binding ElementName=myImageButton, Path=ButtonText}" 
                   TextWrapping="Wrap" Foreground="White"/>
    </StackPanel>
</Button>
于 2012-06-21T20:50:55.337 回答
0

改变这个

 <TextBlock Text="{Binding Path = ImageButton.ButtonText}" 

   <TextBlock Text="{Binding Path = ButtonText}" 
于 2012-06-21T20:57:31.030 回答