대화 주제와 작업 유형 프리셋 카드 내부 아이콘이 과하게 크게 보이던 문제를 조정했다. 빈 상태 상단 심볼은 더 또렷하게 키우고, 프리셋 카드와 기타/프리셋 추가 카드의 아이콘은 한 단계 줄여 전체 균형을 맞췄다. 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:
@@ -1019,3 +1019,5 @@ MIT License
|
||||
|
||||
- 업데이트: 2026-04-05 19:38 (KST)
|
||||
- AX Agent 상단 탭이 깨져 보이던 문제를 수정하고, `채팅 / Cowork / 코드` pill 세그먼트 형태를 안정적으로 복구했다.
|
||||
- 업데이트: 2026-04-05 19:41 (KST)
|
||||
- AX Agent 빈 상태 상단 심볼은 더 크게 키우고, 대화 주제/작업 유형 프리셋 카드 내부 아이콘은 한 단계 줄여 시각 균형을 조정했다.
|
||||
|
||||
@@ -4764,3 +4764,5 @@ ow + toggle ?쒓컖 ?몄뼱濡??ㅼ떆 ?뺣젹?덈떎.
|
||||
- [ChatWindow.xaml](/E:/AX%20Copilot%20-%20Codex/src/AxCopilot/Views/ChatWindow.xaml) 의 AX Agent 내부 설정 공통 탭에서 `테마 스타일`, `테마 모드` 섹션을 서비스/모델보다 위로 재배치했습니다. 또 상단 좌측 사이드바 토글 버튼은 3줄 햄버거 아이콘 대신 좌측 패널/본문 구조를 암시하는 패널 토글형 아이콘으로 교체해 메뉴 버튼과 구분되도록 정리했습니다.
|
||||
- 업데이트: 2026-04-05 19:38 (KST)
|
||||
- `ChatWindow.xaml`의 상단 탭 스타일과 헤더 래퍼를 정리해 AX Agent의 `채팅 / Cowork / 코드` 탭이 예전 pill 형태로 다시 보이도록 복구했다.
|
||||
- 업데이트: 2026-04-05 19:41 (KST)
|
||||
- `ChatWindow` 빈 상태 상단 심볼 크기를 확대하고, 프리셋 카드/기타/프리셋 추가 카드의 내부 아이콘 크기를 축소해 화면 비율을 정리했다.
|
||||
|
||||
@@ -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="" FontFamily="Segoe MDL2 Assets" FontSize="18"
|
||||
<TextBlock Text="" FontFamily="Segoe MDL2 Assets" FontSize="24"
|
||||
Foreground="{DynamicResource AccentColor}"
|
||||
HorizontalAlignment="Center" VerticalAlignment="Center"/>
|
||||
</Border>
|
||||
|
||||
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user