xamarin + prism で確認ダイアログを表示させようとしています。
色々なサイトを参考にして、PageDialogServiceを利用することで実装することが出来ました。
AndroidとUWPで動作確認をしているのですが
Androidの場合は確認ダイアログが出ましたが、UWPの場合は反応しませんでした。
原因分かる方いらっしゃいますでしょうか?
MainPage.xaml
XAML
1<?xml version="1.0" encoding="utf-8" ?> 2<ContentPage xmlns="http://xamarin.com/schemas/2014/forms" 3 xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" 4 x:Class="BlankApp1.Views.MainPage"> 5 6 <StackLayout HorizontalOptions="Center" VerticalOptions="Center"> 7 <Button Text="Message" Command="{Binding MessageCommand}" /> 8 </StackLayout> 9 10</ContentPage>
MainPageViewModel.cs
C#
1using BlankApp1.Conditions; 2using BlankApp1.Objects; 3using BlankApp1.Views; 4using Prism.Commands; 5using Prism.Mvvm; 6using Prism.Navigation; 7using Prism.Services; 8using System; 9using System.Collections.Generic; 10using System.Linq; 11using System.Runtime.CompilerServices; 12using System.Text; 13using System.Xml.Serialization; 14 15namespace BlankApp1.ViewModels 16{ 17 public class MainPageViewModel : ViewModelBase 18 { 19 private IPageDialogService _pageDialogService; 20 private IDependencyService _dependencyService; 21 22 public MainPageViewModel(INavigationService navigationService, 23 IDependencyService dependencyService, 24 IPageDialogService pageDialogService) 25 : base(navigationService) 26 { 27 _pageDialogService = pageDialogService; 28 _dependencyService = dependencyService; 29 30 MessageCommand = new DelegateCommand(MessageShow); 31 } 32 33 private async void MessageShow() 34 { 35 var result = await _pageDialogService.DisplayAlertAsync("たいとる", "めっせーじ", "OK", "キャンセル"); 36 if (result) 37 { 38 //OKの時の処理 39 } 40 else 41 { 42 //キャンセルの時の処理 43 } 44 45 Title = _dependencyService.Get<IDevice>().GetDeviceName(); 46 } 47 } 48} 49
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/10/23 16:08
2020/10/23 16:41
2020/10/23 17:11