2

我正在创建一个带有标题属性的自定义“PageHeaderControl”用户控件:

 public partial class PageHeaderControl: UserControl
 {
    public static readonly DependencyProperty HeaderProperty =
        DependencyProperty.Register("Header",
                        typeof(string), typeof(PageHeaderControl),
                        new PropertyMetadata(""));

    public string Header
    {
        get { return GetValue(HeaderProperty) as string; }
        set { SetValue(HeaderProperty, value); }
    }

 }

在该控件的 XAML 中,我有:

<sdk:Label Content="{Binding Header,Mode=TwoWay}" />

现在解决问题:当我创建控件时,绑定它仅适用于执行此操作:

<my:PageHeaderControl Header="This is my page header" />

这样做是行不通PageHeader的,我的 ViewModel 中保存标头值的属性在哪里:

<my:PageHeaderControl Header="{Binding PageHeader,Mode=TwoWay}" />

我想也许我的属性搞砸了,但这也有效:

<TextBlock Text="{Binding PageHeader,Mode=TwoWay}" />

关于问题可能是什么的任何想法!

非常感谢!!!

编辑:

在我的 ViewModel 中,PageHeader 是这样的:

private string _pageHeader = "This is my page header";
public string PageHeader
{
    get
    {
        return _pageHeader;
    }
    set
    {
        _pageHeader = value;
        RaisePropertyChanged("PageHeader");
    }
}

编辑2:

当我在我的属性的“get”中放置一个断点时PageHeader,它根本不会被命中,除非我在 TextBlock 中添加......

4

2 回答 2

2

如果我理解正确,您正在尝试将控件的 XAML 标记中元素的属性绑定到控件本身的属性。

如果是这种情况,请查看以下内容是否对您有帮助。

PageHeaderControl.xaml:

<UserControl x:Class="TryElementBinding.PageHeaderControl"
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"
x:Name = "MyControl"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="400">

<Grid x:Name="LayoutRoot" Background="White">
    <TextBlock Text="{Binding Header, ElementName=MyControl}"></TextBlock>
</Grid>

PageHeaderControl.xaml.cs:

public partial class PageHeaderControl : UserControl
{
    public static readonly DependencyProperty HeaderProperty =
            DependencyProperty.Register("Header", typeof(string), typeof(PageHeaderControl), new PropertyMetadata(""));

    public string Header
    {
        get
        {
            return GetValue(HeaderProperty) as string;
        }
        set
        {
            SetValue(HeaderProperty, value);
        }
    }

    public PageHeaderControl()
    {
        InitializeComponent();
    }
}

ViewModel.cs:

public class ViewModel : INotifyPropertyChanged
{
    private string _pageHeader = "This is my page header";

    public string PageHeader
    {
        get
        {
            return _pageHeader;
        }
        set
        {
            _pageHeader = value;
            PropertyChanged(this, new PropertyChangedEventArgs("PageHeader"));
        }
    }


    public event PropertyChangedEventHandler PropertyChanged;
}

MainPage.xaml:

<Grid x:Name="LayoutRoot" Background="White">
    <my:PageHeaderControl Header="{Binding PageHeader, Mode=TwoWay}"></my:PageHeaderControl>
</Grid>

MainPage.xaml.cs:

public partial class MainPage : UserControl
{
    public MainPage()
    {
        InitializeComponent();
        DataContext = new ViewModel();
    }
}
于 2012-09-07T18:45:09.763 回答
0

我有点困惑,我认为您错过了 Binding 内联表达式的语法。

在“{Binding”之后是您的财产的路径。“PageHeader”是您的财产的路径吗?

我想你的意思是:

<my:PageHeader Header="{Binding PageHeader, Mode=TwoWay}" />

<TextBlock Text="{Binding PageHeader, Mode=TwoWay}" />

问题是绑定表达式仅在您使用 SetValue 方法设置属性值并通知父 DependencyObject 特定属性已更改时才有效!您应该使用 DependencyProperty 对其进行双向绑定,或者在您的类中实现 System.ComponentModel.INotifyPropertyChange 接口,并通过在接口中调用 PropertyChanged 事件手动通知 Binding 对象。

PageHeader 属性的定义应该是这样的:

public static readonly DependencyProperty PageHeaderProperty = DependencyProperty.Register("PageHeader", typeof(string), typeof(YOUROWNER), new PropertyMetadata(""));

public string PageHeader
{
    get { return GetValue(PageHeaderProperty) as string; }
    set { SetValue(PageHeaderProperty, value); }
}

干杯

于 2012-09-07T13:54:20.583 回答