Initial commit to new repository
This commit is contained in:
55
src/AxCopilot/Views/ColorPickResultWindow.xaml
Normal file
55
src/AxCopilot/Views/ColorPickResultWindow.xaml
Normal 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>
|
||||
Reference in New Issue
Block a user