如何在SIlverlight 4 Toolkit中启用TimePicker?

发布于 2024-11-08 19:58:21 字数 121 浏览 6 评论 0原文

根据 Silverlight Toolkit 网站,他们有一个 TimePicker 作为预览版。

我已经安装了该工具包,但看不到它。如何激活像 TimePicker 这样的预览控件?

非常感谢,

According to the Silverlight Toolkit website they have a TimePicker as Preview available.

I have installed the toolkit but don't get to see it. How do I activate the Preview controls like the TimePicker?

Many thanks,

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

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

发布评论

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

评论(2

涙—继续流 2024-11-15 19:58:21

如果您在工具箱中没有看到 TimePicker,请右键单击,选择“选择项目”并手动添加。如果您在那里找不到它,则意味着工具包程序集未正确注册。您可以做的就是在解决方案中添加对它们的引用并直接访问控件。 TimePicker 位于 System.Windows.Controls.Toolkit.dll 的 System.Windows.Controls.Toolkit 命名空间中

希望这会有所帮助:)

If you don't see the TimePicker in your Toolbox, right-click, select "Choose Items" and add it manually. If you don't find it there, this means that the toolkit assemblies aren't registered correctly. What you can do is add a reference to them in your solution and access the controls directly. TimePicker is in System.Windows.Controls.Toolkit namespace in System.Windows.Controls.Toolkit.dll

Hope this helps :)

素衣风尘叹 2024-11-15 19:58:21
  1. 对于 TimePicker 控件,您需要引用以下 dll:

    System.Windows.Controls.Input.Toolkit.dll

  2. 接下来,将以下命名空间添加到XAML:

    xmlns:toolkitInput="clr-namespace:System.Windows.Controls; assembly=System.Window‌ s.Controls.Input.Toolkit"

  3. 现在您可以将 TimePicker 控件用作:

  1. For TimePicker control you need to reference the following dll:

    System.Windows.Controls.Input.Toolkit.dll

  2. Next, add the following namespace to XAML:

    xmlns:toolkitInput="clr-namespace:System.Windows.Controls;assembly=System.Window‌​s.Controls.Input.Toolkit"

  3. Now you can use the TimePicker control as:

    <toolkitInput:TimePicker Value="{Binding Model.ExecutionFrequencyStartTime, Mode=TwoWay}" />

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