Catel 5.12 中的 UserControl<TViewModel> 在哪里
Where is UserControl<TViewModel> in catel 5.12
我在使用 .NET 6.0 和 Catel 5.12.22 的 MVVM/WPF 项目上嵌套了一些用户控件
Google 把我带到了这里,都是旧文章 https://www.codeproject.com/Articles/129920/Catel-Part-3-of-n-The-MVVM-Framework#mapping
我在 Catel 5.12 中找不到用户控件了
目前有很多指向旧文档的死链接,所以请告知我在哪里可以找到它,或者它现在是如何工作的。
杰伦
Catel 中仍然存在 UserControl。
这里是 full documentation.
要在 xaml 中使用它,请使用此代码:
<catel:UserControl x:Class="Catel.Views.MyControl"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:catel="http://schemas.catelproject.com">
<!-- For the sake of simplicity, content is left out -->
</catel:UserControl>
我在使用 .NET 6.0 和 Catel 5.12.22 的 MVVM/WPF 项目上嵌套了一些用户控件 Google 把我带到了这里,都是旧文章 https://www.codeproject.com/Articles/129920/Catel-Part-3-of-n-The-MVVM-Framework#mapping
我在 Catel 5.12 中找不到用户控件了
目前有很多指向旧文档的死链接,所以请告知我在哪里可以找到它,或者它现在是如何工作的。
杰伦
Catel 中仍然存在 UserControl。
这里是 full documentation.
要在 xaml 中使用它,请使用此代码:
<catel:UserControl x:Class="Catel.Views.MyControl"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:catel="http://schemas.catelproject.com">
<!-- For the sake of simplicity, content is left out -->
</catel:UserControl>