Files
UVtools/UVtools.WPF/Windows/MissingInformationWindow.axaml
T
Tiago Conceição 57f077f444 v3.6.0
- **File formats:**
   - (Add) OSF (Vlare Open File Format)
   - (Fix) CTB Encrypted: Bottom Retract Height for TSMC was constraining incorrectly with the normal total retract height
   - (Fix) CWS: Only issue `;<Slice>` command when the exposure is about to happen (#514)
- **GCode:**
   - (Add) Command `CommandWaitSyncDelay` for movement wait sync delay instead of depending on G4 wait command
   - (Fix) Wrong parsing and set of wait times when using a wait after lift / wait before retract
- (Improvement) Auto update: Make sure the download url exists before attempt the download, if not, instead it will prompt for manual download and update
- (Improvement) MacOS: Remove `com.apple.quarantine` flag from the auto downloaded files
- (Upgrade) .NET from 6.0.7 to 6.0.8
- (Upgrade) AvaloniaUI from 0.10.17 to 0.10.18
2022-08-17 21:23:51 +01:00

103 lines
4.4 KiB
XML

<uc:WindowEx 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:uc="clr-namespace:UVtools.WPF.Controls"
mc:Ignorable="d" d:DesignWidth="500" d:DesignHeight="450"
x:Class="UVtools.WPF.Windows.MissingInformationWindow"
CanResize="False"
SizeToContent="Height"
WindowStartupLocation="CenterOwner"
Width="500"
Icon="/Assets/Icons/UVtools.ico"
Title="Missing information on the file">
<StackPanel Orientation="Vertical" Spacing="10">
<Border Classes="Header">
<TextBox Classes="TransparentReadOnly"
Text="There are crucial information missing on this file in order to UVtools work properly and/or provide the correct information.
&#x0a;Fill in the missing information only if you know the correct values, otherwise leave it unchanged if unsure.
&#x0a;In most cases the missing information is not required by the printer.
&#x0a;Note: Some fields may rebuild the layers information."/>
</Border>
<Border Margin="20,10,20,0">
<Grid RowDefinitions="Auto,10,Auto,10,Auto"
ColumnDefinitions="Auto,10,220,10,Auto">
<TextBlock Grid.Row="0" Grid.Column="0"
VerticalAlignment="Center"
IsVisible="{Binding LayerHeightIsVisible}"
Text="Layer height:"/>
<NumericUpDown Grid.Row="0" Grid.Column="2"
Classes="ValueLabel ValueLabel_mm"
IsVisible="{Binding LayerHeightIsVisible}"
Minimum="0"
Maximum="0.200"
Increment="0.01"
FormatString="F3"
Value="{Binding LayerHeight}"/>
<TextBlock Grid.Row="0" Grid.Column="4"
VerticalAlignment="Center"
IsVisible="{Binding LayerHeightIsVisible}"
Text="(Critical)"/>
<TextBlock Grid.Row="2" Grid.Column="0"
VerticalAlignment="Center"
IsVisible="{Binding DisplayWidthIsVisible}"
Text="Display width:"/>
<NumericUpDown Grid.Row="2" Grid.Column="2"
Classes="ValueLabel ValueLabel_mm"
IsVisible="{Binding DisplayWidthIsVisible}"
Minimum="0"
Maximum="10000"
Increment="10"
Value="{Binding DisplayWidth}"/>
<TextBlock Grid.Row="2" Grid.Column="4"
VerticalAlignment="Center"
IsVisible="{Binding DisplayWidthIsVisible}"
Text="(Regular)"/>
<TextBlock Grid.Row="4" Grid.Column="0"
VerticalAlignment="Center"
IsVisible="{Binding DisplayHeightIsVisible}"
Text="Display height:"/>
<NumericUpDown Grid.Row="4" Grid.Column="2"
Classes="ValueLabel ValueLabel_mm"
IsVisible="{Binding DisplayHeightIsVisible}"
Minimum="0"
Maximum="10000"
Increment="10"
Value="{Binding DisplayHeight}"/>
<TextBlock Grid.Row="4" Grid.Column="4"
VerticalAlignment="Center"
IsVisible="{Binding DisplayHeightIsVisible}"
Text="(Regular)"/>
</Grid>
</Border>
<Border Classes="FooterActions">
<StackPanel Orientation="Horizontal" Spacing="10" HorizontalAlignment="Right">
<uc:ButtonWithIcon Padding="10"
IsDefault="True"
Icon="fa-solid fa-check"
Text="Apply"
Command="{Binding Apply}"/>
<uc:ButtonWithIcon Padding="10"
IsCancel="True"
Icon="fa-solid fa-sign-out-alt"
Text="Cancel"
Command="{Binding Close}"/>
</StackPanel>
</Border>
</StackPanel>
</uc:WindowEx>