8,755
社区成员




<Rectangle Grid.Row="1">
<Rectangle.Fill>
<ImageBrush ImageSource="/ScoreManagement;component/Images/background.jpg" />
</Rectangle.Fill>
</Rectangle>
<Window
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
x:Class="平铺.MainWindow"
x:Name="Window"
Title="MainWindow" WindowState="Maximized" WindowStyle="None">
<Window.Resources>
<BooleanToVisibilityConverter x:Key="BoolToVis" />
<Storyboard x:Key="Storyboard1"/>
</Window.Resources>
<Window.Triggers>
<EventTrigger RoutedEvent="FrameworkElement.Loaded">
<BeginStoryboard Storyboard="{StaticResource Storyboard1}"/>
</EventTrigger>
</Window.Triggers>
<Grid x:Name="LayoutRoot">
<Grid x:Name="root" IsHitTestVisible="False"
Visibility="{Binding IsChecked, Converter={StaticResource BoolToVis}, ElementName=checkEnableMagnifier}" Margin="0">
<Rectangle x:Name="rect" Margin="0" >
<Rectangle.Fill>
<ImageBrush ImageSource="close.jpg" TileMode="Tile" Viewport="0,0,0.1,0.1" ></ImageBrush>
</Rectangle.Fill>
</Rectangle>
</Grid>
</Grid>
</Window>