在XAML中绑定UserControl

时间:2011-03-14 13:13:23

标签: wpf binding user-controls

我正在尝试将我在类中创建的userControl绑定为属性。我无法弄清楚如何在XAML中显示它。

示例:

public class MainWindowViewModel : ViewModelBase
{
    public UserControl myUserControl { get; set; };

    public MainWindowViewModel()
        : base()
    {
        _myUserControl = new WelcomePageView());

    }
}

在XAML中:

<Window c:Class=".."
   .
   .
   .
 />
<???? {Binding myUserControl}>
</Window>

1 个答案:

答案 0 :(得分:3)

尝试

<ContentControl Content="{Binding your_usercontrol}" />