40 lines
1.8 KiB
XML
40 lines
1.8 KiB
XML
<UserControl x:Class="Wpf_AiSportsMicrospace.Views.JumpRope.MusicJumpRope"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:local="clr-namespace:Wpf_AiSportsMicrospace.MyUserControl"
|
|
mc:Ignorable="d"
|
|
Height="1080" Width="1920" Loaded="UserControl_Loaded" Unloaded="UserControl_Unloaded">
|
|
<Grid>
|
|
<Grid.Background>
|
|
<ImageBrush ImageSource="/Resources/Img/test_img/test_home_bg.png" Stretch="UniformToFill"/>
|
|
</Grid.Background>
|
|
<Image
|
|
Source="/Resources/Img/test_img/one_rope/title.png"
|
|
HorizontalAlignment="Center"
|
|
VerticalAlignment="Top"
|
|
Width="615"
|
|
Margin="0,0,0,0"
|
|
/>
|
|
<Grid Height="1080" Width="1920" x:Name="userBox">
|
|
<Canvas x:Name="beatCanvas" />
|
|
</Grid>
|
|
|
|
<Grid Width="220" Height="130" VerticalAlignment="Top" HorizontalAlignment="Right" Margin="00,40,60,0" Visibility="Hidden" x:Name="countdownGrid">
|
|
<Border Background="#005fff" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" CornerRadius="30" />
|
|
<TextBlock x:Name="countdownText"
|
|
Text="60"
|
|
FontSize="120"
|
|
FontWeight="Bold"
|
|
Foreground="#fff"
|
|
FontStyle="Italic"
|
|
HorizontalAlignment="Center"
|
|
VerticalAlignment="Center"
|
|
Margin="0,10,0,0"
|
|
TextAlignment="Center"
|
|
/>
|
|
</Grid>
|
|
</Grid>
|
|
</UserControl>
|