我想在WPF中使用timepicker控件。我在这里找到了一个实现。(http://wpftoolkit.codeplex.com/wikipage?title=TimePicker&referringTitle=Home)。我安装了它。但无法理解如何使用它。我不知道我需要在XAML文件中写什么。
答案 0 :(得分:10)
链接本身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;
}
}