트레이 메뉴 버전 헤더 글자색을 진한 회색으로 조정
Some checks failed
Release Gate / gate (push) Has been cancelled

변경 목적: 트레이 아이콘 우클릭 메뉴 최상단의 앱 이름/버전 표시가 본문 항목보다 덜 튀면서도 더 안정적으로 보이도록 시각 대비를 조정했습니다.

핵심 수정사항: TrayMenuWindow의 AddHeader 텍스트에 헤더 전용 진한 회색 브러시를 적용하고, 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 00:49:03 +09:00
parent 4353998cf2
commit 0929778ca7
3 changed files with 8 additions and 1 deletions

View File

@@ -14,6 +14,7 @@ namespace AxCopilot.Views;
public partial class TrayMenuWindow : Window
{
private System.Windows.Threading.DispatcherTimer? _autoCloseTimer;
private static readonly Brush HeaderTextBrush = new SolidColorBrush(Color.FromRgb(96, 96, 96));
public TrayMenuWindow()
{
@@ -50,7 +51,7 @@ public partial class TrayMenuWindow : Window
FontWeight = FontWeights.SemiBold,
Margin = new Thickness(12, 2, 12, 6),
};
label.SetResourceReference(TextBlock.ForegroundProperty, "SecondaryText");
label.Foreground = HeaderTextBrush;
MenuPanel.Children.Add(label);
AddSeparator();
return this;