日期控件

WPF包含两个日期控件,Calendar和DatePicker,这两个控件都被设计为允许用户选择日期。

<Window x:Class="WpfApplication1.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="MainWindow" Height="350" Width="525">
    <Grid>
        <DatePicker></DatePicker>
    </Grid>
</Window>