有没有为WPF提供MonthCalendar控件的免费类库?如果不是比Winforms MonthCalendar更好的话,MonthCalendar是否与Winforms相等。
发布于 2010-01-18 09:55:31
我认为在VS2010中包含了一个,但在VS2008中没有一个是确定的。
你可以使用WPF toolkit,它有一个很好的月历控件,应该可以满足你的需要。
发布于 2010-01-18 10:16:22
下载WPF工具包...它包括日历、DatePicker和DataGrid。将工具包dll添加到项目中后,可以按如下方式实现日历:
<Window x:Class="WPF_Playground.Window4"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:toolkit="http://schemas.microsoft.com/wpf/2008/toolkit" >
<Grid>
<toolkit:Calendar/>
</Grid>
</Window>https://stackoverflow.com/questions/2083496
复制相似问题