mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
Device settings - Fix opening device properties
This commit is contained in:
parent
741eb6d919
commit
ef46577255
@ -2,6 +2,7 @@
|
|||||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||||
|
xmlns:controls="clr-namespace:FluentAvalonia.UI.Controls;assembly=FluentAvalonia"
|
||||||
mc:Ignorable="d" d:DesignWidth="1200" d:DesignHeight="800"
|
mc:Ignorable="d" d:DesignWidth="1200" d:DesignHeight="800"
|
||||||
x:Class="Artemis.UI.Avalonia.Screens.Debugger.DebugView"
|
x:Class="Artemis.UI.Avalonia.Screens.Debugger.DebugView"
|
||||||
Title="Artemis | Debugger"
|
Title="Artemis | Debugger"
|
||||||
@ -9,18 +10,9 @@
|
|||||||
Height="800"
|
Height="800"
|
||||||
ExtendClientAreaToDecorationsHint="True">
|
ExtendClientAreaToDecorationsHint="True">
|
||||||
|
|
||||||
<Grid RowDefinitions="Auto,*" ColumnDefinitions="Auto,*">
|
<controls:NavigationView x:Name="Navigation">
|
||||||
<TextBlock Text="{Binding RelativeSource={RelativeSource Mode=FindAncestor, AncestorType={x:Type Window}}, Path=Title}"
|
|
||||||
IsHitTestVisible="False"
|
</controls:NavigationView>
|
||||||
Margin="10" />
|
|
||||||
|
|
||||||
<Border Grid.Row="1" Grid.Column="0">
|
|
||||||
<TextBlock>Test</TextBlock>
|
|
||||||
</Border>
|
|
||||||
|
|
||||||
<Border Grid.Row="1" Grid.Column="1">
|
|
||||||
<TextBlock>Test</TextBlock>
|
|
||||||
</Border>
|
|
||||||
</Grid>
|
|
||||||
|
|
||||||
</Window>
|
</Window>
|
||||||
@ -49,7 +49,7 @@
|
|||||||
<Grid Grid.Row="2" Margin="10" ColumnDefinitions="25,*">
|
<Grid Grid.Row="2" Margin="10" ColumnDefinitions="25,*">
|
||||||
<CheckBox IsChecked="{Binding IsDeviceEnabled}" />
|
<CheckBox IsChecked="{Binding IsDeviceEnabled}" />
|
||||||
|
|
||||||
<controls:SplitButton Grid.Column="1" Content="Properties" Command="{Binding OpenSettings}" HorizontalAlignment="Right">
|
<controls:SplitButton Grid.Column="1" Content="Properties" Command="{Binding ViewProperties}" HorizontalAlignment="Right">
|
||||||
<controls:SplitButton.Flyout>
|
<controls:SplitButton.Flyout>
|
||||||
<MenuFlyout Placement="Bottom">
|
<MenuFlyout Placement="Bottom">
|
||||||
<MenuItem Header="Open plugin directory" Command="{Binding OpenPluginDirectory}">
|
<MenuItem Header="Open plugin directory" Command="{Binding OpenPluginDirectory}">
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user