46 lines
2.3 KiB
XML
46 lines
2.3 KiB
XML
<UserControl
|
|
xmlns="https://github.com/avaloniaui"
|
|
x:Class="Project.View.MenuView"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="200" />
|
|
<ColumnDefinition Width="*" />
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<ScrollViewer Margin="0, 0, 0, 40" Grid.Column="0" VerticalScrollBarVisibility="Auto">
|
|
|
|
<StackPanel>
|
|
<Button Name="btn1" Width="200" Background="Pink" BorderBrush="Black" BorderThickness="1">BeispielButton</Button>
|
|
<Button Name="btn2" Width="200" Background="Pink" BorderBrush="Black" BorderThickness="1">BeispielButton2</Button>
|
|
</StackPanel>
|
|
</ScrollViewer>
|
|
<Button Name="NewEntry" VerticalAlignment="Bottom" HorizontalAlignment="Left" Content="+"/>
|
|
|
|
<Border Grid.Column="1" Background="RosyBrown">
|
|
<StackPanel Orientation="Horizontal">
|
|
|
|
<StackPanel Orientation="Vertical" Margin="20,20,100,20">
|
|
<TextBlock Margin="23" Text="Name:" HorizontalAlignment="Left" FontSize="20"/>
|
|
<TextBlock Margin="23" Text="URL:" HorizontalAlignment="Left" FontSize="20"/>
|
|
<TextBlock Margin="23" Text="Password:" HorizontalAlignment="Left" FontSize="20"/>
|
|
<TextBlock Margin="23" Text="Note:" HorizontalAlignment="Left" FontSize="20"/>
|
|
</StackPanel>
|
|
|
|
<StackPanel Orientation="Vertical" Margin="20,20,20,20">
|
|
<TextBox Margin="20" Text="THE NAME OF YOUR SAVED LOGIN" Height="30" TextWrapping="Wrap"/>
|
|
<TextBox Margin="20" Text="THE URL TO YOUR PAGE" Height="30" TextWrapping="Wrap"/>
|
|
<StackPanel Orientation="Horizontal">
|
|
<TextBox Margin="20" Text="PASSWORT" Height="30" TextWrapping="Wrap" PasswordChar="*"/>
|
|
<Button Name="copyPassword" BorderBrush="Black" BorderThickness="1" Content="X"/>
|
|
<Button Name="showPassword" BorderBrush="Black" BorderThickness="1" Content="X"/>
|
|
</StackPanel>
|
|
<TextBox Margin="20" Height="150" Text="YOUR NOTES" TextWrapping="Wrap"/>
|
|
</StackPanel>
|
|
</StackPanel>
|
|
</Border>
|
|
|
|
</Grid>
|
|
|
|
|
|
</UserControl> |