VeganMeatGuy / SatisfactorySmartHub

MIT License
1 stars 0 forks source link

feature: RecipeSelectionDialog Suchleiste #43

Open VeganMeatGuy opened 1 week ago

VeganMeatGuy commented 1 week ago

Idee:

<Grid>
    <Grid.ColumnDefinitions>
        <ColumnDefinition/>
        <ColumnDefinition/>
        <ColumnDefinition/>
    </Grid.ColumnDefinitions>
    <Grid.RowDefinitions>
        <RowDefinition />
        <RowDefinition />
    </Grid.RowDefinitions>
    <Label Grid.Row="0" Grid.Column="0" Content="Target Input"/>
    <ComboBox Grid.Row="1" Grid.Column="0"/>
    <Label Grid.Row="0" Grid.Column="1" Content="Target Product"/>
    <ComboBox Grid.Row="1" Grid.Column="1"/>
    <Label Grid.Row="0" Grid.Column="2" Content="Target Byproduct"/>
    <ComboBox Grid.Row="1" Grid.Column="2"/>
</Grid>
<StackPanel Orientation="Horizontal">
<Button Content="suche..." Style="{StaticResource StandardButton}" HorizontalAlignment="Left"/>
<Button Content="zeige alle..." Style="{StaticResource StandardButton}" HorizontalAlignment="Left"/>
</StackPanel>

image