Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>Struck through the somewhat same problem. Also did you noticed that there is no separator visible between Create Models and Create Pages. My issue was horizontal separator not completely visible i.e. for Highlighted area there is no horizontal separator.</p> <p><img src="https://i.stack.imgur.com/R1t8x.png" alt="enter image description here"> Here is how i fixed it:</p> <pre><code> &lt;MenuItem Header="New"/&gt; &lt;Separator&gt; &lt;Separator.Style&gt; &lt;Style TargetType="Separator"&gt; &lt;Setter Property="Margin" Value="0,3" /&gt; &lt;Setter Property="Template"&gt; &lt;Setter.Value&gt; &lt;ControlTemplate TargetType="{x:Type Separator}"&gt; &lt;Border BorderThickness="{TemplateBinding Border.BorderThickness}" Background="{StaticResource SeperatorBrush}" Height="1" SnapsToDevicePixels="true"/&gt; &lt;/ControlTemplate&gt; &lt;/Setter.Value&gt; &lt;/Setter&gt; &lt;/Style&gt; &lt;/Separator.Style&gt; &lt;/Separator&gt; </code></pre> <p></p> <p>Also here is the brush.</p> <pre><code> &lt;LinearGradientBrush StartPoint="0,0" EndPoint="0,1" x:Key="SeperatorBrush"&gt; &lt;LinearGradientBrush.GradientStops&gt; &lt;GradientStop Color="#FFF6F6F6" Offset="0.25" /&gt; &lt;GradientStop Color="#FFEAE8E8" Offset="0.25" /&gt; &lt;GradientStop Color="#FFDCD9D9" Offset="0.8" /&gt; &lt;GradientStop Color="#FFFFFFFF" Offset="1" /&gt; &lt;/LinearGradientBrush.GradientStops&gt; &lt;/LinearGradientBrush&gt; </code></pre> <p>Brush is used to show the default appearance of Separator.</p>
 

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