This commit is contained in:
Haacked 2015-03-03 22:23:14 -08:00
Родитель 50212c10bd
Коммит 9ebb28c7f0
2 изменённых файлов: 13 добавлений и 7 удалений

Просмотреть файл

@ -2,11 +2,11 @@
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Style x:Key="GitHubBlueLinkButton" TargetType="{x:Type ButtonBase}">
<Setter Property="Foreground" Value="{StaticResource GHBlueLinkButtonTextBrush}" />
<Setter Property="BorderBrush" Value="{StaticResource GHBlueLinkButtonTextBrush}" />
<Setter Property="Foreground" Value="{DynamicResource GHBlueLinkButtonTextBrush}" />
<Setter Property="BorderBrush" Value="{DynamicResource GHBlueLinkButtonTextBrush}" />
<Setter Property="FontFamily" Value="{DynamicResource GitHubFontFamilyNormal}" />
<Setter Property="FontSize" Value="14" />
<Setter Property="FocusVisualStyle" Value="{StaticResource NegativeMarginFocusVisual}" />
<Setter Property="FocusVisualStyle" Value="{DynamicResource NegativeMarginFocusVisual}" />
<Setter Property="ToolTipService.ShowDuration" Value="30000" />
<Setter Property="ToolTipService.ShowOnDisabled" Value="True" />
<Setter Property="HorizontalContentAlignment" Value="Left" />
@ -25,10 +25,10 @@
</Grid>
<ControlTemplate.Triggers>
<Trigger Property="IsMouseOver" Value="True">
<Setter Property="Foreground" Value="{StaticResource GHBlueLinkButtonHoverBrush}" />
<Setter Property="Foreground" Value="{DynamicResource GHBlueLinkButtonHoverBrush}" />
</Trigger>
<Trigger Property="IsPressed" Value="True">
<Setter Property="Foreground" Value="{StaticResource GHBlueLinkButtonPressedBrush}" />
<Setter Property="Foreground" Value="{DynamicResource GHBlueLinkButtonPressedBrush}" />
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>

Просмотреть файл

@ -109,8 +109,14 @@
</Grid.ColumnDefinitions>
<ui:AppendingPathTextBox x:Name="localPathText" Grid.Column="0" Grid.Row="0" />
<Button x:Name="browsePathButton" Grid.Column="1" Grid.Row="0" Margin="3,0,0,0">Browse</Button>
<Button
x:Name="browsePathButton"
Grid.Column="1"
VerticalContentAlignment="Center"
Grid.Row="0"
Padding="0"
Margin="3,0,0,0"
Style="{StaticResource GitHubBlueLinkButton}">Browse</Button>
</Grid>
<!-- uirx:ValidationMessage x:Name="pathValidationMessage" Grid.Column="1" Grid.Row="4" ValidatesControl="{Binding ElementName=localPathText}"/ -->