0
我試圖在我的Asp.net頁面中使用模型。但即時通訊不使用MVC。嘗試從customcontrol繼承模型時出現錯誤。錯誤是在沒有MVC應用程序的情況下使用模型
ViewModel:預期的接口名稱。
public partial class CustomControl : UserControl, ViewModel
我試圖在我的Asp.net頁面中使用模型。但即時通訊不使用MVC。嘗試從customcontrol繼承模型時出現錯誤。錯誤是在沒有MVC應用程序的情況下使用模型
ViewModel:預期的接口名稱。
public partial class CustomControl : UserControl, ViewModel
你不能在C#中做多inheritance。 UserControl
和ViewModel
都是類,你只能從一個類繼承。
然而,您可以根據需要實施儘可能多的interfaces。
你是什麼意思。我可以毫無問題地繼承一個類和IDataErrorInfo。 –
是的,因爲IDataErrorInfo是一個接口。 –
感謝您的幫助 –