gpt4 book ai didi

C# WPF,日期选择器验证

转载 作者:行者123 更新时间:2023-12-03 09:21:18 26 4
gpt4 key购买 nike

我正在尝试使用验证规则验证 XAML 中的日期。

<StackPanel Grid.Column="0" Grid.Row="1" Orientation="Horizontal">
<DatePicker Height="25" x:Name="DatePickerDate">
<DatePicker.SelectedDate>
<Binding Path="ViewModel.Date" NotifyOnValidationError="True">
<Binding.ValidationRules>
<validationRules:DatePickerValidationRule/>
</Binding.ValidationRules>
</Binding>
</DatePicker.SelectedDate>
</DatePicker>
</StackPanel>

和验证规则

public class DatePickerValidationRule : ValidationRule
{
public override ValidationResult Validate(object value, System.Globalization.CultureInfo cultureInfo)
{
var date = (DateTime) value;

return date.Date.CompareTo(DateTime.Now) < 0
? new ValidationResult(false, "the date can not be before today")
: new ValidationResult(true, null);
}
}

但是当我将断点放入验证规则时,即使我更改日期,它也永远不会去那里。

由于我是 WPF 的新手,如果这里有任何建议或指导,我将不胜感激。

谢谢。

最佳答案

遇到了同样的问题,我想我应该分享我的解决方案:

我有一个静态的最小日期限制,因此只需指定 BlackoutDates

<DatePicker SelectedDate="{Binding StartDate}" Name="DepartureDate">
<DatePicker.BlackoutDates>
<CalendarDateRange Start="1/1/0001" End="12/31/1969"/>
</DatePicker.BlackoutDates>
</DatePicker>

但如果您需要更动态的解决方案,您可以考虑 this solution .

关于C# WPF,日期选择器验证,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30075720/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com