2024-03-27 13:49:16 +00:00
|
|
|
<UserControl x:Class="InSituLaboratory.Views.Pages.Dialogs.ModifySequentialView"
|
|
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
|
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
|
|
|
xmlns:local="clr-namespace:InSituLaboratory.Views.Pages.Dialogs"
|
2024-04-09 08:17:44 +00:00
|
|
|
xmlns:hc="https://handyorg.github.io/handycontrol"
|
2024-03-27 13:49:16 +00:00
|
|
|
mc:Ignorable="d" Height="200" Width="350"
|
|
|
|
|
Template="{StaticResource DialogViewTemplate}">
|
2024-04-09 08:17:44 +00:00
|
|
|
|
|
|
|
|
<UserControl.Resources>
|
|
|
|
|
<ResourceDictionary>
|
|
|
|
|
<ResourceDictionary.MergedDictionaries>
|
|
|
|
|
<ResourceDictionary Source="pack://application:,,,/HandyControl;component/Themes/SkinDefault.xaml"/>
|
|
|
|
|
<ResourceDictionary Source="pack://application:,,,/HandyControl;component/Themes/Theme.xaml"/>
|
|
|
|
|
</ResourceDictionary.MergedDictionaries>
|
|
|
|
|
</ResourceDictionary>
|
|
|
|
|
</UserControl.Resources>
|
2024-03-27 13:49:16 +00:00
|
|
|
<Grid Margin="10">
|
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
<RowDefinition/>
|
|
|
|
|
<RowDefinition />
|
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="70"/>
|
|
|
|
|
<ColumnDefinition/>
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
<TextBlock Text="传感器" VerticalAlignment="Center" Foreground="#888"/>
|
2024-03-30 00:17:37 +00:00
|
|
|
<TextBlock Text="循环时间" Grid.Row="1" VerticalAlignment="Center" Foreground="#888"/>
|
2024-03-27 13:49:16 +00:00
|
|
|
|
2024-04-09 08:17:44 +00:00
|
|
|
<!--<TextBox Grid.Column="1" Height="28" Name="tb_name"
|
2024-03-27 13:49:16 +00:00
|
|
|
Text="{Binding SensorID,ValidatesOnNotifyDataErrors=True}"
|
2024-04-09 08:17:44 +00:00
|
|
|
Style="{StaticResource ValidationTextBoxStyle}"/>-->
|
|
|
|
|
|
|
|
|
|
<hc:ComboBox Margin="0,11,0,11" Grid.Column="1" SelectedIndex="0" IsEditable="True" ItemsSource="{Binding DeviceNodes}" DisplayMemberPath="DeviceName" SelectedValuePath="DeviceName" SelectedValue="{Binding SensorID}" RenderTransformOrigin="0.498,0.193"/>
|
2024-03-27 13:49:16 +00:00
|
|
|
<TextBox Grid.Row="1" Grid.Column="1" Margin="0,2" Height="28"
|
2024-04-09 08:17:44 +00:00
|
|
|
Text="{Binding DurationTime}"
|
2024-03-27 13:49:16 +00:00
|
|
|
Style="{StaticResource ValidationTextBoxStyle}"/>
|
|
|
|
|
</Grid>
|
|
|
|
|
</UserControl>
|