#develop (short for SharpDevelop) is a free IDE for .NET programming languages.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

30 lines
1.5 KiB

<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:Default="clr-namespace:SharpDevelop.XamlDesigner"
xmlns:Controls="clr-namespace:SharpDevelop.XamlDesigner.Controls"
xmlns:Converters="clr-namespace:SharpDevelop.XamlDesigner.Converters"
xmlns:PropertyGrid="clr-namespace:SharpDevelop.XamlDesigner.PropertyGrid"
xmlns:Editors="clr-namespace:SharpDevelop.XamlDesigner.PropertyGrid.Editors"
xmlns:Commanding="clr-namespace:SharpDevelop.XamlDesigner.Commanding">
<Brush x:Key="OutlineInsertBackground">#516675</Brush>
<Brush x:Key="OutlineInsertLine">#99BFDB</Brush>
<Style TargetType="{x:Type Controls:OutlineInsertLine}">
<Setter Property="IsHitTestVisible"
Value="False" />
<Setter Property="HorizontalAlignment"
Value="Left" />
<Setter Property="VerticalAlignment"
Value="Top" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type Controls:OutlineInsertLine}">
<Border Height="1"
Background="{DynamicResource OutlineInsertLine}" />
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</ResourceDictionary>