日付の書式
このサンプルは次の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"/>
<Button x:Name="btn" Content="日付書式" HorizontalAlignment="Left" Margin="116,151,0,0" VerticalAlignment="Top" Width="162" Height="60" FontSize="20" Click="btn_Click"/>
<ListBox x:Name="lst" HorizontalAlignment="Left" Height="485" Margin="328,66,0,0" VerticalAlignment="Top" Width="719" FontSize="20"/>
</Grid>
カレンダーオブジェクト
Windows::Globalization::Calendar^ calendar = ref new Windows::Globalization::Calendar();
現在の日時を初期式を指定した結果を取得できます。
書式を使うためにDateTimeFormatterクラスでオブジェクトを生成します。
Formatメソッドの引数に書式文字列を設定することにより、
指定した書式の日付の結果を得ることができます。
書式 | 内容 | longdate | 長い形式の日付書式 | shortdate | 短い形式の日付書式 | longtime | 長い形式の時間書式 | shorttime | 短い形式の時間書式 | dayofweek day month year | 年月日・お指の書式 | dayofweek day month | 月日・曜日の書式 | day month year | 年月日の書式 | day month year | 月日の書式 | hour minute second | 時分秒の書式 | hour minute | 時分の書式 |
ヘッダファイルです。
起動後の画面です。
日付および時刻の書式をサンプルとして表示させています。
|
|