Files
@ d6859ea7177f
Branch filter:
Location: ATITD-Tools/Desert-Paint-Codex/Views/EmbeddedWarningBox.axaml - annotation
d6859ea7177f
3.3 KiB
text/plain
Add some sanity checks on min/max concentration and min/max reagents in recipe generation. Also, clear out the search queue when generation has finished so the queue isn't loaded next time. This fixes the start/resume button state when entering the recipe generator after a prior run had finished.
40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 a8c7548cacbb a8c7548cacbb 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 a8c7548cacbb a8c7548cacbb a8c7548cacbb a8c7548cacbb a8c7548cacbb a8c7548cacbb 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 | <UserControl xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:view="clr-namespace:DesertPaintCodex.Views"
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
x:Class="DesertPaintCodex.Views.EmbeddedWarningBox">
<UserControl.Styles>
<Style Selector="view|EmbeddedWarningBox">
<Setter Property="Template">
<ControlTemplate>
<Border Name="PART_Border">
<StackPanel>
<TextBlock Name="PART_Title" Text="{TemplateBinding Title}"/>
<TextBlock Name="PART_Message" Text="{TemplateBinding Message}"/>
<TextBlock Name="PART_Message2" Text="{TemplateBinding Message2}"/>
<ContentPresenter Content="{TemplateBinding Content}"/>
</StackPanel>
</Border>
</ControlTemplate>
</Setter>
</Style>
<Style Selector="view|EmbeddedWarningBox /template/ Border#PART_Border">
<Setter Property="Background" Value="#E1AD56"/>
<Setter Property="CornerRadius" Value="3"/>
<Setter Property="Padding" Value="10"/>
</Style>
<Style Selector="view|EmbeddedWarningBox /template/ Border#PART_Border > StackPanel">
<Setter Property="Orientation" Value="Vertical"/>
<Setter Property="HorizontalAlignment" Value="Stretch"/>
<Setter Property="Spacing" Value="10"/>
</Style>
<Style Selector="view|EmbeddedWarningBox /template/ TextBlock">
<Setter Property="Foreground" Value="#000000"/>
</Style>
<Style Selector="view|EmbeddedWarningBox /template/ TextBlock#PART_Title">
<Setter Property="FontSize" Value="16"/>
<Setter Property="FontWeight" Value="Bold"/>
</Style>
<Style Selector="view|EmbeddedWarningBox /template/ TextBlock#PART_Message">
<Setter Property="TextWrapping" Value="Wrap"/>
</Style>
<Style Selector="view|EmbeddedWarningBox /template/ TextBlock#PART_Message2">
<Setter Property="FontSize" Value="12"/>
<Setter Property="TextWrapping" Value="Wrap"/>
</Style>
<Style Selector="view|EmbeddedWarningBox Button">
<Setter Property="Padding" Value="5"/>
<Setter Property="Background" Value="#5E443F"/>
</Style>
<Style Selector="view|EmbeddedWarningBox Button:pointerover">
<Setter Property="Background" Value="#8C594A"/>
</Style>
<Style Selector="view|EmbeddedWarningBox Button:pressed">
<Setter Property="Background" Value="#5E443F"/>
</Style>
<Style Selector="view|EmbeddedWarningBox Button > TextBlock">
<Setter Property="FontSize" Value="16"/>
<Setter Property="FontWeight" Value="Bold"/>
<Setter Property="Foreground" Value="#FFFFFF"/>
</Style>
</UserControl.Styles>
</UserControl>
|