C# WP8 Open TimePicker from code
问题 How can I open the TimePicker to select new time but from C#? Not by tapping the control. Is there any simple way to do that? 回答1: I had the same problem once. I solved it by forking the Windows Phone Toolkit and making the OpenPickerPage of the control public. 回答2: (I assume you mean the Windows Phone Toolkit TimePicker control here.) From reading the source code of the DateTimePickerBase, it would seem not. Opening the picker page is done by the OpenPickerPage() method, which is private,