mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
17 lines
1.0 KiB
Plaintext
17 lines
1.0 KiB
Plaintext
|
<reactiveUi:ReactiveUserControl x:TypeArguments="local:BrowserTabViewModel"
|
||
|
x:Class="Wabbajack.App.Blazor.Browser.BrowserView"
|
||
|
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:local="clr-namespace:Wabbajack.App.Blazor.Browser"
|
||
|
xmlns:wpf="clr-namespace:Microsoft.Web.WebView2.Wpf;assembly=Microsoft.Web.WebView2.Wpf"
|
||
|
xmlns:reactiveUi="http://reactiveui.net"
|
||
|
mc:Ignorable="d"
|
||
|
d:DesignHeight="300" d:DesignWidth="300">
|
||
|
<Grid>
|
||
|
<wpf:WebView2 x:Name="Browser"></wpf:WebView2>
|
||
|
</Grid>
|
||
|
</reactiveUi:ReactiveUserControl>
|
||
|
|