wabbajack/Wabbajack.App.Wpf/Views/BrowserTabView.xaml

17 lines
692 B
Plaintext
Raw Normal View History

2022-05-19 21:47:15 +00:00
<UserControl x:Class="Wabbajack.Views.BrowserTabView"
2022-03-14 12:40:12 +00:00
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:iconPacks="http://metro.mahapps.com/winfx/xaml/iconpacks"
xmlns:views="clr-namespace:Wabbajack.Views"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="300">
2022-05-19 21:47:15 +00:00
2022-03-14 12:40:12 +00:00
<Grid>
<views:BrowserView x:Name="Browser">
</views:BrowserView>
</Grid>
2022-05-19 21:47:15 +00:00
</UserControl>
2022-03-14 12:40:12 +00:00