uwp xaml headerのの改行 リンクを取得 Facebook × Pinterest メール 他のアプリ 4月 19, 2018 2018/04/19 改行が鍵から始まる Header=" 呼称 時計 
鍵/煙草/ペン/硬貨" 続きを読む
uwp textboxのlScrollBar リンクを取得 Facebook × Pinterest メール 他のアプリ 4月 19, 2018 2018/04/19 xaml ScrollViewer.VerticalScrollBarVisibility = "Auto" 続きを読む
uwp c# 覚え書き ContentDialog リンクを取得 Facebook × Pinterest メール 他のアプリ 4月 18, 2018 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 アプリの終了 覚え書き リンクを取得 Facebook × Pinterest メール 他のアプリ 4月 17, 2018 2018/04/17 uwp アプリの終了 Environment.Exit(0); 続きを読む
uwp ListView リンクを取得 Facebook × Pinterest メール 他のアプリ 4月 12, 2018 ListView 項目を複数選択する。 リストビュー.SelectionMode = ListViewSelectionMode.Multiple; ListView 項目を1つ選択する。 リストビュー.SelectionMode = ListViewSelectionMode.Single; これに数時間もかかった。 visualstudio2017 続きを読む