我正在调查 Windows 8 应用商店应用程序开发,但无法找到以下成员
类型.IsClass
System.ComponentModel.DesignerProperties.IsInDesignTool
Visual Studio 声称它们不存在,但 MSDN 建议它们应该存在。
我显然错过了一些愚蠢的事情:谁能指出我正确的方向?
问候
约翰。
我正在调查 Windows 8 应用商店应用程序开发,但无法找到以下成员
类型.IsClass
System.ComponentModel.DesignerProperties.IsInDesignTool
Visual Studio 声称它们不存在,但 MSDN 建议它们应该存在。
我显然错过了一些愚蠢的事情:谁能指出我正确的方向?
问候
约翰。
该IsClass
物业已移至TypeInfo
班级。基本上你需要更换;
bool result = type.IsClass;
和;
bool result = type.GetTypeInfo().IsClass;
GetTypeInfo()
是来自 System.Reflection 命名空间的扩展方法,在 System.Type 上不明显可见,除非您已经是using System.Reflection
.
该IsInDesignTool
物业也已搬到另一个地方并更名;
bool result = Windows.ApplicationModel.DesignMode.DesignModeEnabled;