AX Agent 선택 주제 안내 위치 조정
Some checks failed
Release Gate / gate (push) Has been cancelled

선택된 대화 주제와 작업 유형 안내 배너를 헤더 중앙에서 입력창 위 중앙으로 옮겼다.

실제 작성 흐름 가까이에서 선택 상태를 확인할 수 있도록 composer 상단 구조에 맞춰 재배치했다.

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:52:42 +09:00
parent 7f8a075553
commit b44df996c2
3 changed files with 29 additions and 26 deletions

View File

@@ -1025,3 +1025,5 @@ MIT License
- 모델 빠른 설정 팝업에서 하단 중복 모델 칩 줄을 제거하고, 하단 모델 라벨은 서비스+모델 조합 대신 현재 모델명만 보이도록 더 심플하게 정리했다.
- 업데이트: 2026-04-05 19:53 (KST)
- 작업 폴더 선택 팝업을 검색/요약 중심 구조에서 `최근 폴더 목록 + 현재 선택 체크 + 다른 폴더 선택` 형태로 단순화해 더 빠르게 고를 수 있게 정리했다.
- 업데이트: 2026-04-05 20:01 (KST)
- 선택된 대화 주제/작업 유형 안내 배너를 헤더 중앙에서 입력창 위 중앙으로 옮겨 실제 작성 흐름에 더 가깝게 보이도록 조정했다.

View File

@@ -4770,3 +4770,5 @@ ow + toggle ?쒓컖 ?몄뼱濡??ㅼ떆 ?뺣젹?덈떎.
- `ChatWindow` 모델 선택 팝업의 중복 `InlineModelChipPanel`을 제거하고, 하단 `ModelLabel`은 현재 모델명 중심으로 단순화해 Claude류의 간결한 표시 방식에 가깝게 조정했다.
- 업데이트: 2026-04-05 19:53 (KST)
- `ChatWindow` 작업 폴더 팝업을 최근 목록 중심 UI로 재구성하고, 검색 박스와 요약 스트립을 제거해 `최근 폴더 + 다른 폴더 선택` 흐름으로 단순화했다.
- 업데이트: 2026-04-05 20:01 (KST)
- `SelectedPresetGuide`를 헤더 영역에서 composer 상단으로 재배치해 선택된 주제/작업 유형 안내가 입력 흐름 근처에서 보이도록 정리했다.

View File

@@ -910,32 +910,6 @@
</Button>
</WrapPanel>
</StackPanel>
<Border x:Name="SelectedPresetGuide"
Grid.Column="1"
Visibility="Collapsed"
HorizontalAlignment="Center"
VerticalAlignment="Center"
Background="{DynamicResource HintBackground}"
BorderBrush="{DynamicResource BorderColor}"
BorderThickness="1"
CornerRadius="12"
Padding="12,7"
Margin="16,0">
<StackPanel HorizontalAlignment="Center">
<TextBlock x:Name="SelectedPresetGuideTitle"
FontSize="12.5"
FontWeight="SemiBold"
Foreground="{DynamicResource PrimaryText}"
TextAlignment="Center"/>
<TextBlock x:Name="SelectedPresetGuideDesc"
Margin="0,2,0,0"
FontSize="11.5"
Foreground="{DynamicResource SecondaryText}"
TextAlignment="Center"
TextTrimming="CharacterEllipsis"
MaxWidth="320"/>
</StackPanel>
</Border>
<!-- 우: 프리뷰 토글 버튼 -->
<StackPanel Grid.Column="2" Orientation="Horizontal" HorizontalAlignment="Right" VerticalAlignment="Center">
<Button x:Name="BtnPreviewToggle" Style="{StaticResource GhostBtn}"
@@ -1604,6 +1578,31 @@
HorizontalAlignment="Center"
VerticalAlignment="Bottom">
<StackPanel HorizontalAlignment="Stretch">
<Border x:Name="SelectedPresetGuide"
Visibility="Collapsed"
HorizontalAlignment="Center"
VerticalAlignment="Center"
Background="{DynamicResource HintBackground}"
BorderBrush="{DynamicResource BorderColor}"
BorderThickness="1"
CornerRadius="12"
Padding="12,7"
Margin="0,0,0,10">
<StackPanel HorizontalAlignment="Center">
<TextBlock x:Name="SelectedPresetGuideTitle"
FontSize="12.5"
FontWeight="SemiBold"
Foreground="{DynamicResource PrimaryText}"
TextAlignment="Center"/>
<TextBlock x:Name="SelectedPresetGuideDesc"
Margin="0,2,0,0"
FontSize="11.5"
Foreground="{DynamicResource SecondaryText}"
TextAlignment="Center"
TextTrimming="CharacterEllipsis"
MaxWidth="320"/>
</StackPanel>
</Border>
<Border x:Name="DraftPreviewCard"
Visibility="Collapsed"
Background="{DynamicResource ItemBackground}"