34 lines
1.3 KiB
XML
34 lines
1.3 KiB
XML
<UserControl
|
|
x:Class="Bitvault.Avalonia.CreateItemActionView"
|
|
xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:vm="using:Bitvault"
|
|
x:DataType="vm:CreateItemActionViewModel">
|
|
<Button
|
|
Grid.Column="1"
|
|
Width="{StaticResource ButtonWidth}"
|
|
Height="{StaticResource ButtonHeight}"
|
|
VerticalAlignment="Center"
|
|
Content=""
|
|
FontFamily="{DynamicResource SymbolThemeFontFamily}"
|
|
FontSize="16"
|
|
ToolTip.Tip="Add item">
|
|
<Interaction.Behaviors>
|
|
<EventTriggerBehavior EventName="Click">
|
|
<NavigateAction
|
|
Context="{Binding Named, StringFormat='{}{0}:ContentHeader'}"
|
|
Route="ItemCommandHeader"
|
|
Scope="self" />
|
|
<NavigateAction
|
|
Context="{Binding Named, StringFormat='{}{0}:Content'}"
|
|
Route="Item"
|
|
Scope="self">
|
|
<NavigateAction.ParameterBindings>
|
|
<ParameterBinding Key="Immutable" Value="{x:False}" />
|
|
</NavigateAction.ParameterBindings>
|
|
</NavigateAction>
|
|
</EventTriggerBehavior>
|
|
</Interaction.Behaviors>
|
|
</Button>
|
|
</UserControl>
|