deeb25a2| 1 | <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.MarkdownPreviewSurfaceView" |
| 5 | x:DataType="vm:MarkdownPreviewSurfaceViewModel"> |
| 6 | <Grid RowDefinitions="Auto,*"> |
| 7 | <Border x:Name="PreviewStatusBanner" |
| 8 | Grid.Row="0" |
| 9 | Margin="12,12,12,0" |
| 10 | Padding="10,8" |
| 11 | CornerRadius="6" |
| 12 | BorderThickness="1" |
| 13 | BorderBrush="{DynamicResource CascadeTheme.WorkspacePanelBorderBrush}" |
| 14 | Background="{DynamicResource CascadeTheme.ChatMessageBubbleBackground}" |
| 15 | IsVisible="False"> |
| 16 | <TextBlock x:Name="PreviewStatusText" |
| 17 | TextWrapping="Wrap"/> |
| 18 | </Border> |
| 19 | |
| 20 | <ContentControl x:Name="PreviewHost" |
| 21 | Grid.Row="1"/> |
| 22 | </Grid> |
| 23 | </UserControl> |
| 24 | |
View only · write via MCP/CIDE