|
|
|
<Styles xmlns="https://github.com/avaloniaui"
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
|
|
xmlns:controls="using:StabilityMatrix.Avalonia.Controls"
|
|
|
|
xmlns:local="clr-namespace:StabilityMatrix.Avalonia"
|
|
|
|
xmlns:mocks="clr-namespace:StabilityMatrix.Avalonia.DesignData"
|
|
|
|
xmlns:vmInference="clr-namespace:StabilityMatrix.Avalonia.ViewModels.Inference"
|
|
|
|
xmlns:fluentIcons="clr-namespace:FluentIcons.FluentAvalonia;assembly=FluentIcons.FluentAvalonia"
|
|
|
|
xmlns:ui="clr-namespace:FluentAvalonia.UI.Controls;assembly=FluentAvalonia"
|
|
|
|
xmlns:modules="clr-namespace:StabilityMatrix.Avalonia.ViewModels.Inference.Modules"
|
|
|
|
xmlns:sg="clr-namespace:SpacedGridControl.Avalonia;assembly=SpacedGridControl.Avalonia"
|
|
|
|
x:DataType="vmInference:StackEditableCardViewModel">
|
|
|
|
|
|
|
|
<Design.PreviewWith>
|
|
|
|
<Grid Width="600" Height="800">
|
|
|
|
<controls:StackEditableCard
|
|
|
|
DataContext="{x:Static mocks:DesignData.StackEditableCardViewModel}"/>
|
|
|
|
</Grid>
|
|
|
|
</Design.PreviewWith>
|
|
|
|
|
|
|
|
<!-- Like StackCard but draggable items -->
|
|
|
|
<Style Selector="controls|StackEditableCard">
|
|
|
|
<Setter Property="Template">
|
|
|
|
<ControlTemplate>
|
|
|
|
<ScrollViewer>
|
|
|
|
<Grid RowDefinitions="Auto,*">
|
|
|
|
<controls:Card
|
|
|
|
Classes="transparent"
|
|
|
|
Margin="0,0,0,3"
|
|
|
|
Padding="0,4">
|
|
|
|
<sg:SpacedGrid ColumnDefinitions="Auto,*,Auto,Auto" ColumnSpacing="8">
|
|
|
|
<TextBlock Text="{Binding Title}" VerticalAlignment="Center"/>
|
|
|
|
<GridSplitter ShowsPreview="False" IsEnabled="False" MaxHeight="10" Grid.Column="1" />
|
|
|
|
<!-- Edit button -->
|
|
|
|
<ToggleButton Grid.Column="2"
|
|
|
|
Name="PART_EditButton"
|
|
|
|
VerticalAlignment="Bottom"
|
|
|
|
CornerRadius="4"
|
|
|
|
Padding="12,4"
|
|
|
|
IsEnabled="{Binding ElementName=PART_ListBox, Path=!!ItemCount}"
|
|
|
|
IsChecked="{Binding IsEditEnabled}">
|
|
|
|
<fluentIcons:SymbolIcon Symbol="Edit" />
|
|
|
|
</ToggleButton>
|
|
|
|
<!-- Add button -->
|
|
|
|
<Button Grid.Column="3"
|
|
|
|
Name="PART_AddButton"
|
|
|
|
VerticalAlignment="Bottom"
|
|
|
|
CornerRadius="4"
|
|
|
|
Padding="12,4" >
|
|
|
|
<fluentIcons:SymbolIcon Symbol="Add" IsFilled="True" />
|
|
|
|
</Button>
|
|
|
|
</sg:SpacedGrid>
|
|
|
|
|
|
|
|
</controls:Card>
|
|
|
|
|
|
|
|
<ListBox
|
|
|
|
x:Name="PART_ListBox"
|
|
|
|
Grid.Row="1"
|
|
|
|
Theme="{StaticResource DraggableListBoxTheme}"
|
|
|
|
ItemsSource="{Binding Cards}">
|
|
|
|
|
|
|
|
<ListBox.DataTemplates>
|
|
|
|
<local:ViewLocator/>
|
|
|
|
</ListBox.DataTemplates>
|
|
|
|
|
|
|
|
<!--<ListBox.Styles>
|
|
|
|
<Style Selector="ListBoxItem:not(:dragging)">
|
|
|
|
<Setter Property="Transitions">
|
|
|
|
<Setter.Value>
|
|
|
|
<Transitions>
|
|
|
|
<TransformOperationsTransition Property="RenderTransform" Duration="0:0:0.1" />
|
|
|
|
</Transitions>
|
|
|
|
</Setter.Value>
|
|
|
|
</Setter>
|
|
|
|
</Style>
|
|
|
|
</ListBox.Styles>-->
|
|
|
|
|
|
|
|
</ListBox>
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
|
|
|
|
</ScrollViewer>
|
|
|
|
</ControlTemplate>
|
|
|
|
</Setter>
|
|
|
|
|
|
|
|
<!--<Style Selector="^:editEnabled">
|
|
|
|
<Style Selector="^ /template/ Expander">
|
|
|
|
<Setter Property="IsEnabled" Value="False" />
|
|
|
|
<Setter Property="Background" Value="Magenta"/>
|
|
|
|
</Style>
|
|
|
|
<Style Selector="^ /template/ controls|DraggableListBox#PART_ListBox Expander">
|
|
|
|
<Setter Property="IsEnabled" Value="False" />
|
|
|
|
</Style>
|
|
|
|
</Style>-->
|
|
|
|
</Style>
|
|
|
|
</Styles>
|