tags:

views:

50

answers:

2

Is there an easy way (or perhaps a 3rd party implementation) to programmatically create a MessageBox with various types of controls on it? Ideally, with some sort of scripting language (ie. XML).

I would prefer not to code this myself from scratch.

A: 

Could you not create a form and customise it as a compromise?

Jamie Keeling
This is my backup method. I would add some sort of XML parsing on top to make it customizable.
+1  A: 

There are two ways to do this. One is called WinForms, the other WPF. The latter even uses an XML language (called XAML). Since you didn’t specify what kinds of controls you need, this is the best answer I can offer to your question because it covers the widest available range of controls.

Timwi
I will be adding things like checkboxes, radio buttons, textboxes, updown controls, and dropdowns.