mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
26 lines
1.3 KiB
XML
26 lines
1.3 KiB
XML
<UserControl xmlns="https://github.com/avaloniaui"
|
|
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:webview="clr-namespace:CefNet.Avalonia;assembly=CefNet.Avalonia"
|
|
xmlns:i="clr-namespace:Material.Icons.Avalonia;assembly=Material.Icons.Avalonia"
|
|
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
|
|
x:Class="Wabbajack.App.Views.GuidedWebView">
|
|
<Grid RowDefinitions="Auto, 40, *" ColumnDefinitions="40, 40, 40, *">
|
|
<TextBlock Grid.ColumnSpan="4" FontSize="20" x:Name="Instructions" />
|
|
<Button Grid.Row="1" Grid.Column="0">
|
|
<i:MaterialIcon Kind="ChevronLeft" />
|
|
</Button>
|
|
<Button Grid.Row="1" Grid.Column="1">
|
|
<i:MaterialIcon Kind="Home" />
|
|
</Button>
|
|
<Button Grid.Row="1" Grid.Column="2">
|
|
<i:MaterialIcon Kind="Refresh" />
|
|
</Button>
|
|
<TextBox Grid.Row="1" Grid.Column="3" />
|
|
|
|
<webview:WebView Grid.Row="2" Grid.Column="0" Grid.ColumnSpan="4" x:Name="WebView"
|
|
InitialUrl="https://www.nexusmods.com" />
|
|
|
|
</Grid>
|
|
</UserControl> |