Forge
deeb25a2
1<Window xmlns="https://github.com/avaloniaui"
2 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
3 xmlns:vm="using:CascadeIDE.ViewModels"
4 xmlns:views="using:CascadeIDE.Views"
5 x:Class="CascadeIDE.Views.MarkdownPreviewWindow"
6 x:DataType="vm:MarkdownPreviewWindowViewModel"
7 Title="{Binding Title}"
8 Width="700" Height="500"
9 Background="{DynamicResource CascadeTheme.PreviewWindowBackground}"
10 WindowStartupLocation="CenterOwner">
11
12 <Border Background="{DynamicResource CascadeTheme.PreviewWindowBackground}">
13 <views:MarkdownPreviewSurfaceView DataContext="{Binding}"/>
14 </Border>
15
16</Window>
17
View only · write via MCP/CIDE