- add: config invoke

This commit is contained in:
2025-06-19 21:12:42 +03:00
parent 73682acbab
commit 10d317c867
12 changed files with 308 additions and 96 deletions

View File

@@ -1,4 +1,5 @@
<Styles xmlns="https://github.com/avaloniaui" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Styles xmlns="https://github.com/avaloniaui" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:pages="clr-namespace:Nebula.Launcher.ViewModels.Pages">
<Style Selector="Window">
<Setter Property="Background" Value="{StaticResource DefaultBackground}" />
</Style>
@@ -85,4 +86,41 @@
<Setter Property="Background" Value="Transparent" />
<Setter Property="BorderThickness" Value="0,0,0,1" />
</Style>
<Style Selector="pages|ComplexUnitConfigControl.ConfigBorder">
<Setter Property="Background" Value="#333333" />
<Setter Property="BorderThickness" Value="2,2,2,2"/>
<Setter Property="BorderBrush" Value="Azure"/>
</Style>
<Style Selector="pages|ArrayUnitConfigControl.ConfigBorder">
<Setter Property="Background" Value="#333333" />
<Setter Property="BorderThickness" Value="2,2,2,2"/>
<Setter Property="BorderBrush" Value="Azure"/>
</Style>
<Style Selector="pages|StringUnitConfigControl.ConfigBorder">
<Setter Property="Background" Value="#333333" />
<Setter Property="BorderThickness" Value="2,2,2,2"/>
<Setter Property="BorderBrush" Value="Azure"/>
</Style>
<Style Selector="pages|IntUnitConfigControl.ConfigBorder">
<Setter Property="Background" Value="#333333" />
<Setter Property="BorderThickness" Value="2,2,2,2"/>
<Setter Property="BorderBrush" Value="Azure"/>
</Style>
<Style Selector="pages|FloatUnitConfigControl.ConfigBorder">
<Setter Property="Background" Value="#333333" />
<Setter Property="BorderThickness" Value="2,2,2,2"/>
<Setter Property="BorderBrush" Value="Azure"/>
</Style>
<Style Selector="Button.ConfigBorder /template/ ContentPresenter">
<Setter Property="Background" Value="#333333" />
<Setter Property="BorderThickness" Value="2,2,2,2"/>
<Setter Property="BorderBrush" Value="Azure"/>
<Setter Property="CornerRadius" Value="0"/>
</Style>
</Styles>