我正在尝试将我在类中创建的userControl绑定为属性。我无法弄清楚如何在XAML中显示它。
示例:
public class MainWindowViewModel : ViewModelBase
{
public UserControl myUserControl { get; set; };
public MainWindowViewModel()
: base()
{
_myUserControl = new WelcomePageView());
}
}
在XAML中:
<Window c:Class=".."
.
.
.
/>
<???? {Binding myUserControl}>
</Window>
答案 0 :(得分:3)
尝试
<ContentControl Content="{Binding your_usercontrol}" />