Skip to content

Commit

Permalink
Changed scrollviewer width
Browse files Browse the repository at this point in the history
  • Loading branch information
Inestic committed Apr 13, 2021
1 parent ac13532 commit e607fe2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion SophiApp/SophiApp/Controls/CheckBox.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<Setter Property="Foreground" Value="{DynamicResource Brush.Window.Foreground}" />
<Setter Property="TextWrapping" Value="Wrap" />
<Setter Property="VerticalAlignment" Value="Top" />
<Setter Property="HorizontalAlignment" Value="Left" />
<Setter Property="HorizontalAlignment" Value="Left" />
</Style>
<Style TargetType="{x:Type local:CheckBox}">
<Setter Property="Header" Value="{Binding Header, UpdateSourceTrigger=PropertyChanged}" />
Expand Down
2 changes: 1 addition & 1 deletion SophiApp/SophiApp/Controls/ScrollViewer.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type Thumb}">
<Border x:Name="BorderThumb" CornerRadius="4" Background="{TemplateBinding Background}" BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="0" Width="2" Margin="8,0,-2,0" />
<Border x:Name="BorderThumb" CornerRadius="4" Background="{TemplateBinding Background}" BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="0" Width="4" Margin="8,0,-2,0" />
</ControlTemplate>
</Setter.Value>
</Setter>
Expand Down
4 changes: 2 additions & 2 deletions SophiApp/SophiApp/Views/ViewContent.xaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<UserControl x:Class="SophiApp.Views.ViewContent"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:SophiApp.Views"
xmlns:controls="clr-namespace:SophiApp.Controls"
xmlns:converters="clr-namespace:SophiApp.Converters"
xmlns:models="clr-namespace:SophiApp.Models"
xmlns:local="clr-namespace:SophiApp.Views"
mc:Ignorable="d"
IsVisibleChanged="ViewContent_IsVisibleChanged"
controls:Switch.MouseEnter="UIElement_MouseEnter"
Expand Down

0 comments on commit e607fe2

Please sign in to comment.