我尝试使用 Catel 框架创建自动注册,
[ServiceLocatorRegistration(typeof(ISalesOrderListViewModel))]
public class SalesOrderListViewModel : ISalesOrderListViewModel
{
}
但是在编译这段代码时我得到了这个错误。属性参数必须是属性参数类型的常量表达式、typeof 表达式或数组创建表达式
Catel ServiceLocatorRegistration 属性是否需要我不知道的东西?
帮助!!