Как получить имя свойства содержимого в UWP?

#c# #.net #reflection #uwp #c# #.net #отражение #uwp Вопрос: Я пробовал с public string GetContentProperty(Type type) { var contentPropertyAttribute = type.GetTypeInfo().GetCustomAttribute<ContentPropertyAttribute>(); return contentPropertyAttribute?.Name; } Но оно всегда возвращает null. В…

Продолжить чтениеКак получить имя свойства содержимого в UWP?