我正在尝试在winrt应用程序中扩展Page控件。一般的想法是......
MyControl.xaml:
<local:MyPage
x:Class="MyControl"
..
>
...
...
...
</model:MyControl>
MyControl.xaml.cs
public sealed partial class MyControl: MyPage<aModelClass>
{
...
...
}
MyPage.cs:
public Class MyPage<T> : Page
{
}
所以,我的问题是,是否有可能以这种方式使用泛型,,,如果是这样,怎么样? 我发现没有办法在xaml文件中处理泛型,另一方面,我通过谷歌搜索在这个问题上找不到任何东西是不成功的。
此致 / LG