|
|
|
@ -1,12 +1,13 @@
|
|
|
|
|
<Styles xmlns="https://github.com/avaloniaui" |
|
|
|
|
<Styles |
|
|
|
|
xmlns="https://github.com/avaloniaui" |
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
|
|
|
|
xmlns:controls="using:StabilityMatrix.Avalonia.Controls" |
|
|
|
|
xmlns:ui="clr-namespace:FluentAvalonia.UI.Controls;assembly=FluentAvalonia" |
|
|
|
|
xmlns:models="clr-namespace:StabilityMatrix.Core.Models;assembly=StabilityMatrix.Core" |
|
|
|
|
xmlns:lang="clr-namespace:StabilityMatrix.Avalonia.Languages" |
|
|
|
|
xmlns:vmInference="clr-namespace:StabilityMatrix.Avalonia.ViewModels.Inference" |
|
|
|
|
xmlns:sg="clr-namespace:SpacedGridControl.Avalonia;assembly=SpacedGridControl.Avalonia" |
|
|
|
|
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" |
|
|
|
|
x:DataType="vmInference:ControlNetCardViewModel"> |
|
|
|
|
<Design.PreviewWith> |
|
|
|
|
<StackPanel Width="350" Height="400"> |
|
|
|
@ -21,17 +22,16 @@
|
|
|
|
|
<controls:Card Padding="12"> |
|
|
|
|
<sg:SpacedGrid |
|
|
|
|
ColumnDefinitions="0.8*,*" |
|
|
|
|
RowDefinitions="Auto,Auto,Auto,Auto,Auto" |
|
|
|
|
ColumnSpacing="8" |
|
|
|
|
RowSpacing="4"> |
|
|
|
|
RowDefinitions="Auto,Auto,Auto,Auto,5,Auto" |
|
|
|
|
RowSpacing="6"> |
|
|
|
|
|
|
|
|
|
<!-- Image Select --> |
|
|
|
|
<controls:SelectImageCard |
|
|
|
|
DataContext="{Binding SelectImageCardViewModel}" |
|
|
|
|
Padding="6" |
|
|
|
|
FontSize="13" |
|
|
|
|
Grid.RowSpan="4" |
|
|
|
|
/> |
|
|
|
|
Padding="6" |
|
|
|
|
DataContext="{Binding SelectImageCardViewModel}" |
|
|
|
|
FontSize="13" /> |
|
|
|
|
|
|
|
|
|
<!-- TODO: Preprocessor Model --> |
|
|
|
|
<TextBlock |
|
|
|
@ -45,9 +45,8 @@
|
|
|
|
|
Grid.Row="1" |
|
|
|
|
Grid.Column="1" |
|
|
|
|
Margin="0,0,0,4" |
|
|
|
|
Theme="{StaticResource FAComboBoxHybridModelTheme}" |
|
|
|
|
ItemsSource="{Binding ClientManager.Models}" |
|
|
|
|
HorizontalAlignment="Stretch"/> |
|
|
|
|
HorizontalAlignment="Stretch" |
|
|
|
|
Theme="{StaticResource FAComboBoxHybridModelTheme}" /> |
|
|
|
|
|
|
|
|
|
<!-- ControlNet Model --> |
|
|
|
|
<TextBlock |
|
|
|
@ -60,31 +59,107 @@
|
|
|
|
|
<ui:FAComboBox |
|
|
|
|
Grid.Row="3" |
|
|
|
|
Grid.Column="1" |
|
|
|
|
Theme="{StaticResource FAComboBoxHybridModelTheme}" |
|
|
|
|
ItemsSource="{Binding ClientManager.Models}" |
|
|
|
|
HorizontalAlignment="Stretch"/> |
|
|
|
|
HorizontalAlignment="Stretch" |
|
|
|
|
ItemsSource="{Binding ClientManager.ControlNetModels}" |
|
|
|
|
SelectedItem="{Binding SelectedModel}" |
|
|
|
|
Theme="{StaticResource FAComboBoxHybridModelTheme}" /> |
|
|
|
|
|
|
|
|
|
<StackPanel |
|
|
|
|
Grid.Row="4" |
|
|
|
|
<sg:SpacedGrid |
|
|
|
|
RowDefinitions="Auto,Auto,Auto,Auto" |
|
|
|
|
ColumnDefinitions="*,Auto,Auto" |
|
|
|
|
Grid.Row="5" |
|
|
|
|
Grid.Column="0" |
|
|
|
|
Grid.ColumnSpan="2"> |
|
|
|
|
<!-- Strength --> |
|
|
|
|
<TextBlock |
|
|
|
|
Text="{x:Static lang:Resources.Label_Strength}" |
|
|
|
|
VerticalAlignment="Center" |
|
|
|
|
TextAlignment="Left" /> |
|
|
|
|
<ui:NumberBox |
|
|
|
|
Grid.Row="0" |
|
|
|
|
Grid.Column="1" |
|
|
|
|
Grid.ColumnSpan="2" |
|
|
|
|
HorizontalAlignment="Stretch" |
|
|
|
|
SpinButtonPlacementMode="Inline" |
|
|
|
|
Maximum="10" |
|
|
|
|
Minimum="0" |
|
|
|
|
SmallChange="0.01" |
|
|
|
|
SimpleNumberFormat="F2" |
|
|
|
|
Value="{Binding Strength}" /> |
|
|
|
|
<Slider |
|
|
|
|
BorderThickness="1"/> |
|
|
|
|
Grid.Row="1" |
|
|
|
|
Grid.Column="0" |
|
|
|
|
Grid.ColumnSpan="3" |
|
|
|
|
Margin="0,-4" |
|
|
|
|
Maximum="1" |
|
|
|
|
Minimum="0" |
|
|
|
|
TickFrequency="0.01" |
|
|
|
|
IsSnapToTickEnabled="True" |
|
|
|
|
SmallChange="0.01" |
|
|
|
|
Value="{Binding Strength}" /> |
|
|
|
|
|
|
|
|
|
<!-- Start end percent --> |
|
|
|
|
<TextBlock |
|
|
|
|
Grid.Row="2" |
|
|
|
|
Grid.Column="0" |
|
|
|
|
VerticalAlignment="Center" |
|
|
|
|
Text="{x:Static lang:Resources.Label_Steps}" |
|
|
|
|
TextAlignment="Left" /> |
|
|
|
|
<ui:RangeSlider |
|
|
|
|
|
|
|
|
|
<ui:NumberBox |
|
|
|
|
Grid.Row="2" |
|
|
|
|
Grid.Column="1" |
|
|
|
|
HorizontalAlignment="Stretch" |
|
|
|
|
Maximum="10" |
|
|
|
|
Minimum="0" |
|
|
|
|
Maximum="1" |
|
|
|
|
SmallChange="0.01" |
|
|
|
|
Value="{Binding StartPercent}" /> |
|
|
|
|
<ui:NumberBox |
|
|
|
|
Grid.Row="2" |
|
|
|
|
Grid.Column="2" |
|
|
|
|
HorizontalAlignment="Stretch" |
|
|
|
|
Maximum="10" |
|
|
|
|
Minimum="0" |
|
|
|
|
SmallChange="0.01" |
|
|
|
|
Value="{Binding EndPercent}" /> |
|
|
|
|
|
|
|
|
|
<!--<sg:SpacedGrid Grid.Row="2" |
|
|
|
|
Grid.Column="1" |
|
|
|
|
HorizontalAlignment="Right" |
|
|
|
|
ColumnDefinitions="*,*"> |
|
|
|
|
<ui:NumberBox |
|
|
|
|
HorizontalAlignment="Stretch" |
|
|
|
|
Maximum="10" |
|
|
|
|
Minimum="0" |
|
|
|
|
SmallChange="0.01" |
|
|
|
|
Value="{Binding StartPercent}" /> |
|
|
|
|
<ui:NumberBox |
|
|
|
|
Grid.Column="1" |
|
|
|
|
HorizontalAlignment="Stretch" |
|
|
|
|
Maximum="10" |
|
|
|
|
Minimum="0" |
|
|
|
|
SmallChange="0.01" |
|
|
|
|
Value="{Binding EndPercent}" /> |
|
|
|
|
</sg:SpacedGrid>--> |
|
|
|
|
|
|
|
|
|
<ui:RangeSlider |
|
|
|
|
Grid.Row="3" |
|
|
|
|
Grid.Column="0" |
|
|
|
|
Grid.ColumnSpan="3" |
|
|
|
|
BorderThickness="1" |
|
|
|
|
Maximum="1" |
|
|
|
|
Minimum="0" |
|
|
|
|
RangeEnd="{Binding EndPercent}" |
|
|
|
|
RangeStart="{Binding StartPercent}" |
|
|
|
|
StepFrequency="0.01" |
|
|
|
|
ToolTipStringFormat="P" /> |
|
|
|
|
</sg:SpacedGrid> |
|
|
|
|
|
|
|
|
|
<StackPanel |
|
|
|
|
Grid.Row="4" |
|
|
|
|
Grid.Column="0" |
|
|
|
|
Grid.ColumnSpan="2"> |
|
|
|
|
|
|
|
|
|
</StackPanel> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|