投稿

4月, 2018の投稿を表示しています

uwp xaml headerのの改行

2018/04/19 改行が鍵から始まる  Header="  呼称   時計  
鍵/煙草/ペン/硬貨"

uwp textboxのlScrollBar

2018/04/19 xaml ScrollViewer.VerticalScrollBarVisibility = "Auto"

uwp c# 覚え書き ContentDialog

2018/04/18  var msg = new ContentDialog();             msg.Content = "処理を継続します";             msg.Title = "継続確認";             msg.PrimaryButtonText = "継続";             msg.SecondaryButtonText = "中止";             var res = await msg.ShowAsync();             if (res == ContentDialogResult.Primary)             {                 //継続処理             }

uwp アプリの終了 覚え書き

2018/04/17 uwp アプリの終了 Environment.Exit(0);

uwp   ListView

 ListView 項目を複数選択する。  リストビュー.SelectionMode = ListViewSelectionMode.Multiple;  ListView 項目を1つ選択する。 リストビュー.SelectionMode = ListViewSelectionMode.Single; これに数時間もかかった。 visualstudio2017