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