Files
Better-Seewo/Better-EN5/UI/ComingSoonModule.xaml

106 lines
6.0 KiB
Plaintext
Raw Normal View History

<UserControl x:Class="BetterEN5.UI.ComingSoonModule"
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"
mc:Ignorable="d" d:DesignWidth="700" d:DesignHeight="600">
<UserControl.Resources>
<Style x:Key="ModuleCard" TargetType="Border">
<Setter Property="Background" Value="#1A1A2E"/>
<Setter Property="BorderBrush" Value="#15FFFFFF"/>
<Setter Property="BorderThickness" Value="1"/>
<Setter Property="CornerRadius" Value="14"/>
<Setter Property="Margin" Value="10,8"/>
<Setter Property="Padding" Value="20"/>
<Setter Property="Effect">
<Setter.Value>
<DropShadowEffect BlurRadius="12" ShadowDepth="3" Opacity="0.12" Color="Black"/>
</Setter.Value>
</Setter>
</Style>
<Style x:Key="PlaceholderIcon" TargetType="TextBlock">
<Setter Property="FontSize" Value="36"/>
<Setter Property="HorizontalAlignment" Value="Center"/>
<Setter Property="Margin" Value="0,0,0,8"/>
</Style>
<Style x:Key="PlaceholderTitle" TargetType="TextBlock">
<Setter Property="FontSize" Value="16"/>
<Setter Property="FontWeight" Value="SemiBold"/>
<Setter Property="Foreground" Value="#A0C4FF"/>
<Setter Property="HorizontalAlignment" Value="Center"/>
<Setter Property="Margin" Value="0,0,0,4"/>
</Style>
<Style x:Key="PlaceholderDesc" TargetType="TextBlock">
<Setter Property="FontSize" Value="12"/>
<Setter Property="Foreground" Value="#707090"/>
<Setter Property="HorizontalAlignment" Value="Center"/>
<Setter Property="TextWrapping" Value="Wrap"/>
<Setter Property="TextAlignment" Value="Center"/>
</Style>
</UserControl.Resources>
<Border Background="#12121E" CornerRadius="0" Padding="16">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<TextBlock Grid.Row="0" Text="🚀 更多功能即将到来" FontSize="22" FontWeight="Light"
Foreground="#8080A0" HorizontalAlignment="Center" Margin="0,16,0,4"/>
<TextBlock Grid.Row="1" Text="敬请期待 · Coming Soon" FontSize="13"
Foreground="#505068" HorizontalAlignment="Center" Margin="0,0,0,16"/>
<UniformGrid Grid.Row="2" Columns="2" Margin="0,0,0,0">
<Border Style="{StaticResource ModuleCard}">
<StackPanel VerticalAlignment="Center">
<TextBlock Text="🎨" Style="{StaticResource PlaceholderIcon}"/>
<TextBlock Text="自定义皮肤" Style="{StaticResource PlaceholderTitle}"/>
<TextBlock Text="随心更换希沃白板界面主题与配色" Style="{StaticResource PlaceholderDesc}"/>
</StackPanel>
</Border>
<Border Style="{StaticResource ModuleCard}">
<StackPanel VerticalAlignment="Center">
<TextBlock Text="📚" Style="{StaticResource PlaceholderIcon}"/>
<TextBlock Text="资源管理器" Style="{StaticResource PlaceholderTitle}"/>
<TextBlock Text="一站式管理课件、图片、音视频资源" Style="{StaticResource PlaceholderDesc}"/>
</StackPanel>
</Border>
<Border Style="{StaticResource ModuleCard}">
<StackPanel VerticalAlignment="Center">
<TextBlock Text="📋" Style="{StaticResource PlaceholderIcon}"/>
<TextBlock Text="模板库" Style="{StaticResource PlaceholderTitle}"/>
<TextBlock Text="海量精美课件模板,一键套用" Style="{StaticResource PlaceholderDesc}"/>
</StackPanel>
</Border>
<Border Style="{StaticResource ModuleCard}">
<StackPanel VerticalAlignment="Center">
<TextBlock Text="🔌" Style="{StaticResource PlaceholderIcon}"/>
<TextBlock Text="插件市场" Style="{StaticResource PlaceholderTitle}"/>
<TextBlock Text="发现并安装更多社区插件扩展" Style="{StaticResource PlaceholderDesc}"/>
</StackPanel>
</Border>
<Border Style="{StaticResource ModuleCard}">
<StackPanel VerticalAlignment="Center">
<TextBlock Text="☁️" Style="{StaticResource PlaceholderIcon}"/>
<TextBlock Text="云同步" Style="{StaticResource PlaceholderTitle}"/>
<TextBlock Text="跨设备课件与设置云端同步" Style="{StaticResource PlaceholderDesc}"/>
</StackPanel>
</Border>
<Border Style="{StaticResource ModuleCard}">
<StackPanel VerticalAlignment="Center">
<TextBlock Text="🤖" Style="{StaticResource PlaceholderIcon}"/>
<TextBlock Text="AI 助手" Style="{StaticResource PlaceholderTitle}"/>
<TextBlock Text="智能备课、AI 生成课件内容" Style="{StaticResource PlaceholderDesc}"/>
</StackPanel>
</Border>
</UniformGrid>
<TextBlock Grid.Row="3" Text="Better-Seewo · 为更好的教学体验" FontSize="12"
Foreground="#404058" HorizontalAlignment="Center" Margin="0,12,0,8"/>
</Grid>
</Border>
</UserControl>