We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DateTimePicker.cs has the following code.
DateTimePicker.cs
private void ClearDate() { } public virtual void SetDate(DateTime? dateTime, DateFormat dateFormat) { if (dateTime == null) { ClearDate(); return; } keyboard.Send(dateFormat.DisplayValue(dateTime.Value, 0).ToString(), actionListener); keyboard.PressSpecialKey(KeyboardInput.SpecialKeys.RIGHT, actionListener); keyboard.Send(dateFormat.DisplayValue(dateTime.Value, 1).ToString(), actionListener); keyboard.PressSpecialKey(KeyboardInput.SpecialKeys.RIGHT, actionListener); keyboard.Send(dateFormat.DisplayValue(dateTime.Value, 2).ToString(), actionListener); keyboard.PressSpecialKey(KeyboardInput.SpecialKeys.RIGHT, actionListener); }
Here ClearDate() is empty. This looks incorrect to me. ClearDate() should be implemented right?
ClearDate()
The text was updated successfully, but these errors were encountered:
Yep it should be. Nice find
Sorry, something went wrong.
Pull request #194.
No branches or pull requests
DateTimePicker.cs
has the following code.Here
ClearDate()
is empty. This looks incorrect to me.ClearDate()
should be implemented right?The text was updated successfully, but these errors were encountered: