日時・時刻の書式
このサンプルは次の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="Button" HorizontalAlignment="Left" Margin="116,146,0,0" VerticalAlignment="Top" Height="60" Width="162" FontSize="20" Click="btn_Click"/>
<ListBox x:Name="lst" HorizontalAlignment="Left" Height="443" Margin="322,66,0,0" VerticalAlignment="Top" Width="366" FontSize="20"/>
</Grid>
カレンダーオブジェクト
Windows::Globalization::Calendar^ calendar = ref new Windows::Globalization::Calendar();
現在の時刻
DateTime dt = calendar->GetDateTime();
短い形式の日付・時刻
format.ShortDate->Format(dt) + " " + format.ShortTime->Format(dt)
長い形式の日付・時刻
format.LongDate->Format(dt) + " " + format.LongTime->Format(dt)
ヘッダファイルです。
起動後の画面です。
日時の書式を指定してリストボックスに値を格納しています。
|
|