Reputation: 1943
I am not very much familiar with windows phone programming.
I need a message box like this
I have figured out how to show simple message box. Mean I can show a title (Alert), Desc (Account number is required), and a OK button.
And now I don't know how to:
Alert
text.Well by using toolkit described in this link I would be able to change the color of Alert text. But I don't to use a whole toolkit just to change the color or that text. But if it can customize my message box as in above picture than I would definitely use it.
Upvotes: 1
Views: 2337
Reputation: 12019
Look at the ContentDialog
class. It will let you put whatever you want into a dialog.
Upvotes: 4