- add: menu
This commit is contained in:
43
Nebula.Launcher/Views/Pages/ServerListView.axaml
Normal file
43
Nebula.Launcher/Views/Pages/ServerListView.axaml
Normal file
@@ -0,0 +1,43 @@
|
||||
<UserControl
|
||||
d:DesignHeight="450"
|
||||
d:DesignWidth="800"
|
||||
mc:Ignorable="d"
|
||||
x:Class="Nebula.Launcher.Views.Pages.ServerListView"
|
||||
x:DataType="pages:ServerListView"
|
||||
xmlns="https://github.com/avaloniaui"
|
||||
xmlns:controls="clr-namespace:Nebula.Launcher.Views.Controls"
|
||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:pages="clr-namespace:Nebula.Launcher.Views.Pages">
|
||||
<Grid ColumnDefinitions="*" RowDefinitions="*,40">
|
||||
<ScrollViewer Margin="0,0,0,10" Padding="0,0,8,0">
|
||||
<StackPanel>
|
||||
<controls:ServerContainerControl />
|
||||
<controls:ServerContainerControl />
|
||||
<controls:ServerContainerControl />
|
||||
<controls:ServerContainerControl />
|
||||
<controls:ServerContainerControl />
|
||||
<controls:ServerContainerControl />
|
||||
<controls:ServerContainerControl />
|
||||
<controls:ServerContainerControl />
|
||||
<controls:ServerContainerControl />
|
||||
<controls:ServerContainerControl />
|
||||
</StackPanel>
|
||||
</ScrollViewer>
|
||||
<Border
|
||||
BorderThickness="2,0,0,0"
|
||||
CornerRadius="10"
|
||||
Grid.Row="1">
|
||||
<Grid ColumnDefinitions="*,40" RowDefinitions="*">
|
||||
<TextBox
|
||||
Margin="0"
|
||||
VerticalAlignment="Center"
|
||||
Watermark="Server name..." />
|
||||
<Button Grid.Column="1" Padding="10">
|
||||
<Image Source="/Assets/filter.png" />
|
||||
</Button>
|
||||
</Grid>
|
||||
</Border>
|
||||
</Grid>
|
||||
</UserControl>
|
||||
Reference in New Issue
Block a user