<StackPanel Height="23" HorizontalAlignment="Right" VerticalAlignment="Bottom" Orientation="Horizontal">
<Button x:Name="btnYes" Content="Cancel" Click="CancelButton_Click" Width="75" Height="23"
/>
<Button x:Name="btnNo" Content="OK" Click="OKButton_Click" Width="75" Height="23"
/>
<Button x:Name="btnCancel" Width="75" Content="Button"/>
</StackPanel>
<TextBlock x:Name="txtMsg" Text="TextBlock" TextWrapping="Wrap" Margin="155,51,8,87"/>
<Image x:Name="imgIcon" HorizontalAlignment="Left" Width="100" Margin="8,66,0,99"/>
Now in the code delete all the default things.Now my requirement was to show four types of information : question,warning,error message and general information. Also I had to show relative icons in the left hand side of the box too. So in the code I added the followings: