-
-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #46 from deadlydog/ChangeDefaultFont
Use monospace font for paths in grid
- Loading branch information
Showing
3 changed files
with
97 additions
and
94 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,38 @@ | ||
<Application x:Class="PathLengthCheckerGUI.App" | ||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> | ||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | ||
xmlns:extToolkit="http://schemas.xceed.com/wpf/xaml/toolkit" | ||
Startup="Application_Startup" | ||
Exit="Application_Exit"> | ||
<Application.Resources> | ||
|
||
</Application.Resources> | ||
<Style x:Key="DefaultWindowStyle" TargetType="{x:Type Window}"> | ||
<Setter Property="FontSize" Value="14" /> | ||
</Style> | ||
|
||
<!-- Default all tooltips to show for 60 seconds --> | ||
<Style TargetType="{x:Type Button}"> | ||
<Setter Property="ToolTipService.ShowDuration" Value="60000" /> | ||
</Style> | ||
<Style TargetType="{x:Type MenuItem}"> | ||
<Setter Property="ToolTipService.ShowDuration" Value="60000" /> | ||
</Style> | ||
<Style TargetType="{x:Type TextBlock}"> | ||
<Setter Property="ToolTipService.ShowDuration" Value="60000" /> | ||
</Style> | ||
<Style TargetType="{x:Type TextBox}"> | ||
<Setter Property="ToolTipService.ShowDuration" Value="60000" /> | ||
</Style> | ||
<Style TargetType="{x:Type CheckBox}"> | ||
<Setter Property="ToolTipService.ShowDuration" Value="60000" /> | ||
</Style> | ||
<Style TargetType="{x:Type ComboBox}"> | ||
<Setter Property="ToolTipService.ShowDuration" Value="60000" /> | ||
</Style> | ||
<Style TargetType="{x:Type ListBox}"> | ||
<Setter Property="ToolTipService.ShowDuration" Value="60000" /> | ||
</Style> | ||
<Style TargetType="{x:Type extToolkit:IntegerUpDown}"> | ||
<Setter Property="ToolTipService.ShowDuration" Value="60000" /> | ||
</Style> | ||
</Application.Resources> | ||
</Application> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters