Reputation: 8066
Is it possible to adjust UWP ContentDialog width/height? I tried to adjust ContentDialog.Width, but nothing changed
Your comment welcome
Upvotes: 0
Views: 146
Reputation: 32775
Is it possible to adjust UWP ContentDialog width/height?
ContentDialog
will adjust size base on it's content, if you give the content specific height and width, ContentDialog
size will be changed.
<ContentDialog>
<Grid Height="600" Width="400">
</Grid>
</ContentDialog>
Upvotes: 0