在使用Template10的UWP-Windows 10 C#/ XAML应用程序中,我目前正试图让我的页面/视图继承自继承自Windows.UI.Xaml.Controls.Page
的基类。
这已经正常工作,但是当我尝试使基类通用,并在子类和XAML中包含类型参数时,它不起作用:
namespace App.Views
{
public abstract class InfoListViewBase<M> : Page where M : InfoListViewModelBase
{
public InfoListViewBase() { }
}
public sealed partial class ModelPage : InfoListViewBase<Model>
{
public Model()
{
InitializeComponent();
NavigationCacheMode = NavigationCacheMode.Disabled;
}
}
}
<local:InfoListViewBase
x:Class="App.Views.ModelPage"
x:TypeArguments="l:Model"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:Behaviors="using:Template10.Behaviors"
xmlns:Core="using:Microsoft.Xaml.Interactions.Core"
xmlns:Interactivity="using:Microsoft.Xaml.Interactivity"
xmlns:controls="using:Template10.Controls"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="using:App.Views"
xmlns:l="using:Library"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="d">
</local:InfoListViewBase>
我收到的错误是:
The name "InfoListViewBase`1" does not exist in the namespace "using:App.Views".
每次将行x:TypeArguments="l:Model"
添加到XAML时,都会显示错误。
视觉工作室中的多次重建,清理等都没有解决问题。
在XAML中实现泛型时,我有什么问题吗?
答案 0 :(得分:3)
不幸的是,UWP应用程序仍然不支持XAML中的泛型参数。您目前无法在XAML中使用x:TypeArguments
。但您可以参考this thread尝试解决方法。
如果您仍需要此功能,还可以将此功能请求提交至UserVoice。