added samples
[windows-sources.git] / sdk / samples / WPFSamples / WPFAddInDataBindingSample / CSharp / Host / hostui.xaml.cs
blob4ae5aec925e950f63251f4b611757626c801cb41
1 using System.Windows.Controls; // UserControl
3 using HostViews; // PersonView
5 namespace Host
7 public partial class HostUI : UserControl
9 public HostUI(Person person)
11 InitializeComponent();
13 // Bind to person object that was provided by the host
14 this.DataContext = person;