Hi,
VS2017 | UWP
I wanted to display icons in MessageDialog(), but it seems the option is not available. So i looked at ContentDialog. But The problem with ContentDialog is that its size is too small and does not auto-resize based on contents. Also
it does not Wrap Contents. Its proving very difficult to do simple thing. I am sure others too must be facing similar issue, What solution do you suggest ?
below is my XAML code and output image.

Title="TITLE"
PrimaryButtonText="OK" FullSizeDesired="False"
PrimaryButtonClick="ContentDialog_PrimaryButtonClick"
>
<Grid Height="Auto" >
<StackPanel Orientation="Horizontal" Height="Auto" >
<TextBlock x:Name="Image" FontFamily="Wingdings" FontSize="40" Foreground="Green" Text="J" Margin="5"/>
<StackPanel Orientation="Vertical" Height="Auto" >
<TextBlock x:Name="MessageText1" Text="." TextWrapping="WrapWholeWords" Margin="5,0,0,0" HorizontalAlignment="Left" Height="Auto" />
<TextBlock x:Name="MessageText2" Text="." TextWrapping="WrapWholeWords" Margin="5,0,0,0" HorizontalAlignment="Left" Height="Auto"
/>
</StackPanel>
</StackPanel>
</Grid>
Please Note: TextWrapping="Wrap" is also tried, but output remains the same. it does not wrap contents. The file path is not fully displayed.