Files
QuestPDF/QuestPDF.Previewer/PreviewerView.axaml
T
2022-03-17 11:44:40 +01:00

18 lines
709 B
XML

<UserControl xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:previewer="clr-namespace:QuestPDF.Previewer"
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
x:Class="QuestPDF.Previewer.PreviewerView">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<ScrollViewer Background="LightGray">
<previewer:PreviewerControl x:Name="PreviewerSurface" Margin="25" />
</ScrollViewer>
</Grid>
</UserControl>