我想要WPF中的时间选择器控件。我在这里找到一个实现。(http://wpftoolkit.codeplex.com/wikipage?title=TimePicker&referringTitle=Home)。我已经安装了。但是不知道如何使用它。我不知道我需要在XAML文件中写什么。

最佳答案

链接本身here中提供了说明。请按照以下步骤操作,您一切顺利-


首先从here安装二进制文件。
提取dll Xceed.Wpf.Toolkit,并在项目中添加对此dll的引用。
XAML中添加名称空间-xmlns:xctk="http://schemas.xceed.com/wpf/xaml/toolkit"


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;
   }
}

09-13 04:31