25 lines
1.3 KiB
XML
25 lines
1.3 KiB
XML
<UserControl
|
|
x:Class="OneClickRun.App.Controls.WheelView"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
|
<Grid Width="560" Height="560" Background="Transparent"
|
|
PointerMoved="OnPointerMoved"
|
|
PointerPressed="OnPointerPressed"
|
|
PointerReleased="OnPointerReleased"
|
|
PointerExited="OnPointerExited"
|
|
PointerCanceled="OnPointerExited">
|
|
<Canvas x:Name="LayerCanvas" />
|
|
<Ellipse Width="152" Height="152" HorizontalAlignment="Center" VerticalAlignment="Center"
|
|
Fill="{ThemeResource WheelCenterBrush}"
|
|
Stroke="{ThemeResource WheelCenterBorderBrush}"
|
|
StrokeThickness="1.5" />
|
|
<StackPanel HorizontalAlignment="Center" VerticalAlignment="Center" Spacing="4">
|
|
<TextBlock x:Name="CenterTitle" Text="一键运行" FontSize="17" FontWeight="SemiBold"
|
|
Foreground="{ThemeResource WheelCenterTextBrush}" HorizontalAlignment="Center" />
|
|
<TextBlock x:Name="CenterHint" Text="" FontSize="12" Opacity="0.65"
|
|
Foreground="{ThemeResource WheelCenterTextBrush}" HorizontalAlignment="Center"
|
|
MaxWidth="132" TextWrapping="Wrap" TextAlignment="Center" />
|
|
</StackPanel>
|
|
</Grid>
|
|
</UserControl>
|