Hi,
I want to add a lable,textbox and buttons inside XamWebDialogWindow programatically.
How can I add more than one control to XamWebDialogWindow's Content Property Programtically?
Thanks
You would use a panel, such as as a Grid, StackPanel, Canvas, etc.
<ig:XamWebDialogWindow><Grid> <Grid.RowDefinitions> <RowDefinition />
<RowDefinition />
</Grid.RowDefinition><Button /><TextBox Grid.Row="1"/>
</Grid> </ig:XamWebDialogWindow>
-SteveZ