直接上代码:

1. 界面上添加三个按钮和一个提示框:

<Grid Background="{StaticResource ApplicationPageBackgroundThemeBrush}">
            <StackPanel VerticalAlignment="Center" Margin="34,558,-34,137">
                <StackPanel Orientation="Horizontal">
                    <Button Content="一个按钮的消息框" Click="onOKClick"/>
                    <Button Content="两个按钮的消息框" Click="onYesNoClick"/>
                    <Button Content="三个按钮的消息框" Click="onThirdClick"/>
                </StackPanel>
            <TextBlock x:Name="tbTip" Margin="3,6,0,0" FontSize="24"/>
        </StackPanel>
        </Grid>

2. 相关函数如下:

        private async void onOKClick(object sender, RoutedEventArgs e)
        {
            MessageDialog msg = new MessageDialog("只带一个按钮的消息框。", "提示");
            msg.Commands.Add(new UICommand("确定", new UICommandInvokedHandler(OnUICommand)));
            await msg.ShowAsync();
        }

        private async void onYesNoClick(object sender, RoutedEventArgs e)
        {
            MessageDialog msg = new MessageDialog("带两个按钮的消息框。");
            msg.Commands.Add(new UICommand("", new UICommandInvokedHandler(OnUICommand)));
            msg.Commands.Add(new UICommand("", new UICommandInvokedHandler(OnUICommand)));
            await msg.ShowAsync();
        }

        private async void onThirdClick(object sender, RoutedEventArgs e)
        {
            MessageDialog msg = new MessageDialog("带三个按钮的消息框。");
            msg.Commands.Add(new UICommand("重试", new UICommandInvokedHandler(OnUICommand)));
            msg.Commands.Add(new UICommand("忽略", new UICommandInvokedHandler(OnUICommand)));
            msg.Commands.Add(new UICommand("取消", new UICommandInvokedHandler(OnUICommand)));
            // 默认按钮索引   
            msg.CancelCommandIndex = 2;
            msg.DefaultCommandIndex = 0;
            await msg.ShowAsync();
        }

        async void OnUICommand(IUICommand cmd)
        {
            await Dispatcher.RunAsync(Windows.UI.Core.CoreDispatcherPriority.Normal,() =>
                {
                    this.tbTip.Text = "您点击了 " + cmd.Label + " 按钮。";
                });
        }  

 

相关文章:

  • 2022-02-12
  • 2021-06-17
  • 2021-06-06
  • 2021-08-11
  • 2021-08-17
  • 2021-12-20
猜你喜欢
  • 2021-12-20
  • 2021-12-22
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-06-24
相关资源
相似解决方案