日付選択ダイアログ
このサンプルは次のXAMLを使用しています。
<Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
<Button x:Name="btnBack" Content="戻る" HorizontalAlignment="Left" Height="55" Margin="116,63,0,0" VerticalAlignment="Top" Width="162" FontSize="20" Background="#FFFF9A9A" Click="btnBack_Click" FontFamily="Global User Interface"/>
<DatePicker x:Name="date1"
DayFormat="{}{day.integer(2)}"
MonthFormat="{}{month.integer(2)}"
YearFormat="{}{year.full(4)}"
HorizontalAlignment="Left"
Margin="119,152,0,0"
VerticalAlignment="Top"
FontSize="20"/>
<DatePicker x:Name="date2"
DayFormat="{}{day.integer} {dayofweek.full}"
HorizontalAlignment="Left"
Margin="119,218,0,0"
VerticalAlignment="Top"
FontSize="20"/>
<DatePicker x:Name="date3" HorizontalAlignment="Left" Margin="119,289,0,0" VerticalAlignment="Top" FontSize="20"/>
</Grid>
起動後およびCalendarオブジェクトを使用して
月の加算をしています。
現在の日付をSetToNow()で取得および設定しています。
最小の年のプロパティはMinYear
最大の年のプロパティはMaxYear
を使用します。
ヘッダファイルです。
起動後の画面および
日付選択ダイアログのコンボボックスを
開いた画面です。
|
|