以编程方式显示 DatePicker 中的弹出窗口

发布于 2024-12-06 03:49:54 字数 144 浏览 0 评论 0原文

我正在 Mango 上使用 Silverlight 工具包中的 DatePicker

我想以编程方式显示日期选择器完整模式显示,但目前我看不到任何 API 挂钩来执行此操作。

这可能吗?或者我是否必须通过(智能地)编写新控件来自己实现这一点?

I'm using the DatePicker from the Silverlight Toolkit on Mango

I want to programmatically display the date picker full mode display, but I can't see any API hook to do that at the moment.

Is this possible? or do I have to implement this myself by (intelligently) writing a new control?

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

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

发布评论

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

评论(2

浅紫色的梦幻 2024-12-13 03:49:54

恐怕要建立自己的。

不过,请注意用户对自动打开它的期望。 ;)

Build your own I'm afraid.

Be careful about the user expectations around opening it automatically though. ;)

2024-12-13 03:49:54

可悲的是,Matt 是对的 - 没有公共或受保护的 API 可以入侵,并且安全性阻止了反射的使用 - 所以我已经+1了他的答案......完整的答案是:

  • 从 Silverlight.codeplex.com 获取文件
  • 使用整个项目或仅使用 DatePicker.cs、DateTimePickerBase.cs 和 Generic.xaml 中的 DatePicker 样式模板创建您自己的库
  • 在 DateTimePickerBase 中添加:

    公共事件EventHandler弹出窗口按日期选择关闭;
    
  • if(_dateTimePickerPage.Value.HasValue) 块内的 PopupClosedByDateSelection 内的 ClosePickerPage() 中,添加:

     if (PopupClosedByDateSelection != null)
                    PopupClosedByDateSelection(this, EventArgs.Empty);
    

这似乎适用于“后退”按钮情况以及“取消”按钮和好的情况。

Sadly Matt was right - there's no public or protected API to hack into and security prevents the use of Reflection - so I've +1'd his answer... and a full answer is:

  • take the files from Silverlight.codeplex.com
  • either use the whole project or create your own library with just DatePicker.cs, DateTimePickerBase.cs and the DatePicker Style template from Generic.xaml
  • in your DateTimePickerBase, add:

    public event EventHandler<EventArgs> PopupClosedByDateSelection;
    
  • in ClosePickerPage() inside PopupClosedByDateSelection inside the if(_dateTimePickerPage.Value.HasValue) block, add:

                if (PopupClosedByDateSelection != null)
                    PopupClosedByDateSelection(this, EventArgs.Empty);
    

This seems to work for the Back button case as well as for the cancel and OK cases.

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