17 lines
681 B
XML
17 lines
681 B
XML
<UserControl
|
|
x:Class="BeWo.View.Controls.PdfViewer"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:dxpdf="http://schemas.devexpress.com/winfx/2008/xaml/pdf"
|
|
xmlns:local="clr-namespace:BeWo.View.Controls"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
x:Name="root"
|
|
d:DesignHeight="450"
|
|
d:DesignWidth="800"
|
|
mc:Ignorable="d">
|
|
<Grid>
|
|
<dxpdf:PdfViewerControl x:Name="pdfviewer" DocumentSource="{Binding PdfData, ElementName=root}" />
|
|
</Grid>
|
|
</UserControl>
|