b591e82804
* Bump Csharpier * run csharpier format ./
27 lines
1.0 KiB
XML
27 lines
1.0 KiB
XML
<UserControl
|
|
x:Class="Speckle.Connectors.DUI.WebView.DUI3ControlWebView"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:wv2="clr-namespace:Microsoft.Web.WebView2.Wpf;assembly=Microsoft.Web.WebView2.Wpf"
|
|
xmlns:local="clr-namespace:Speckle.Connectors.DUI;assembly=Speckle.Connectors.DUI"
|
|
mc:Ignorable="d"
|
|
d:DesignHeight="450"
|
|
d:DesignWidth="800"
|
|
>
|
|
<UserControl.Resources>
|
|
<wv2:CoreWebView2CreationProperties x:Key="EvergreenWebView2CreationProperties" UserDataFolder="C:\temp" />
|
|
</UserControl.Resources>
|
|
<DockPanel>
|
|
<wv2:WebView2
|
|
CreationProperties="{StaticResource EvergreenWebView2CreationProperties}"
|
|
HorizontalAlignment="Stretch"
|
|
VerticalAlignment="Stretch"
|
|
Name="Browser"
|
|
Grid.Row="0"
|
|
Source="{x:Static local:Url.Netlify}"
|
|
/>
|
|
</DockPanel>
|
|
</UserControl>
|