2025-09-28 16:45:46 +08:00
|
|
|
|
<UserControl x:Class="Wpf_AiSportsMicrospace.Home"
|
2025-09-22 09:47:35 +08:00
|
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
2025-09-22 15:22:53 +08:00
|
|
|
|
xmlns:local="clr-namespace:Wpf_AiSportsMicrospace.MyUserControl"
|
2025-10-09 10:22:55 +08:00
|
|
|
|
xmlns:gif="http://wpfanimatedgif.codeplex.com"
|
2025-10-12 10:20:08 +08:00
|
|
|
|
Height="1080" Width="1920" Loaded="Window_Loaded" Unloaded="Home_Unloaded">
|
2025-10-09 10:22:55 +08:00
|
|
|
|
<Grid VerticalAlignment="Bottom">
|
2025-09-25 09:37:53 +08:00
|
|
|
|
<Grid.Background>
|
|
|
|
|
|
<ImageBrush ImageSource="/Resources/Img/Album/home_bg.png" Stretch="UniformToFill"/>
|
|
|
|
|
|
</Grid.Background>
|
2025-09-26 16:46:22 +08:00
|
|
|
|
|
|
|
|
|
|
<!-- 顶部图片 -->
|
|
|
|
|
|
<Image
|
|
|
|
|
|
Source="/Resources/Img/Album/title.png"
|
|
|
|
|
|
HorizontalAlignment="Center"
|
|
|
|
|
|
VerticalAlignment="Top"
|
|
|
|
|
|
Width="615"
|
2025-10-11 14:40:01 +08:00
|
|
|
|
Margin="0,50,0,0"
|
2025-10-16 20:56:18 +08:00
|
|
|
|
MouseDown="Image_MouseDown"
|
2025-09-26 16:46:22 +08:00
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- CoverFlowControl,距离图片80 -->
|
|
|
|
|
|
<local:CoverFlowControl
|
2025-10-11 14:40:01 +08:00
|
|
|
|
x:Name="coverFlow"
|
|
|
|
|
|
HorizontalAlignment="Center"
|
|
|
|
|
|
VerticalAlignment="Top"
|
|
|
|
|
|
Height="900"
|
|
|
|
|
|
Width="1920"
|
|
|
|
|
|
Margin="0,180,0,0"
|
|
|
|
|
|
Padding="0,100"
|
|
|
|
|
|
/>
|
|
|
|
|
|
<Grid Margin="314,833,214,0" VerticalAlignment="Top" Height="182">
|
2025-10-09 10:22:55 +08:00
|
|
|
|
<Image
|
|
|
|
|
|
Source="/Resources/Img/Album/change_back.png"
|
2025-10-11 14:40:01 +08:00
|
|
|
|
MouseDown="GoNew"
|
2025-10-09 10:22:55 +08:00
|
|
|
|
HorizontalAlignment="Left"
|
|
|
|
|
|
VerticalAlignment="Top"
|
|
|
|
|
|
Width="330"
|
|
|
|
|
|
Margin="0,100,0,0"
|
|
|
|
|
|
/>
|
|
|
|
|
|
<Image
|
|
|
|
|
|
gif:ImageBehavior.AnimatedSource="/Resources/Img/Album/2.gif"
|
|
|
|
|
|
gif:ImageBehavior.RepeatBehavior="Forever"
|
|
|
|
|
|
HorizontalAlignment="Left"
|
|
|
|
|
|
VerticalAlignment="Top"
|
|
|
|
|
|
Margin="-20,10,30,20"
|
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
|
|
<Image
|
|
|
|
|
|
Source="/Resources/Img/Album/change_right.png"
|
|
|
|
|
|
HorizontalAlignment="right"
|
|
|
|
|
|
VerticalAlignment="Top"
|
|
|
|
|
|
Width="330"
|
|
|
|
|
|
Margin="0,100,0,0"
|
|
|
|
|
|
/>
|
|
|
|
|
|
<Image
|
|
|
|
|
|
gif:ImageBehavior.AnimatedSource="/Resources/Img/Album/1.gif"
|
|
|
|
|
|
gif:ImageBehavior.RepeatBehavior="Forever"
|
|
|
|
|
|
HorizontalAlignment="right"
|
|
|
|
|
|
VerticalAlignment="Top"
|
|
|
|
|
|
Margin="50,10,200,20"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
2025-10-11 14:40:01 +08:00
|
|
|
|
|
2025-09-22 09:47:35 +08:00
|
|
|
|
</Grid>
|
2025-09-28 16:45:46 +08:00
|
|
|
|
</UserControl>
|