Wpf Toolkit中的TimePicker

时间:2013-03-16 10:05:25

标签: wpf xaml wpftoolkit timepicker

我想在WPF中使用timepicker控件。我在这里找到了一个实现。(http://wpftoolkit.codeplex.com/wikipage?title=TimePicker&referringTitle=Home)。我安装了它。但无法理解如何使用它。我不知道我需要在XAML文件中写什么。

1 个答案:

答案 0 :(得分:10)

链接本身here中提供了说明。按照以下步骤操作即可 -

  1. 首先从here安装二进制文件。

  2. 提取dll Xceed.Wpf.Toolkit并在项目中添加对此dll的引用。

  3. XAML中添加名称空间 - xmlns:xctk="http://schemas.xceed.com/wpf/xaml/toolkit"

  4. 4.然后在你的xaml中添加TimePickerControl的实例 -

    <Grid>
       <xctk:TimePicker Height="30" Width="100" Value="{Binding CurrentDateTime}"/>
    </Grid>
    

    在ViewModel中 -

    private DateTime currentDateTime = DateTime.Now;
    public DateTime CurrentDateTime
    {
       get
       {
          return currentDateTime ;
       }
       set
       {
          currentDateTime = value;
       }
    }