mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
Brushes - Added option for brushes to have a settings window Effects - Added option for effects to have a settings window
30 lines
2.0 KiB
XML
30 lines
2.0 KiB
XML
<controls:MaterialWindow x:Class="Artemis.UI.Screens.Module.ProfileEditor.LayerEffectSettingsWindowView"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:local="clr-namespace:Artemis.UI.Screens.Module.ProfileEditor"
|
|
xmlns:controls="clr-namespace:MaterialDesignExtensions.Controls;assembly=MaterialDesignExtensions"
|
|
xmlns:s="https://github.com/canton7/Stylet"
|
|
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
|
|
mc:Ignorable="d"
|
|
Title="Layer effect configuration"
|
|
Background="{DynamicResource MaterialDesignPaper}"
|
|
FontFamily="pack://application:,,,/MaterialDesignThemes.Wpf;component/Resources/Roboto/#Roboto"
|
|
UseLayoutRounding="True"
|
|
Width="800"
|
|
Height="800"
|
|
d:DesignHeight="800"
|
|
d:DesignWidth="800"
|
|
d:DataContext="{d:DesignInstance local:LayerEffectSettingsWindowViewModel}"
|
|
Icon="/Resources/Images/Logo/logo-512.png">
|
|
<DockPanel>
|
|
<controls:AppBar Type="Dense" Title="{Binding ActiveItem.LayerEffect.Descriptor.DisplayName}" DockPanel.Dock="Top" Margin="-18 0 0 0" ShowShadow="False">
|
|
<controls:AppBar.AppIcon>
|
|
<materialDesign:PackIcon Kind="{Binding ActiveItem.LayerEffect.Descriptor.Icon}" Width="20" Height="28" />
|
|
</controls:AppBar.AppIcon>
|
|
</controls:AppBar>
|
|
|
|
<ContentControl s:View.Model="{Binding ActiveItem}" />
|
|
</DockPanel>
|
|
</controls:MaterialWindow> |