TimePicker 最小值 Silverlight

发布于 2024-10-19 00:16:36 字数 98 浏览 3 评论 0原文

我不想使用 TimePicker,但为其设置一个最小可能值,用户无法在该值之后选择其他值。

就像 DatePicker 中的 DisplayDateStart 一样。

I wan't to use a TimePicker but setting to it a minimum posible value, that the user can't choose other after that value.

Like the DisplayDateStart in DatePicker.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

分開簡單 2024-10-26 00:16:36

您可以使用silverlight中TimePicker控件的Minimum和Maximum属性来限制下拉菜单中显示的时间。

startTime.Maximum = endTime;
endTime.Minimum = startTime;

这里 startTime 和 endTime 是两个时间选择器

You can use Minimum and Maximum properties of TimePicker Control in silverlight to limit the times displayed in drop down menu.

startTime.Maximum = endTime;
endTime.Minimum = startTime;

here startTime and endTime are two timepickers

温柔女人霸气范 2024-10-26 00:16:36

在日期字段中使用抛出 BlackoutDates

MonthlyDatePicker.DisplayDate = new DateTime(2009, 5, 1);

MonthlyDatePicker.DisplayDateStart = new DateTime(2009, 1, 1);

MonthlyDatePicker.DisplayDateEnd = new DateTime(2009, 1, 31);

或者

  MonthlyDatePicker.BlackoutDates.Add(new DatePickerDateRange(

    new DateTime(2009, 1, 1),

    new DateTime(2009, 1, 4)

    ));

我想我希望它对你有帮助

In datefield using throw the BlackoutDates

MonthlyDatePicker.DisplayDate = new DateTime(2009, 5, 1);

MonthlyDatePicker.DisplayDateStart = new DateTime(2009, 1, 1);

MonthlyDatePicker.DisplayDateEnd = new DateTime(2009, 1, 31);

or

  MonthlyDatePicker.BlackoutDates.Add(new DatePickerDateRange(

    new DateTime(2009, 1, 1),

    new DateTime(2009, 1, 4)

    ));

i think i hope its helps to you

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文