18 lines
543 B
XML
18 lines
543 B
XML
<UserControl
|
|
x:Class="Bitvault.Avalonia.ItemHeaderView"
|
|
xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:vm="using:Bitvault"
|
|
x:DataType="vm:ItemHeaderViewModel">
|
|
<StackPanel Grid.Column="1" Spacing="18">
|
|
<PersonPicture
|
|
Width="96"
|
|
Height="96"
|
|
DisplayName="{Binding Value}" />
|
|
<TextBox
|
|
MaxWidth="360"
|
|
Text="{Binding Value}"
|
|
Watermark="Enter name" />
|
|
</StackPanel>
|
|
</UserControl>
|