mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-20 23:54:26 +08:00
61 lines
2.6 KiB
XML
61 lines
2.6 KiB
XML
<UserControl xmlns="https://github.com/avaloniaui"
|
|
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"
|
|
xmlns:mi="clr-namespace:Material.Icons.Avalonia;assembly=Material.Icons.Avalonia"
|
|
mc:Ignorable="d"
|
|
d:DesignWidth="300"
|
|
d:DesignHeight="150"
|
|
x:Class="LanMountainDesktop.Views.Components.StudySessionControlWidget">
|
|
<Border x:Name="RootBorder"
|
|
Background="{DynamicResource AdaptiveSurfaceRaisedBrush}"
|
|
BorderBrush="{DynamicResource AdaptiveButtonBorderBrush}"
|
|
BorderThickness="1"
|
|
CornerRadius="{DynamicResource DesignCornerRadiusComponent}"
|
|
Padding="14,10"
|
|
ClipToBounds="True">
|
|
<Grid x:Name="LayoutGrid"
|
|
ColumnDefinitions="*,Auto"
|
|
ColumnSpacing="10">
|
|
<StackPanel x:Name="LeftTextStack"
|
|
Spacing="2"
|
|
VerticalAlignment="Center">
|
|
<TextBlock x:Name="PrimaryTextBlock"
|
|
Text="Start Study Session"
|
|
FontSize="17"
|
|
FontWeight="SemiBold"
|
|
MaxLines="1"
|
|
TextTrimming="CharacterEllipsis" />
|
|
<TextBlock x:Name="SecondaryTextBlock"
|
|
Text="Tap icon to start"
|
|
FontSize="11"
|
|
MaxLines="1"
|
|
TextTrimming="CharacterEllipsis" />
|
|
</StackPanel>
|
|
|
|
<Button x:Name="ActionButton"
|
|
Grid.Column="1"
|
|
Width="48"
|
|
Height="48"
|
|
Padding="0"
|
|
Background="Transparent"
|
|
BorderThickness="0"
|
|
Cursor="Hand"
|
|
Click="OnActionButtonClick">
|
|
<Border x:Name="ActionIconBorder"
|
|
Width="48"
|
|
Height="48"
|
|
CornerRadius="24"
|
|
Background="#2DFFFFFF"
|
|
BorderBrush="#40FFFFFF"
|
|
BorderThickness="1">
|
|
<mi:MaterialIcon x:Name="ActionIcon"
|
|
Kind="Play"
|
|
Width="22"
|
|
Height="22" />
|
|
</Border>
|
|
</Button>
|
|
</Grid>
|
|
</Border>
|
|
</UserControl>
|