| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- <UserControl
- x:Class="SHJX.Service.Shell.Views.Setting.HeatingSettingWindow"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:SettingLibrary="clr-namespace:SHJX.Service.Library.Views.SettingLibrary;assembly=SHJX.Service.Library"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:i="http://schemas.microsoft.com/xaml/behaviors"
- xmlns:local="clr-namespace:SHJX.Service.Shell.Views.Setting"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:prism="http://prismlibrary.com/"
- xmlns:pu="clr-namespace:Panuon.UI.Silver;assembly=Panuon.UI.Silver"
- d:DesignHeight="740"
- d:DesignWidth="800"
- prism:ViewModelLocator.AutoWireViewModel="True"
- mc:Ignorable="d">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="1.8*" />
- <RowDefinition Height="3*" />
- <RowDefinition Height="3*" />
- <RowDefinition Height="1*" />
- </Grid.RowDefinitions>
- <Grid Grid.Row="0">
- <GroupBox
- Grid.Row="1"
- Width="700"
- Height="100"
- Margin="0,5,0,5"
- HorizontalAlignment="Center"
- VerticalAlignment="Center"
- pu:GroupBoxHelper.CornerRadius="8"
- pu:GroupBoxHelper.IsSplitLineVisible="True"
- pu:GroupBoxHelper.ShadowColor="LightGray"
- Header="加热设置">
- <StackPanel Orientation="Horizontal">
- <Label
- HorizontalAlignment="Center"
- VerticalAlignment="Center"
- Content="消解加热温度:" />
- <TextBox
- Width="120"
- Height="30"
- pu:TextBoxHelper.CornerRadius="10"
- pu:TextBoxHelper.FocusedBorderBrush="#B5B5B5"
- pu:TextBoxHelper.FocusedShadowColor="#B5B5B5"
- Cursor="IBeam"
- Text="{Binding DissolveTemperatureValue}">
- <i:Interaction.Triggers>
- <i:EventTrigger EventName="TextChanged">
- <i:InvokeCommandAction Command="{Binding TemperatureValueChangedCommand}" />
- </i:EventTrigger>
- </i:Interaction.Triggers>
- </TextBox>
- <Label
- HorizontalAlignment="Center"
- VerticalAlignment="Center"
- Content="滴定加热温度:" />
- <TextBox
- Width="120"
- Height="30"
- pu:TextBoxHelper.CornerRadius="10"
- pu:TextBoxHelper.FocusedBorderBrush="#B5B5B5"
- pu:TextBoxHelper.FocusedShadowColor="#B5B5B5"
- Cursor="IBeam"
- Text="{Binding TitrationTemperatureValue}">
- <i:Interaction.Triggers>
- <i:EventTrigger EventName="TextChanged">
- <i:InvokeCommandAction Command="{Binding TemperatureValueChangedCommand}" />
- </i:EventTrigger>
- </i:Interaction.Triggers>
- </TextBox>
- <Label
- HorizontalAlignment="Center"
- VerticalAlignment="Center"
- Content="程序重启后生效此更改"
- FontSize="12"
- FontWeight="Bold"
- Foreground="Red"
- Opacity="0.7"
- Visibility="{Binding TemperatureValueChangedTextVisibility}" />
- </StackPanel>
- </GroupBox>
- </Grid>
- <Grid Grid.Row="1">
- <SettingLibrary:GroupDataGridControl
- DataGridHeight="180"
- DataGridWidth="680"
- GroupBoxHeight="220"
- GroupBoxWidth="700"
- HeaderValue="PID"
- ItemSourceValue="{Binding Pids}" />
- </Grid>
- <Grid Grid.Row="2">
- <SettingLibrary:GroupDataGridControl
- DataGridHeight="180"
- DataGridWidth="680"
- GroupBoxHeight="220"
- GroupBoxWidth="700"
- HeaderValue="操作时间"
- ItemSourceValue="{Binding ExecuteTimes}" Margin="0,0,0,2" />
- </Grid>
- </Grid>
- </UserControl>
|