38 lines
1.3 KiB
XML
38 lines
1.3 KiB
XML
<UserControl
|
|
d:DesignHeight="450"
|
|
d:DesignWidth="800"
|
|
mc:Ignorable="d"
|
|
x:Class="Nebula.Launcher.Views.Controls.PlayerContainerControl"
|
|
xmlns="https://github.com/avaloniaui"
|
|
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">
|
|
<Border
|
|
BorderThickness="0,0,1,0"
|
|
CornerRadius="0,10,0,10"
|
|
Margin="5,4,5,0"
|
|
VerticalAlignment="Center">
|
|
<Panel>
|
|
<StackPanel Margin="10,5,5,5" Orientation="Horizontal">
|
|
<Label Margin="0,0,2,0">Name:</Label>
|
|
<Label>Ni Higgers</Label>
|
|
</StackPanel>
|
|
<StackPanel HorizontalAlignment="Right" Orientation="Horizontal">
|
|
<Button CornerRadius="0,0,0,10" Padding="5">
|
|
<Label>
|
|
Select
|
|
</Label>
|
|
</Button>
|
|
<Button
|
|
BorderThickness="2,0,0,0"
|
|
CornerRadius="0,10,0,0"
|
|
Padding="5">
|
|
<Label>
|
|
Delete
|
|
</Label>
|
|
</Button>
|
|
</StackPanel>
|
|
</Panel>
|
|
</Border>
|
|
</UserControl>
|