1

我只想返回日期(而不是时间),但我已经尝试了一切,它总是返回

7/23/2013 12:00:00 AM

但我只想

7/23/2013

这是我的代码,它需要在纯 XAML 中完成。

            <DatePicker SelectedDate="{Binding myDateProperty}" Height="30" HorizontalAlignment="Left" Margin="0,1,5,1" Name="ObsoleteDate" VerticalAlignment="Top" Width="110">
           <DatePicker.Resources>
              <Style TargetType="{x:Type DatePickerTextBox}">
                 <Setter Property="Control.Template">
                    <Setter.Value>
                       <ControlTemplate>
                          <TextBox x:Name="PART_TextBox" Text="{Binding Path=SelectedDate, RelativeSource={RelativeSource AncestorType={x:Type DatePicker}}, StringFormat={}{0:dd/MM/yyyy}}"/>
                       </ControlTemplate>
                    </Setter.Value>
                 </Setter>
              </Style>
           </DatePicker.Resources>
        </DatePicker>
4

3 回答 3

1

使用StringFormat=d代替StringFormat={}{0:dd/MM/yyyy}}

于 2013-07-02T08:30:58.133 回答
1
<TextBox Background="#fff" x:Name="PART_TextBox" Text="{Binding Path=SelectedDate, 
RelativeSource={RelativeSource AncestorType={x:Type DatePicker}}, StringFormat=d}" />

为我工作

于 2015-12-10T06:12:56.457 回答
0

我使用了下面的代码,它对我有用。(ObsoleteDate是你的名字DatePicker

ObsoleteDate.SelectedDate.Value.Date.ToShortDateString()
于 2015-08-20T09:18:24.920 回答