develop feature/agent-framework-poc fix/editor-text-visibility-chrome main Views / McpBannerView.axaml deeb25a21 <UserControl xmlns="https://github.com/avaloniaui" 2 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 3 xmlns:vm="using:CascadeIDE.ViewModels" 4 x:Class="CascadeIDE.Views.McpBannerView" 5 x:DataType="vm:MainWindowViewModel"> 6 <Border Background="{DynamicResource CascadeTheme.McpBannerBackground}" 7 Padding="8,4" 8 IsVisible="{Binding IsMcpServerMode}"> 9 <StackPanel Spacing="2"> 10 <TextBlock Text="Управляется агентом (MCP). Не закрывайте окно — подключение будет потеряно." 11 Foreground="{DynamicResource CascadeTheme.McpBannerForeground}" 12 FontSize="12" 13 VerticalAlignment="Center"/> 14 <TextBlock Text="Обновить exe под Cursor: в исходниках каталог open/cascade-ide (рядом с CascadeIDE.csproj) — scripts/deploy/publish-debug.ps1 (Debug) и scripts/deploy/publish-release.ps1 (Release); см. docs/MCP-PROTOCOL.md, раздел «Переопубликация для Cursor»." 15 Foreground="{DynamicResource CascadeTheme.McpBannerForeground}" 16 FontSize="11" 17 Opacity="0.88" 18 TextWrapping="Wrap"/> 19 </StackPanel> 20 </Border> 21 </UserControl> 22
View only · write via MCP/CIDE