6

我正在制作一个简单的演示来学习如何创建可绑定的用户控件。我创建了一个简单的类:

class Person
{
    public string firstName;
    public string lastName;    
    public Person(string first, string last)
    {
        firstName = first;
        lastName = last;
    }
}

还有一个非常简单的用户控件:

<UserControl x:Class="Example.ExampleHRControl"
         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
         xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
         mc:Ignorable="d" 
         d:DesignHeight="300" d:DesignWidth="300">
    <Grid>
        <TextBlock x:Name="textFirstName"></TextBlock>
        <TextBlock x:Name="textLastName"></TextBlock>
    </Grid>
</UserControl>

我想知道的是我需要做什么才能像普通控件一样在上下文中使用用户控件。我可以将其添加到MainWindow

<local:ExampleHRControl x:Name="Hr1"></local:ExampleHRControl>

然后我可以通过后面的代码解决它并添加值:

Hr1.textFirstName.Text = "John";
Hr1.textLasttName.Text = "Doe";

我希望能够创建该类的一个实例,Person并将主窗口上的控件简单地绑定到Person该类。

4

2 回答 2

6

要完成这项工作,您需要做几件事。

在您的代码隐藏中,为您希望控件了解的 Person 对象添加依赖属性:

   public static readonly DependencyProperty PersonProperty =
                          DependencyProperty.Register("Person", typeof(Person),
                                                      typeof(ExampleHRControl));

   public Person Person
   {
      get { return (Person)GetValue(PersonProperty); }
      set { SetValue(PersonProperty, value); }
   }

在您的 XAML 中,将您的代码隐藏设置为您的数据上下文并将绑定添加到您的人员对象:

<UserControl x:Class="Example.ExampleHRControl"
         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
         xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
         mc:Ignorable="d" 
         d:DesignHeight="300" d:DesignWidth="300"
         x:Name="This">
    <Grid>
        <TextBlock x:Name="{Binding Path=Person.FirstName, ElementName=This}"/>
        <TextBlock x:Name="{Binding Path=Person.LastName, ElementName=This}"/>
    </Grid>
</UserControl>

现在,只要设置了 Person 属性,您的控件就会使用与 Person 关联的名字和姓氏来更新自身。

于 2012-04-18T21:11:54.890 回答
2

您想要调用的依赖属性可以从 xaml 绑定到它。
1-创建字段

public static readonly DependencyProperty FirstNameProperty = 
    DependencyProperty.Register(
    "FirstName", typeof(Strin),

2-创建属性

public String FirstName
{
    get { return (String)GetValue(FirstNameProperty); }
    set { SetValue(FirstNameProperty, value); }
}

3-您可以在 XAML 中使用它来绑定它或只使用它

<local:YourControlName FirstName="john"/>

<local:YourControlName FirstName="{Binding MyFirstName}"/>
  • 使用Resharper将帮助您编写干净的代码并拥有非常强大的 IntelliSense
于 2012-04-18T20:33:53.280 回答