Update MainWindow.xaml
This commit is contained in:
@@ -5098,16 +5098,10 @@
|
|||||||
</Border>
|
</Border>
|
||||||
</Grid>
|
</Grid>
|
||||||
</Border>
|
</Border>
|
||||||
<Border x:Name="BoardUndo" Width="60" Height="50" MouseDown="Border_MouseDown"
|
<Border x:Name="BoardUndo" Width="60" Height="50" MouseDown="Border_MouseDown" MouseUp="SymbolIconUndo_MouseUp" BorderThickness="0,1,0,1" BorderBrush="#a1a1aa" IsEnabled="{Binding ElementName=BtnUndo, Path=IsEnabled}" Background="#f4f4f5" Opacity="0.95">
|
||||||
MouseUp="SymbolIconUndo_MouseUp" BorderThickness="0,1,0,1"
|
|
||||||
BorderBrush="#a1a1aa"
|
|
||||||
IsEnabled="{Binding ElementName=BtnUndo, Path=IsEnabled}"
|
|
||||||
Background="#f4f4f5"
|
|
||||||
Opacity="0.95">
|
|
||||||
<Grid Margin="6,6,6,4">
|
<Grid Margin="6,6,6,4">
|
||||||
<Image VerticalAlignment="Top"
|
<Image VerticalAlignment="Top"
|
||||||
RenderOptions.BitmapScalingMode="HighQuality" Height="20" Width="20"
|
RenderOptions.BitmapScalingMode="HighQuality" Height="20" Width="20" Opacity="{Binding ElementName=BtnUndo, Path=IsEnabled, Converter={StaticResource IsEnabledToOpacityConverter}}">
|
||||||
Opacity="{Binding ElementName=BtnUndo, Path=IsEnabled, Converter={StaticResource IsEnabledToOpacityConverter}}">
|
|
||||||
<Image.Source>
|
<Image.Source>
|
||||||
<DrawingImage>
|
<DrawingImage>
|
||||||
<DrawingImage.Drawing>
|
<DrawingImage.Drawing>
|
||||||
@@ -5119,21 +5113,12 @@
|
|||||||
</DrawingImage>
|
</DrawingImage>
|
||||||
</Image.Source>
|
</Image.Source>
|
||||||
</Image>
|
</Image>
|
||||||
<TextBlock Text="撤销" Foreground="Black" VerticalAlignment="Bottom"
|
<TextBlock Text="撤销" Foreground="Black" VerticalAlignment="Bottom" HorizontalAlignment="Center" FontSize="12" />
|
||||||
HorizontalAlignment="Center" FontSize="12" />
|
|
||||||
</Grid>
|
</Grid>
|
||||||
</Border>
|
</Border>
|
||||||
<Border x:Name="BoardRedo" Width="60" Height="50" CornerRadius="0,5,5,0"
|
<Border x:Name="BoardRedo" Width="60" Height="50" CornerRadius="0,5,5,0" MouseDown="Border_MouseDown" MouseUp="SymbolIconRedo_MouseUp" BorderThickness="0,1,1,1" BorderBrush="#a1a1aa" IsEnabled="{Binding ElementName=BtnRedo, Path=IsEnabled}" Background="#f4f4f5" Opacity="0.95">
|
||||||
MouseDown="Border_MouseDown" MouseUp="SymbolIconRedo_MouseUp"
|
|
||||||
BorderThickness="0,1,1,1"
|
|
||||||
BorderBrush="#a1a1aa"
|
|
||||||
IsEnabled="{Binding ElementName=BtnRedo, Path=IsEnabled}"
|
|
||||||
Background="#f4f4f5"
|
|
||||||
Opacity="0.95">
|
|
||||||
<Grid Margin="6,6,6,4">
|
<Grid Margin="6,6,6,4">
|
||||||
<Image VerticalAlignment="Top"
|
<Image VerticalAlignment="Top" RenderOptions.BitmapScalingMode="HighQuality" Height="20" Width="20" Opacity="{Binding ElementName=BtnRedo, Path=IsEnabled, Converter={StaticResource IsEnabledToOpacityConverter}}">
|
||||||
RenderOptions.BitmapScalingMode="HighQuality" Height="20" Width="20"
|
|
||||||
Opacity="{Binding ElementName=BtnRedo, Path=IsEnabled, Converter={StaticResource IsEnabledToOpacityConverter}}">
|
|
||||||
<Image.Source>
|
<Image.Source>
|
||||||
<DrawingImage>
|
<DrawingImage>
|
||||||
<DrawingImage.Drawing>
|
<DrawingImage.Drawing>
|
||||||
|
|||||||
Reference in New Issue
Block a user