17 lines
		
	
	
		
			774 B
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			774 B
		
	
	
	
		
			XML
		
	
	
	
	
	
<Window x:Class="Elwig.Windows.DocumentViewerWindow"
 | 
						|
        AutomationProperties.AutomationId="DocumentViewerWindow"
 | 
						|
        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:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
 | 
						|
        xmlns:wv2="clr-namespace:Microsoft.Web.WebView2.Wpf;assembly=Microsoft.Web.WebView2.Wpf"
 | 
						|
        xmlns:local="clr-namespace:Elwig.Windows"
 | 
						|
        mc:Ignorable="d"
 | 
						|
        Closed="OnClosed"
 | 
						|
        Title="PDF Ansicht - Elwig"
 | 
						|
        MinHeight="600" MinWidth="420" Height="750" Width="525">
 | 
						|
    <Grid>
 | 
						|
        <wv2:WebView2 Name="WebView"/>
 | 
						|
    </Grid>
 | 
						|
</Window>
 |