How can I create a custom renderer for DatePicker for UWP?
问题 I'm trying to create a custom DatePicker renderer for UWP but I'm getting a compile error. Trying to get a CalenderDatePicker instead of the normal DataPicker. I am getting the same error whether I try one or the other. My code is: CustomControl.cs namespace myNameSpace.CustomControl { public class CustomDatePicker : DatePicker { } } And my CustomDatePickerRenderer.cs in the UWP folder [assembly: ExportRenderer(typeof(CustomDatePicker), typeof(CustomDatePickerRenderer))] namespace myNameSpace