8中更改MessageBoxtButton文本

8中更改MessageBoxtButton文本

本文介绍了C#.net代码“我们如何在Windows Phone 8中更改MessageBoxtButton文本”的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

Deare Sir / Madam,

Deare Sir/Madam,

请给我c#.net代码更改MessageBoxButton文本;

Please give me c#.net code for Change the Text of MessageBoxButton;

我的要求是  ;

My requirement is 

MessageBox.show(MessgeBoxContent,MessageBoxTitle,MessageBoxButton.YesNO,MessageBoxIcon);

MessageBox.show(MessgeBoxContent,MessageBoxTitle,MessageBoxButton.YesNO,MessageBoxIcon);

但在Windows Phone 8中可以使用 

But In Windows Phone 8 is available that 

MessageBox.Show(MessageBoxContent,MessageBoxTitle,MessageBoxButton.OK(或)OkCancel)。

MessageBox.Show(MessageBoxContent,MessageBoxTitle,MessageBoxButton.OK(or)OkCancel).

现在我想要是和否按钮而不是确定和取消按钮。

Now i want Yes and No buttons instead of OK and Cancel Buttons .

谢谢&问候,

SrinivaaS。

SrinivaaS.

推荐答案

您需要自定义 MessageBox 才能解决问题。您可以按照以下链接自定义默认消息框:

You need to customize the MessageBox in order to solve your problem. You can follow below link to customize the default message box :

http://visuallylocated.com/post/2011/11/13/Creating-a-Custom-MessageBox-for-Windows-Phone-Applications。 aspx

问候,


这篇关于C#.net代码“我们如何在Windows Phone 8中更改MessageBoxtButton文本”的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-06 05:17