我有這些類泛型類型XAML 2009
public class MyClass : MyGenericClass<String, Int32>
{
}
// XAML Class
public class MyGenericClass<T, U> : MyGenericClassBase<T, U>
where U : class
where T : class
{
public MyGenericClass()
{
InitializeComponent();
}
}
public class MyGenericClassBase<T, U>
where U : class, new()
where T : class, new()
{
T _t;
U _u;
public MyGenericClassBase()
{
}
}
我想的確在XAML類「MyGenericClass」豆蔻問題,但我不能!
我試試吧:
<MyGenericClassBase x:Class="MyGenericClass"
x:TypeArguments="class,class"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" >
...
我怎麼能傳遞參數類型,在我的 「MyGenericClass」 和繼承類 「MyGenericClassBase」
非常感謝
尼科
請使用評論系統收到寫評論的答案下。答案只是保留,答案。 –