如何停止自定义Messagebox关闭Windows Phone 8?

时间:2015-02-14 19:37:27

标签: c# wpf windows-phone-7 windows-phone-8 windows-phone-8.1

我有两个单选按钮(rb1和rb)和自定义消息框中的文本框,如果未选择任何选项,我想停止自定义消息框关闭。

box.Dismissed += (s, e1) =>
        {
            if (e1.Result == CustomMessageBoxResult.LeftButton)
            {
                if(rb.IsChecked.Value)
                {


                }
                else if(rb1.IsChecked.Value)
                {

                }
                else
                {
                    MessageBox.Show("Please Select the Option");
                   // I WANT TO STOP CLOSING CUSTOM BOX HERE IF ANY OPTION IS NOT SELECTED
                }

            }
        };

1 个答案:

答案 0 :(得分:1)

我得到了答案感谢@android joker ..

 box.Dismissing += (s, e1) =>
            {
                e1.Cancel = true;
            };