30 lines
1.4 KiB
XML
30 lines
1.4 KiB
XML
<UserControl x:Class="Server_Dashboard.Views.DashboardPages.MainDashboardPage"
|
|
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:controls="clr-namespace:Server_Dashboard.Controls.ServerModules"
|
|
mc:Ignorable="d" d:DesignHeight="920" d:DesignWidth="1600">
|
|
<Grid Background="{StaticResource BackgroundSurface_00dp}">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="*" />
|
|
</Grid.RowDefinitions>
|
|
<!--ItemsControl list for the Dashboard modules-->
|
|
<Grid>
|
|
<ScrollViewer VerticalScrollBarVisibility="Hidden">
|
|
<ItemsControl ItemsSource="{Binding Modules}">
|
|
<ItemsControl.ItemsPanel>
|
|
<ItemsPanelTemplate>
|
|
<WrapPanel VerticalAlignment="Top" HorizontalAlignment="Left" />
|
|
</ItemsPanelTemplate>
|
|
</ItemsControl.ItemsPanel>
|
|
<ItemsControl.ItemTemplate>
|
|
<DataTemplate>
|
|
<controls:ServerModule />
|
|
</DataTemplate>
|
|
</ItemsControl.ItemTemplate>
|
|
</ItemsControl>
|
|
</ScrollViewer>
|
|
</Grid>
|
|
</Grid>
|
|
</UserControl> |