AX Agent 프리셋 아이콘 비율 조정
Some checks failed
Release Gate / gate (push) Has been cancelled

대화 주제와 작업 유형 프리셋 카드 내부 아이콘이 과하게 크게 보이던 문제를 조정했다.

빈 상태 상단 심볼은 더 또렷하게 키우고, 프리셋 카드와 기타/프리셋 추가 카드의 아이콘은 한 단계 줄여 전체 균형을 맞췄다.

README와 DEVELOPMENT 문서에 변경 이력과 시점을 반영했다.

검증: dotnet build src/AxCopilot/AxCopilot.csproj -c Release -v minimal -p:OutputPath=bin\\verify\\ -p:IntermediateOutputPath=obj\\verify\\ (경고 0 / 오류 0)
This commit is contained in:
2026-04-05 19:43:03 +09:00
parent 3198f822f5
commit cfacb903e1
4 changed files with 16 additions and 12 deletions

View File

@@ -1273,10 +1273,10 @@
HorizontalAlignment="Center"
VerticalAlignment="Top"
Margin="0,14,0,4">
<Border x:Name="EmptyIcon" CornerRadius="12" Width="36" Height="36"
<Border x:Name="EmptyIcon" CornerRadius="14" Width="48" Height="48"
HorizontalAlignment="Center" Margin="0,0,0,10"
Background="{DynamicResource HintBackground}">
<TextBlock Text="&#xE8BD;" FontFamily="Segoe MDL2 Assets" FontSize="18"
<TextBlock Text="&#xE8BD;" FontFamily="Segoe MDL2 Assets" FontSize="24"
Foreground="{DynamicResource AccentColor}"
HorizontalAlignment="Center" VerticalAlignment="Center"/>
</Border>

View File

@@ -12490,17 +12490,17 @@ public partial class ChatWindow : Window
var iconCircle = new Border
{
Width = 46, Height = 46,
CornerRadius = new CornerRadius(23),
Width = 40, Height = 40,
CornerRadius = new CornerRadius(20),
Background = new SolidColorBrush(((SolidColorBrush)btnColor).Color) { Opacity = 0.15 },
HorizontalAlignment = HorizontalAlignment.Center,
Margin = new Thickness(0, 0, 0, 12),
Margin = new Thickness(0, 0, 0, 10),
};
var iconTb = new TextBlock
{
Text = preset.Symbol,
FontFamily = new FontFamily("Segoe MDL2 Assets"),
FontSize = 20,
FontSize = 17,
Foreground = btnColor,
HorizontalAlignment = HorizontalAlignment.Center,
VerticalAlignment = VerticalAlignment.Center,
@@ -12620,17 +12620,17 @@ public partial class ChatWindow : Window
var etcIconCircle = new Border
{
Width = 46, Height = 46,
CornerRadius = new CornerRadius(23),
Width = 40, Height = 40,
CornerRadius = new CornerRadius(20),
Background = new SolidColorBrush(((SolidColorBrush)etcColor).Color) { Opacity = 0.15 },
HorizontalAlignment = HorizontalAlignment.Center,
Margin = new Thickness(0, 0, 0, 12),
Margin = new Thickness(0, 0, 0, 10),
};
etcIconCircle.Child = new TextBlock
{
Text = "\uE70F", // Edit 아이콘
FontFamily = new FontFamily("Segoe MDL2 Assets"),
FontSize = 20,
FontSize = 17,
Foreground = etcColor,
HorizontalAlignment = HorizontalAlignment.Center,
VerticalAlignment = VerticalAlignment.Center,
@@ -12708,10 +12708,10 @@ public partial class ChatWindow : Window
{
Text = "\uE710",
FontFamily = new FontFamily("Segoe MDL2 Assets"),
FontSize = 26,
FontSize = 22,
Foreground = secondaryText,
HorizontalAlignment = HorizontalAlignment.Center,
Margin = new Thickness(0, 12, 0, 10),
Margin = new Thickness(0, 10, 0, 8),
};
addStack.Children.Add(plusIcon);