mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-12-25 21:07:20 -08:00
e3c0f7d496
* use system chrome instead of custom caption button on macOS * move `BeginMoveWindow` and `MaximizeOrRestoreWindow` to `ChromelessWindow` * better supports for fullscreen mode on macOS * redesign the layout of title bar for all windows Signed-off-by: leo <longshuang@msn.cn>
53 lines
2.4 KiB
XML
53 lines
2.4 KiB
XML
<v:ChromelessWindow 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:v="using:SourceGit.Views"
|
|
xmlns:vm="using:SourceGit.ViewModels"
|
|
xmlns:c="using:SourceGit.Converters"
|
|
mc:Ignorable="d" d:DesignWidth="400" d:DesignHeight="120"
|
|
x:Class="SourceGit.Views.AIAssistant"
|
|
x:Name="ThisControl"
|
|
Icon="/App.ico"
|
|
Title="{DynamicResource Text.AIAssistant}"
|
|
Width="400" SizeToContent="Height"
|
|
CanResize="False"
|
|
WindowStartupLocation="CenterOwner">
|
|
<Grid RowDefinitions="Auto,Auto,Auto">
|
|
<!-- TitleBar -->
|
|
<Grid Grid.Row="0" Height="28" IsVisible="{Binding !#ThisControl.UseSystemWindowFrame}">
|
|
<Border Background="{DynamicResource Brush.TitleBar}"
|
|
BorderThickness="0,0,0,1" BorderBrush="{DynamicResource Brush.Border0}"
|
|
PointerPressed="BeginMoveWindow"/>
|
|
|
|
<Path Width="14" Height="14"
|
|
Margin="10,0,0,0"
|
|
HorizontalAlignment="Left"
|
|
Data="{StaticResource Icons.AIAssist}"
|
|
IsVisible="{OnPlatform True, macOS=False}"/>
|
|
|
|
<TextBlock Classes="bold"
|
|
Text="{DynamicResource Text.AIAssistant}"
|
|
HorizontalAlignment="Center" VerticalAlignment="Center"
|
|
IsHitTestVisible="False"/>
|
|
|
|
<v:CaptionButtons HorizontalAlignment="Right"
|
|
IsCloseButtonOnly="True"
|
|
IsVisible="{OnPlatform True, macOS=False}"/>
|
|
</Grid>
|
|
|
|
<!-- Animated Icon -->
|
|
<v:LoadingIcon Grid.Row="1"
|
|
Width="24" Height="24"
|
|
Margin="0,16,0,0"/>
|
|
|
|
<!-- Message -->
|
|
<TextBlock Grid.Row="2"
|
|
x:Name="ProgressMessage"
|
|
Margin="16"
|
|
FontSize="{Binding Source={x:Static vm:Preference.Instance}, Path=DefaultFontSize, Converter={x:Static c:DoubleConverters.Decrease}}"
|
|
HorizontalAlignment="Center"
|
|
Text="Generating commit message... Please wait!"
|
|
TextTrimming="CharacterEllipsis"/>
|
|
</Grid>
|
|
</v:ChromelessWindow>
|