|
@@ -55,6 +55,22 @@
|
55
|
55
|
</Setter.Value>
|
56
|
56
|
</Setter>
|
57
|
57
|
</Style>
|
|
58
|
+ <Style x:Key="NoMouseOverButtonStyle" TargetType="{x:Type Button}">
|
|
59
|
+ <Setter Property="BorderThickness" Value="1"/>
|
|
60
|
+ <Setter Property="Foreground" Value="{DynamicResource {x:Static SystemColors.ControlTextBrushKey}}"/>
|
|
61
|
+ <Setter Property="HorizontalContentAlignment" Value="Center"/>
|
|
62
|
+ <Setter Property="VerticalContentAlignment" Value="Center"/>
|
|
63
|
+ <Setter Property="Padding" Value="1"/>
|
|
64
|
+ <Setter Property="Template">
|
|
65
|
+ <Setter.Value>
|
|
66
|
+ <ControlTemplate TargetType="{x:Type Button}">
|
|
67
|
+ <Border x:Name="Chrome" BorderBrush="{TemplateBinding BorderBrush}" Background="{TemplateBinding Background}" SnapsToDevicePixels="true">
|
|
68
|
+ <ContentPresenter HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}" Margin="{TemplateBinding Padding}" RecognizesAccessKey="True" SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" VerticalAlignment="{TemplateBinding VerticalContentAlignment}"/>
|
|
69
|
+ </Border>
|
|
70
|
+ </ControlTemplate>
|
|
71
|
+ </Setter.Value>
|
|
72
|
+ </Setter>
|
|
73
|
+ </Style>
|
58
|
74
|
</Window.Resources>
|
59
|
75
|
<Grid Background="#FFFFFF">
|
60
|
76
|
<!--分5行-->
|
|
@@ -69,7 +85,7 @@
|
69
|
85
|
<Border Grid.Row="0" Background="#2D8CF0">
|
70
|
86
|
<Grid>
|
71
|
87
|
<TextBlock Text="登录星火微课系统" Foreground="#FFFFFF" FontSize="16" Padding="10,13,0,0"/>
|
72
|
|
- <Button Cursor="Hand" Grid.Row="0" x:Name="btnDown" Content="×" Foreground="#FFFFFF" FontSize="25" Padding="10,0,10,0" HorizontalAlignment="Right" Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}" Click="BtnDown_Click"/>
|
|
88
|
+ <Button Cursor="Hand" Grid.Row="0" x:Name="btnDown" Content="×" Background="Transparent" Foreground="#FFFFFF" FontSize="25" Padding="10,0,10,0" HorizontalAlignment="Right" Style="{StaticResource NoMouseOverButtonStyle}" Click="BtnDown_Click"/>
|
73
|
89
|
</Grid>
|
74
|
90
|
</Border>
|
75
|
91
|
<!--第二行 登陆 账号-->
|