IDocument
|
IDocument Object |
Description
This object can load the Document, It is base class of PDFDocument.
Namespace: Viscomsoft.UWP.PDFViewerSDK
Example
|
Double-click on MainPage.xaml to open it in the Design view. In XAML code window, add Border named uiViewPanel
the code looks like this
<Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}"> <Grid.RowDefinitions> <RowDefinition Height="100" /> <RowDefinition Height="*" /> </Grid.RowDefinitions> <Border Grid.Row="1" x:Name="uiViewPanel" Background="#FFE6E6E6" Margin="-10,10,10,-10"></Border>
|