29 lines
1.4 KiB
Plaintext
29 lines
1.4 KiB
Plaintext
|
|
<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"
|
||
|
|
mc:Ignorable="d" Height="200" Width="350"
|
||
|
|
Template="{StaticResource DialogViewTemplate}">
|
||
|
|
<Grid Margin="10">
|
||
|
|
<Grid.RowDefinitions>
|
||
|
|
<RowDefinition/>
|
||
|
|
<RowDefinition />
|
||
|
|
</Grid.RowDefinitions>
|
||
|
|
<Grid.ColumnDefinitions>
|
||
|
|
<ColumnDefinition Width="70"/>
|
||
|
|
<ColumnDefinition/>
|
||
|
|
</Grid.ColumnDefinitions>
|
||
|
|
<TextBlock Text="传感器" VerticalAlignment="Center" Foreground="#888"/>
|
||
|
|
<TextBlock Text="时长" Grid.Row="1" VerticalAlignment="Center" Foreground="#888"/>
|
||
|
|
|
||
|
|
<TextBox Grid.Column="1" Height="28" Name="tb_name"
|
||
|
|
Text="{Binding SensorID,ValidatesOnNotifyDataErrors=True}"
|
||
|
|
Style="{StaticResource ValidationTextBoxStyle}"/>
|
||
|
|
<TextBox Grid.Row="1" Grid.Column="1" Margin="0,2" Height="28"
|
||
|
|
Text="{Binding Duration}"
|
||
|
|
Style="{StaticResource ValidationTextBoxStyle}"/>
|
||
|
|
</Grid>
|
||
|
|
</UserControl>
|