16 lines
688 B
XML
16 lines
688 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<NavigationViewItem
|
|
x:Class="Hyperbar.Windows.GeneralSettingsNavigationView"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:interactions="using:Microsoft.Xaml.Interactions.Core"
|
|
xmlns:interactivity="using:Microsoft.Xaml.Interactivity"
|
|
xmlns:ui="using:Hyperbar.UI.Windows"
|
|
Content="General">
|
|
<interactivity:Interaction.Behaviors>
|
|
<interactions:EventTriggerBehavior EventName="Tapped">
|
|
<ui:NavigateAction />
|
|
</interactions:EventTriggerBehavior>
|
|
</interactivity:Interaction.Behaviors>
|
|
</NavigationViewItem>
|