Initial commit to new repository

This commit is contained in:
2026-04-03 18:22:19 +09:00
commit 4458bb0f52
7672 changed files with 452440 additions and 0 deletions

View File

@@ -0,0 +1,55 @@
<Window x:Class="AxCopilot.Views.ColorPickResultWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
WindowStyle="None"
AllowsTransparency="True"
UseLayoutRounding="True"
SnapsToDevicePixels="True"
Background="Transparent"
Topmost="True"
ShowInTaskbar="False"
ResizeMode="NoResize"
SizeToContent="WidthAndHeight"
WindowStartupLocation="Manual">
<Border CornerRadius="14"
Padding="20,16"
Margin="16">
<Border.Background>
<SolidColorBrush Color="#1A1B2E" Opacity="0.92"/>
</Border.Background>
<Border.Effect>
<DropShadowEffect Color="Black" BlurRadius="22" ShadowDepth="4" Opacity="0.28"/>
</Border.Effect>
<StackPanel>
<!-- 색상 미리보기 원 -->
<Ellipse x:Name="ColorPreview"
Width="56" Height="56"
Stroke="#44FFFFFF" StrokeThickness="2"
HorizontalAlignment="Center"/>
<!-- HEX 코드 -->
<TextBlock x:Name="HexText"
FontSize="22" FontWeight="Bold"
FontFamily="Consolas"
Foreground="White"
HorizontalAlignment="Center"
Margin="0,10,0,2"/>
<!-- RGB 값 -->
<TextBlock x:Name="RgbText"
FontSize="12"
FontFamily="Consolas"
Foreground="#88AACCFF"
HorizontalAlignment="Center"/>
<!-- 힌트 -->
<TextBlock Text="HEX 코드가 클립보드에 복사되었습니다"
FontSize="10"
Foreground="#55FFFFFF"
HorizontalAlignment="Center"
Margin="0,8,0,0"/>
</StackPanel>
</Border>
</Window>