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.
49 lines
2.2 KiB
49 lines
2.2 KiB
8 months ago
|
<Styles
|
||
|
xmlns="https://github.com/avaloniaui"
|
||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||
|
xmlns:controls="using:StabilityMatrix.Avalonia.Controls"
|
||
|
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:converters="clr-namespace:StabilityMatrix.Avalonia.Converters"
|
||
|
xmlns:mocks="clr-namespace:StabilityMatrix.Avalonia.DesignData"
|
||
|
x:DataType="vmInference:LayerDiffuseCardViewModel">
|
||
|
<Design.PreviewWith>
|
||
|
<Panel Width="400" Height="200">
|
||
|
<StackPanel Width="300" VerticalAlignment="Center">
|
||
|
<controls:LayerDiffuseCard DataContext="{x:Static mocks:DesignData.LayerDiffuseCardViewModel}"/>
|
||
|
</StackPanel>
|
||
|
</Panel>
|
||
|
</Design.PreviewWith>
|
||
|
|
||
|
<Style Selector="controls|LayerDiffuseCard">
|
||
|
<Setter Property="HorizontalAlignment" Value="Stretch" />
|
||
|
<Setter Property="Template">
|
||
|
<ControlTemplate>
|
||
|
<controls:Card Padding="12">
|
||
|
<sg:SpacedGrid
|
||
|
ColumnDefinitions="Auto,*"
|
||
|
ColumnSpacing="8"
|
||
|
RowDefinitions="*,*,*,*"
|
||
|
RowSpacing="0">
|
||
|
<!-- Mode Selection -->
|
||
|
<TextBlock
|
||
|
Grid.Column="0"
|
||
|
VerticalAlignment="Center"
|
||
|
Text="Mode"
|
||
|
TextAlignment="Left" />
|
||
|
|
||
|
<ui:FAComboBox
|
||
|
Grid.Row="0"
|
||
|
Grid.Column="1"
|
||
|
HorizontalAlignment="Stretch"
|
||
|
DisplayMemberBinding="{Binding Converter={x:Static converters:EnumAttributeConverters.DisplayName}}"
|
||
|
ItemsSource="{Binding AvailableModes}"
|
||
|
SelectedItem="{Binding SelectedMode}" />
|
||
|
</sg:SpacedGrid>
|
||
|
</controls:Card>
|
||
|
</ControlTemplate>
|
||
|
</Setter>
|
||
|
</Style>
|
||
|
</Styles>
|