Skip to content

Commit

Permalink
increase default text size
Browse files Browse the repository at this point in the history
  • Loading branch information
bg117 committed Mar 4, 2023
1 parent 0ff85ec commit 8ae4d74
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
6 changes: 6 additions & 0 deletions FrequencyDistributionTable/Views/LegendView.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@
xmlns:local="clr-namespace:FrequencyDistributionTable.Views"
mc:Ignorable="d"
d:DesignHeight="450" d:DesignWidth="800">
<UserControl.Resources>
<Style TargetType="{x:Type TextBlock}">
<Setter Property="Margin" Value="0 0 0 8"/>
<Setter Property="FontSize" Value="13"/>
</Style>
</UserControl.Resources>
<StackPanel Margin="8">
<TextBlock FontSize="24" Margin="0 0 0 8">Legend</TextBlock>
<StackPanel Orientation="Vertical">
Expand Down
8 changes: 8 additions & 0 deletions FrequencyDistributionTable/Views/MainView.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,14 @@
<UserControl.DataContext>
<viewmodels:MainViewModel />
</UserControl.DataContext>
<UserControl.Resources>
<Style TargetType="{x:Type TextBlock}">
<Setter Property="FontSize" Value="13"/>
</Style>
<Style TargetType="{x:Type Label}">
<Setter Property="FontSize" Value="13"/>
</Style>
</UserControl.Resources>
<Border Padding="8">
<StackPanel Orientation="Vertical">
<TextBlock FontSize="18" Margin="0 0 0 4">Frequency Distribution Table</TextBlock>
Expand Down

0 comments on commit 8ae4d74

Please sign in to comment.