Hi.
I have a timepicker from xceed toolkit in WPF. I want to get the time selected by user through timepicker in a textbox. My code is below which is not getting me what i need.
Thanks
- private void TimePicker_ValueChanged(object sender, RoutedPropertyChangedEventArgs<object> e)
- {
- TimePicker mytimepicker = new TimePicker();
- textBox.Text = mytimepicker.Value.Value.ToString();
- }
Krishna Rajput SinghPosted Oct 2, 2016, 11:25 AM
Midhun TpPosted Oct 2, 2016, 11:13 AM
Please have a look at below thread-
https://www.quora.com/WPF-C-How-can-I-get-data-from-a-datepicker-and-put-it-into-a-textbox
Delpin Susai RajPosted Oct 2, 2016, 10:46 AM
Delpin Susai RajPosted Oct 2, 2016, 10:44 AM