Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>can you please change this</p> <pre><code>TargetType="{x:Type TextBlock}" </code></pre> <p>to</p> <pre><code>TargetType="TextBlock" </code></pre> <p>and also you need to remove</p> <pre><code>&lt;Setter Property="Background" Value="#FF3B596E"/&gt; &lt;Setter Property="Background" Value="#FF3B5940"/&gt; </code></pre> <p>and change</p> <pre><code>&lt;Setter Property="FontSize" Value="24px"/&gt; &lt;Setter Property="FontSize" Value="14px"/&gt; &lt;Setter Property="FontSize" Value="14px"/&gt; </code></pre> <p>to</p> <pre><code>&lt;Setter Property="FontSize" Value="24"/&gt; &lt;Setter Property="FontSize" Value="14"/&gt; &lt;Setter Property="FontSize" Value="14"/&gt; </code></pre> <p>The complete xaml script is shown as below,</p> <pre><code>&lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;Grid xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Loaded="OnLoaded"&gt; &lt;Grid.ColumnDefinitions&gt; &lt;ColumnDefinition Width="*"/&gt; &lt;ColumnDefinition Width="600"/&gt; &lt;ColumnDefinition Width="*"/&gt; &lt;/Grid.ColumnDefinitions&gt; &lt;Grid.Background&gt; &lt;LinearGradientBrush&gt; &lt;GradientStop Color="Red"/&gt; &lt;GradientStop Color="#FF3B596E" Offset="1"/&gt; &lt;/LinearGradientBrush&gt; &lt;/Grid.Background&gt; &lt;Grid Grid.Column="1" Grid.Row="1"&gt; &lt;Grid.Resources&gt; &lt;Style x:Key="TitleText" TargetType="TextBlock"&gt; &lt;Setter Property="FontFamily" Value="Segoe Black"/&gt; &lt;Setter Property="FontSize" Value="24"/&gt; &lt;Setter Property="Foreground" Value="MidnightBlue"/&gt; &lt;Setter Property="TextAlignment" Value="Center"/&gt; &lt;Setter Property="VerticalAlignment" Value="Center"/&gt; &lt;/Style&gt; &lt;Style x:Key="LabelText" TargetType="TextBlock"&gt; &lt;Setter Property="FontFamily" Value="Segoe Black"/&gt; &lt;Setter Property="FontSize" Value="14"/&gt; &lt;Setter Property="Foreground" Value="#FFB3B4C1"/&gt; &lt;Setter Property="TextAlignment" Value="Center"/&gt; &lt;Setter Property="VerticalAlignment" Value="Center"/&gt; &lt;/Style&gt; &lt;Style x:Key="ValueText" TargetType="TextBlock"&gt; &lt;Setter Property="FontFamily" Value="Segoe Black"/&gt; &lt;Setter Property="FontSize" Value="14"/&gt; &lt;Setter Property="Foreground" Value="Ivory"/&gt; &lt;Setter Property="TextAlignment" Value="Center"/&gt; &lt;Setter Property="VerticalAlignment" Value="Center"/&gt; &lt;/Style&gt; &lt;/Grid.Resources&gt; &lt;Grid.Background&gt; &lt;LinearGradientBrush&gt; &lt;GradientStop Color="#93C5E8"/&gt; &lt;GradientStop Color="#3B596E" Offset="1"/&gt; &lt;/LinearGradientBrush&gt; &lt;/Grid.Background&gt; &lt;Grid.ColumnDefinitions&gt; &lt;ColumnDefinition Width="3*"/&gt; &lt;ColumnDefinition Width="1*"/&gt; &lt;ColumnDefinition Width="3*"/&gt; &lt;ColumnDefinition Width="1*"/&gt; &lt;ColumnDefinition Width="3*"/&gt; &lt;ColumnDefinition Width="1*"/&gt; &lt;/Grid.ColumnDefinitions&gt; &lt;Grid.RowDefinitions&gt; &lt;RowDefinition Height="70"/&gt; &lt;RowDefinition/&gt; &lt;RowDefinition/&gt; &lt;RowDefinition/&gt; &lt;RowDefinition/&gt; &lt;RowDefinition/&gt; &lt;RowDefinition/&gt; &lt;RowDefinition/&gt; &lt;RowDefinition/&gt; &lt;RowDefinition/&gt; &lt;RowDefinition/&gt; &lt;RowDefinition/&gt; &lt;RowDefinition/&gt; &lt;RowDefinition/&gt; &lt;RowDefinition/&gt; &lt;RowDefinition/&gt; &lt;RowDefinition/&gt; &lt;RowDefinition/&gt; &lt;RowDefinition/&gt; &lt;RowDefinition/&gt; &lt;RowDefinition/&gt; &lt;RowDefinition/&gt; &lt;RowDefinition/&gt; &lt;RowDefinition/&gt; &lt;RowDefinition/&gt; &lt;/Grid.RowDefinitions&gt; &lt;TextBlock Grid.ColumnSpan="6" Style="{StaticResource TitleText}"&gt; Vowel Details &lt;/TextBlock&gt; &lt;TextBlock Grid.Column="0" Grid.Row="1" Style="{StaticResource LabelText}"&gt;Strings with frequency &amp;gt; 50&lt;/TextBlock&gt; &lt;Button Height="23" HorizontalAlignment="Stretch" VerticalAlignment="Center" Content="Sort" Grid.Column="0" Grid.Row="4" Name="btnSort50"/&gt; &lt;TextBlock Grid.Column="1" Grid.Row="1" Style="{StaticResource ValueText}"&gt;128&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="2" Grid.Row="1" Style="{StaticResource LabelText}"&gt;Starting with a Vowel&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="3" Grid.Row="1" Style="{StaticResource ValueText}"&gt;51&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="2" Grid.Row="2" Style="{StaticResource LabelText}"&gt;a&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="3" Grid.Row="2" Style="{StaticResource ValueText}"&gt;12&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="2" Grid.Row="3" Style="{StaticResource LabelText}"&gt;e&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="3" Grid.Row="3" Style="{StaticResource ValueText}"&gt;22&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="2" Grid.Row="4" Style="{StaticResource LabelText}"&gt;i&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="3" Grid.Row="4" Style="{StaticResource ValueText}"&gt;7&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="2" Grid.Row="5" Style="{StaticResource LabelText}"&gt;o&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="3" Grid.Row="5" Style="{StaticResource ValueText}"&gt;7&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="2" Grid.Row="6" Style="{StaticResource LabelText}"&gt;u&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="3" Grid.Row="6" Style="{StaticResource ValueText}"&gt;3&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="4" Grid.Row="1" Style="{StaticResource LabelText}"&gt;Ending with a Vowel&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="5" Grid.Row="1" Style="{StaticResource ValueText}"&gt;52&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="4" Grid.Row="2" Style="{StaticResource LabelText}"&gt;a&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="5" Grid.Row="2" Style="{StaticResource ValueText}"&gt;7&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="4" Grid.Row="3" Style="{StaticResource LabelText}"&gt;e&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="5" Grid.Row="3" Style="{StaticResource ValueText}"&gt;27&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="4" Grid.Row="4" Style="{StaticResource LabelText}"&gt;i&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="5" Grid.Row="4" Style="{StaticResource ValueText}"&gt;5&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="4" Grid.Row="5" Style="{StaticResource LabelText}"&gt;o&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="5" Grid.Row="5" Style="{StaticResource ValueText}"&gt;9&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="4" Grid.Row="6" Style="{StaticResource LabelText}"&gt;u&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="5" Grid.Row="6" Style="{StaticResource ValueText}"&gt;4&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="0" Grid.Row="7" Style="{StaticResource LabelText}"&gt;Strings with frequency &amp;gt; 40&lt;/TextBlock&gt; &lt;Button Height="23" HorizontalAlignment="Stretch" VerticalAlignment="Center" Content="Sort" Grid.Column="0" Grid.Row="10" Name="btnSort40"/&gt; &lt;TextBlock Grid.Column="1" Grid.Row="7" Style="{StaticResource ValueText}"&gt;182&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="2" Grid.Row="7" Style="{StaticResource LabelText}"&gt;Starting with a Vowel&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="3" Grid.Row="7" Style="{StaticResource ValueText}"&gt;78&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="2" Grid.Row="8" Style="{StaticResource LabelText}"&gt;a&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="3" Grid.Row="8" Style="{StaticResource ValueText}"&gt;15&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="2" Grid.Row="9" Style="{StaticResource LabelText}"&gt;e&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="3" Grid.Row="9" Style="{StaticResource ValueText}"&gt;36&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="2" Grid.Row="10" Style="{StaticResource LabelText}"&gt;i&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="3" Grid.Row="10" Style="{StaticResource ValueText}"&gt;13&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="2" Grid.Row="11" Style="{StaticResource LabelText}"&gt;o&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="3" Grid.Row="11" Style="{StaticResource ValueText}"&gt;10&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="2" Grid.Row="12" Style="{StaticResource LabelText}"&gt;u&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="3" Grid.Row="12" Style="{StaticResource ValueText}"&gt;4&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="4" Grid.Row="7" Style="{StaticResource LabelText}"&gt;Ending with a Vowel&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="5" Grid.Row="7" Style="{StaticResource ValueText}"&gt;75&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="4" Grid.Row="8" Style="{StaticResource LabelText}"&gt;a&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="5" Grid.Row="8" Style="{StaticResource ValueText}"&gt;14&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="4" Grid.Row="9" Style="{StaticResource LabelText}"&gt;e&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="5" Grid.Row="9" Style="{StaticResource ValueText}"&gt;38&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="4" Grid.Row="10" Style="{StaticResource LabelText}"&gt;i&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="5" Grid.Row="10" Style="{StaticResource ValueText}"&gt;8&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="4" Grid.Row="11" Style="{StaticResource LabelText}"&gt;o&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="5" Grid.Row="11" Style="{StaticResource ValueText}"&gt;10&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="4" Grid.Row="12" Style="{StaticResource LabelText}"&gt;u&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="5" Grid.Row="12" Style="{StaticResource ValueText}"&gt;5&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="0" Grid.Row="13" Style="{StaticResource LabelText}"&gt;Strings with frequency &amp;gt; 30&lt;/TextBlock&gt; &lt;Button Height="23" HorizontalAlignment="Stretch" VerticalAlignment="Center" Content="Sort" Grid.Column="0" Grid.Row="16" Name="btnSort30"/&gt; &lt;TextBlock Grid.Column="1" Grid.Row="13" Style="{StaticResource ValueText}"&gt;247&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="2" Grid.Row="13" Style="{StaticResource LabelText}"&gt;Starting with a Vowel&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="3" Grid.Row="13" Style="{StaticResource ValueText}"&gt;100&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="2" Grid.Row="14" Style="{StaticResource LabelText}"&gt;a&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="3" Grid.Row="14" Style="{StaticResource ValueText}"&gt;18&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="2" Grid.Row="15" Style="{StaticResource LabelText}"&gt;e&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="3" Grid.Row="15" Style="{StaticResource ValueText}"&gt;48&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="2" Grid.Row="16" Style="{StaticResource LabelText}"&gt;i&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="3" Grid.Row="16" Style="{StaticResource ValueText}"&gt;19&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="2" Grid.Row="17" Style="{StaticResource LabelText}"&gt;o&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="3" Grid.Row="17" Style="{StaticResource ValueText}"&gt;11&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="2" Grid.Row="18" Style="{StaticResource LabelText}"&gt;u&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="3" Grid.Row="18" Style="{StaticResource ValueText}"&gt;4&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="4" Grid.Row="13" Style="{StaticResource LabelText}"&gt;Ending with a Vowel&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="5" Grid.Row="13" Style="{StaticResource ValueText}"&gt;103&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="4" Grid.Row="14" Style="{StaticResource LabelText}"&gt;a&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="5" Grid.Row="14" Style="{StaticResource ValueText}"&gt;19&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="4" Grid.Row="15" Style="{StaticResource LabelText}"&gt;e&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="5" Grid.Row="15" Style="{StaticResource ValueText}"&gt;55&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="4" Grid.Row="16" Style="{StaticResource LabelText}"&gt;i&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="5" Grid.Row="16" Style="{StaticResource ValueText}"&gt;10&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="4" Grid.Row="17" Style="{StaticResource LabelText}"&gt;o&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="5" Grid.Row="17" Style="{StaticResource ValueText}"&gt;13&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="4" Grid.Row="18" Style="{StaticResource LabelText}"&gt;u&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="5" Grid.Row="18" Style="{StaticResource ValueText}"&gt;6&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="0" Grid.Row="19" Style="{StaticResource LabelText}"&gt;Strings with frequency &amp;gt; 20&lt;/TextBlock&gt; &lt;Button Height="23" HorizontalAlignment="Stretch" VerticalAlignment="Center" Content="Sort" Grid.Column="0" Grid.Row="22" Name="btnSort20"/&gt; &lt;TextBlock Grid.Column="1" Grid.Row="19" Style="{StaticResource ValueText}"&gt;392&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="2" Grid.Row="19" Style="{StaticResource LabelText}"&gt;Starting with a Vowel&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="3" Grid.Row="19" Style="{StaticResource ValueText}"&gt;170&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="2" Grid.Row="20" Style="{StaticResource LabelText}"&gt;a&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="3" Grid.Row="20" Style="{StaticResource ValueText}"&gt;34&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="2" Grid.Row="21" Style="{StaticResource LabelText}"&gt;e&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="3" Grid.Row="21" Style="{StaticResource ValueText}"&gt;77&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="2" Grid.Row="22" Style="{StaticResource LabelText}"&gt;i&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="3" Grid.Row="22" Style="{StaticResource ValueText}"&gt;29&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="2" Grid.Row="23" Style="{StaticResource LabelText}"&gt;o&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="3" Grid.Row="23" Style="{StaticResource ValueText}"&gt;21&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="2" Grid.Row="24" Style="{StaticResource LabelText}"&gt;u&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="3" Grid.Row="24" Style="{StaticResource ValueText}"&gt;9&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="4" Grid.Row="19" Style="{StaticResource LabelText}"&gt;Ending with a Vowel&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="5" Grid.Row="19" Style="{StaticResource ValueText}"&gt;161&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="4" Grid.Row="20" Style="{StaticResource LabelText}"&gt;a&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="5" Grid.Row="20" Style="{StaticResource ValueText}"&gt;27&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="4" Grid.Row="21" Style="{StaticResource LabelText}"&gt;e&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="5" Grid.Row="21" Style="{StaticResource ValueText}"&gt;81&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="4" Grid.Row="22" Style="{StaticResource LabelText}"&gt;i&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="5" Grid.Row="22" Style="{StaticResource ValueText}"&gt;24&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="4" Grid.Row="23" Style="{StaticResource LabelText}"&gt;o&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="5" Grid.Row="23" Style="{StaticResource ValueText}"&gt;20&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="4" Grid.Row="24" Style="{StaticResource LabelText}"&gt;u&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="5" Grid.Row="24" Style="{StaticResource ValueText}"&gt;9&lt;/TextBlock&gt; &lt;/Grid&gt; &lt;/Grid&gt; </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload