File tree Expand file tree Collapse file tree 1 file changed +0
-4
lines changed
src/WPFDevelopers.Shared/Controls/TimePicker Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -186,20 +186,16 @@ public void SetTime()
186
186
_listBoxHour . SelectionChanged -= ListBoxHour_SelectionChanged ;
187
187
var hour = _hour . ToString ( "D2" ) ;
188
188
_listBoxHour . SelectedItem = hour ;
189
- //(_listBoxHour as TimeSelectorListBox).Positioning();
190
189
_listBoxHour . SelectionChanged += ListBoxHour_SelectionChanged ;
191
190
192
-
193
191
_listBoxMinute . SelectionChanged -= ListBoxMinute_SelectionChanged ;
194
192
var minute = _minute . ToString ( "D2" ) ;
195
193
_listBoxMinute . SelectedItem = minute ;
196
- //(_listBoxMinute as TimeSelectorListBox).Positioning();
197
194
_listBoxMinute . SelectionChanged += ListBoxMinute_SelectionChanged ;
198
195
199
196
_listBoxSecond . SelectionChanged -= ListBoxSecond_SelectionChanged ;
200
197
var second = _second . ToString ( "D2" ) ;
201
198
_listBoxSecond . SelectedItem = second ;
202
- //(_listBoxSecond as TimeSelectorListBox).Positioning();
203
199
_listBoxSecond . SelectionChanged += ListBoxSecond_SelectionChanged ;
204
200
205
201
SetSelectedTime ( ) ;
You can’t perform that action at this time.
0 commit comments