From bed5f2046e84586fd3ad141c892ef4fba5432245 Mon Sep 17 00:00:00 2001 From: rabbitism Date: Thu, 19 Dec 2024 22:04:47 +0800 Subject: [PATCH] feat: delete useless comment. --- src/Ursa/Controls/DateTimePicker/DateRangePicker.cs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/Ursa/Controls/DateTimePicker/DateRangePicker.cs b/src/Ursa/Controls/DateTimePicker/DateRangePicker.cs index 775d66b..72dffbb 100644 --- a/src/Ursa/Controls/DateTimePicker/DateRangePicker.cs +++ b/src/Ursa/Controls/DateTimePicker/DateRangePicker.cs @@ -467,12 +467,6 @@ public class DateRangePicker : DatePickerBase, IClearControl private bool _isFocused; private void FocusChanged(bool hasFocus) { - // The OnGotFocus & OnLostFocus are asynchronously and cannot - // reliably tell you that have the focus. All they do is let you - // know that the focus changed sometime in the past. To determine - // if you currently have the focus you need to do consult the - // FocusManager. - bool wasFocused = _isFocused; _isFocused = hasFocus;