我如何禁用复选框取决于 VB .Net 中的日期时间选择器?

How can i disable a checkbox depends on datetimepicker in VB .Net?

在 VB .NET 上有什么方法可以禁用复选框,如果有任何日期时间选择器 selected。

当我使用日期时间选择器说 select 一个日期时,复选框仍然无法禁用。

该复选框在指定日期之前已被选中,如果我选择与

相同的日期

我已经选中的复选框仍然处于启用状态,我该如何禁用它?你能帮我吗?

不确定这是否是您所描述的:

Dim SelectedDate as DateTime = MyDate 'the date in question
If DateTimePicker.value.Date = SelectedDate Then
     'The 2 dates are the same
     MyCheckbox.enabled = true
Else
     'The 2 dates are differents
     MyCheckbox.enabled = false
End If