<Window x:Class="OpenTapEditor.SettingWin"
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
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:local="clr-namespace:OpenTapEditor"
|
mc:Ignorable="d"
|
Closing="Window_Closing"
|
Title="SettingWin" Height="450" Width="800">
|
<Grid>
|
<Grid.RowDefinitions>
|
<RowDefinition Height="Auto"/>
|
<RowDefinition/>
|
</Grid.RowDefinitions>
|
<ComboBox/>
|
<TabControl Grid.Row="1">
|
<TabItem Header="Duts">
|
<Grid>
|
<Grid.RowDefinitions>
|
<RowDefinition/>
|
<RowDefinition Height="Auto"/>
|
</Grid.RowDefinitions>
|
<Grid.ColumnDefinitions>
|
<ColumnDefinition Width="100"/>
|
<ColumnDefinition/>
|
</Grid.ColumnDefinitions>
|
<ListView ItemsSource="{Binding Duts}" SelectionChanged="ListView_SelectionChanged" x:Name="dutsView"/>
|
<Border Grid.Column="1" Grid.RowSpan="2" x:Name="dutSettingPanel"></Border>
|
<StackPanel Grid.Row="1" Grid.Column="0">
|
<Button>+</Button>
|
<Button>-</Button>
|
</StackPanel>
|
</Grid>
|
</TabItem>
|
<TabItem Header="Instruments">
|
<Grid>
|
<Grid.RowDefinitions>
|
<RowDefinition/>
|
<RowDefinition Height="Auto"/>
|
</Grid.RowDefinitions>
|
<Grid.ColumnDefinitions>
|
<ColumnDefinition Width="100"/>
|
<ColumnDefinition/>
|
</Grid.ColumnDefinitions>
|
<ListView ItemsSource="{Binding Insts}" SelectionChanged="ListView_SelectionChanged" x:Name="instsView"/>
|
<Border Grid.Column="1" Grid.RowSpan="2" x:Name="instSettingPanel"></Border>
|
<StackPanel Grid.Row="1" Grid.Column="0">
|
<Button>+</Button>
|
<Button>-</Button>
|
</StackPanel>
|
</Grid>
|
</TabItem>
|
</TabControl>
|
</Grid>
|
</Window>
|