-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathModsPage.axaml
More file actions
15 lines (15 loc) · 805 Bytes
/
ModsPage.axaml
File metadata and controls
15 lines (15 loc) · 805 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<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:controls="clr-namespace:JustLauncher.Controls"
xmlns:loc="clr-namespace:JustLauncher.Resources"
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
x:Class="JustLauncher.ModsPage">
<Grid RowDefinitions="*" Margin="40">
<!-- Mods Control -->
<Border Grid.Row="0" Background="{DynamicResource ContentBackground}" CornerRadius="8" Padding="20">
<controls:ModsControl x:Name="ModsControl"/>
</Border>
</Grid>
</UserControl>