You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
239 lines
13 KiB
239 lines
13 KiB
<Styles |
|
xmlns="https://github.com/avaloniaui" |
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
|
xmlns:controls="using:StabilityMatrix.Avalonia.Controls" |
|
xmlns:fluentIcons="clr-namespace:FluentIcons.Avalonia.Fluent;assembly=FluentIcons.Avalonia.Fluent" |
|
xmlns:input="clr-namespace:FluentAvalonia.UI.Input;assembly=FluentAvalonia" |
|
xmlns:lang="clr-namespace:StabilityMatrix.Avalonia.Languages" |
|
xmlns:mocks="clr-namespace:StabilityMatrix.Avalonia.DesignData" |
|
xmlns:models="clr-namespace:StabilityMatrix.Core.Models;assembly=StabilityMatrix.Core" |
|
xmlns:sg="clr-namespace:SpacedGridControl.Avalonia;assembly=SpacedGridControl.Avalonia" |
|
xmlns:ui="clr-namespace:FluentAvalonia.UI.Controls;assembly=FluentAvalonia" |
|
xmlns:vmInference="clr-namespace:StabilityMatrix.Avalonia.ViewModels.Inference" |
|
xmlns:markupExtensions="clr-namespace:StabilityMatrix.Avalonia.MarkupExtensions" |
|
x:DataType="vmInference:ControlNetCardViewModel"> |
|
<Design.PreviewWith> |
|
<StackPanel Width="400" Height="500"> |
|
<controls:ControlNetCard DataContext="{x:Static mocks:DesignData.ControlNetCardViewModel}" /> |
|
</StackPanel> |
|
</Design.PreviewWith> |
|
|
|
<Styles.Resources> |
|
<ToolTip x:Key="WipFeatureToolTip"> |
|
<StackPanel> |
|
<TextBlock Text="{x:Static lang:Resources.Label_WipFeature}" Theme="{DynamicResource BodyStrongTextBlockStyle}" /> |
|
<TextBlock Foreground="{DynamicResource TextFillColorTertiaryBrush}" Text="{x:Static lang:Resources.Label_WipFeatureDescription}" /> |
|
</StackPanel> |
|
</ToolTip> |
|
</Styles.Resources> |
|
|
|
<Style Selector="controls|ControlNetCard"> |
|
<!-- Set Defaults --> |
|
<Setter Property="Template"> |
|
<ControlTemplate> |
|
<controls:Card Padding="12"> |
|
<StackPanel Spacing="6"> |
|
<sg:SpacedGrid |
|
ColumnDefinitions="0.34*,0.65*" |
|
ColumnSpacing="8" |
|
RowDefinitions="Auto,Auto,Auto,Auto" |
|
RowSpacing="4"> |
|
|
|
<!-- Image Select --> |
|
<controls:SelectImageCard |
|
Grid.RowSpan="3" |
|
Padding="6" |
|
VerticalAlignment="Stretch" |
|
DataContext="{Binding SelectImageCardViewModel}" |
|
FontSize="13" /> |
|
|
|
<!-- Preprocessor Model --> |
|
<sg:SpacedGrid |
|
Grid.Row="0" |
|
Grid.Column="1" |
|
ColumnDefinitions="*,Auto"> |
|
<ui:FAComboBox |
|
Margin="0,0,0,4" |
|
SelectedItem="{Binding SelectedPreprocessor}" |
|
ItemsSource="{Binding ClientManager.Preprocessors}" |
|
DisplayMemberBinding="{Binding DisplayName}" |
|
HorizontalAlignment="Stretch" |
|
Header="{x:Static lang:Resources.Label_Preprocessor}"/> |
|
|
|
<Button |
|
ToolTip.Tip="{x:Static lang:Resources.Action_PreviewPreprocessor}" |
|
Padding="7" |
|
VerticalAlignment="Center" |
|
Margin="0,23,0,0" |
|
Command="{Binding PreviewPreprocessorCommand}" |
|
CommandParameter="{Binding SelectedPreprocessor}" |
|
Grid.Column="1"> |
|
<fluentIcons:SymbolIcon |
|
VerticalAlignment="Center" |
|
FontSize="15" |
|
IsFilled="True" |
|
Symbol="Play" /> |
|
</Button> |
|
</sg:SpacedGrid> |
|
|
|
|
|
<!-- ControlNet Model --> |
|
<ui:FAComboBox |
|
x:Name="PART_ModelComboBox" |
|
Grid.Row="1" |
|
Grid.Column="1" |
|
HorizontalAlignment="Stretch" |
|
Header="{x:Static lang:Resources.Label_Model}" |
|
ItemContainerTheme="{StaticResource FAComboBoxItemHybridModelTheme}" |
|
ItemsSource="{Binding ClientManager.ControlNetModels}" |
|
SelectedItem="{Binding SelectedModel}"> |
|
|
|
<ui:FAComboBox.Resources> |
|
<input:StandardUICommand x:Key="RemoteDownloadCommand" Command="{Binding RemoteDownloadCommand}" /> |
|
</ui:FAComboBox.Resources> |
|
|
|
<ui:FAComboBox.DataTemplates> |
|
<controls:HybridModelTemplateSelector> |
|
<DataTemplate x:Key="{x:Static models:HybridModelType.Downloadable}" DataType="models:HybridModelFile"> |
|
<Grid ColumnDefinitions="*,Auto"> |
|
<TextBlock Foreground="{DynamicResource ThemeGreyColor}" Text="{Binding ShortDisplayName}" /> |
|
<Button |
|
Grid.Column="1" |
|
Margin="8,0,0,0" |
|
Padding="0" |
|
Classes="transparent-full"> |
|
<fluentIcons:SymbolIcon |
|
VerticalAlignment="Center" |
|
FontSize="18" |
|
Foreground="{DynamicResource ThemeGreyColor}" |
|
IsFilled="True" |
|
Symbol="CloudArrowDown" /> |
|
</Button> |
|
</Grid> |
|
</DataTemplate> |
|
<DataTemplate x:Key="{x:Static models:HybridModelType.None}" DataType="models:HybridModelFile"> |
|
<TextBlock Text="{Binding ShortDisplayName}" /> |
|
</DataTemplate> |
|
</controls:HybridModelTemplateSelector> |
|
</ui:FAComboBox.DataTemplates> |
|
|
|
</ui:FAComboBox> |
|
|
|
<!-- Dimensions --> |
|
<Grid |
|
Grid.Row="2" |
|
Grid.Column="1" |
|
Margin="0,4,0,0" |
|
ColumnDefinitions="*,Auto,*" |
|
RowDefinitions="Auto,*"> |
|
<TextBlock |
|
Grid.Row="0" |
|
Grid.Column="0" |
|
Margin="0,0,4,4" |
|
Text="{x:Static lang:Resources.Label_Width}"/> |
|
<ui:NumberBox |
|
Grid.Row="1" |
|
Grid.Column="0" |
|
Margin="0,0,4,0" |
|
PlaceholderText="128" |
|
SmallChange="128" |
|
Value="{Binding Width}" |
|
ValidationMode="InvalidInputOverwritten" |
|
HorizontalAlignment="Stretch" |
|
SpinButtonPlacementMode="Compact"/> |
|
<TextBlock |
|
Grid.Row="0" |
|
Grid.Column="2" |
|
Margin="4,0,0,4" |
|
Text="{x:Static lang:Resources.Label_Height}"/> |
|
<ui:NumberBox |
|
Grid.Row="1" |
|
Grid.Column="2" |
|
Margin="4,0,0,0" |
|
PlaceholderText="128" |
|
SmallChange="128" |
|
Value="{Binding Height}" |
|
ValidationMode="InvalidInputOverwritten" |
|
HorizontalAlignment="Stretch" |
|
SpinButtonPlacementMode="Compact"/> |
|
</Grid> |
|
|
|
</sg:SpacedGrid> |
|
<sg:SpacedGrid |
|
ColumnDefinitions="*,Auto,Auto" |
|
RowDefinitions="Auto,Auto,Auto,Auto" |
|
RowSpacing="0"> |
|
<!-- Strength --> |
|
<TextBlock |
|
VerticalAlignment="Center" |
|
Text="{x:Static lang:Resources.Label_ControlWeight}" |
|
TextAlignment="Left" /> |
|
<ui:NumberBox |
|
Grid.Row="0" |
|
Grid.Column="1" |
|
Grid.ColumnSpan="2" |
|
HorizontalAlignment="Stretch" |
|
Maximum="10" |
|
Minimum="0" |
|
SimpleNumberFormat="F2" |
|
SmallChange="0.01" |
|
SpinButtonPlacementMode="Inline" |
|
Value="{Binding Strength}" /> |
|
<Slider |
|
Grid.Row="1" |
|
Grid.Column="0" |
|
Grid.ColumnSpan="3" |
|
Margin="0,-8,0,0" |
|
IsSnapToTickEnabled="True" |
|
Maximum="1" |
|
Minimum="0" |
|
SmallChange="0.01" |
|
TickFrequency="0.01" |
|
Value="{Binding Strength}" /> |
|
|
|
<!-- Start end percent --> |
|
<TextBlock |
|
Grid.Row="2" |
|
Grid.Column="0" |
|
VerticalAlignment="Center" |
|
Text="{x:Static lang:Resources.Label_ControlSteps}" |
|
TextAlignment="Left" /> |
|
|
|
<ui:NumberBox |
|
Grid.Row="2" |
|
Grid.Column="1" |
|
HorizontalAlignment="Stretch" |
|
Maximum="10" |
|
Minimum="0" |
|
SimpleNumberFormat="P0" |
|
SmallChange="0.01" |
|
Value="{Binding StartPercent}" /> |
|
<ui:NumberBox |
|
Grid.Row="2" |
|
Grid.Column="2" |
|
HorizontalAlignment="Stretch" |
|
Maximum="10" |
|
Minimum="0" |
|
SimpleNumberFormat="P0" |
|
SmallChange="0.01" |
|
Value="{Binding EndPercent}" /> |
|
|
|
<ui:RangeSlider |
|
Grid.Row="3" |
|
Grid.Column="0" |
|
Grid.ColumnSpan="3" |
|
Margin="0,4,0,0" |
|
Maximum="1" |
|
Minimum="0" |
|
RangeEnd="{Binding EndPercent}" |
|
RangeStart="{Binding StartPercent}" |
|
ShowValueToolTip="False" |
|
StepFrequency="0.01" |
|
ToolTipStringFormat="P" /> |
|
</sg:SpacedGrid> |
|
</StackPanel> |
|
</controls:Card> |
|
</ControlTemplate> |
|
</Setter> |
|
</Style> |
|
</Styles>
|
|
|