chr
2026-04-08 53e656200368a983e563550e2cc1acbc6d86b729
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<Window x:Class="OpenTapEditor.AdapterSetting"
        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"
        Title="AdapterSetting" Height="450" Width="800">
    <Grid>
        <Grid.RowDefinitions>
            <RowDefinition Height="Auto"/>
            <RowDefinition Height="Auto"/>
            <RowDefinition/>
            <RowDefinition Height="Auto"/>
        </Grid.RowDefinitions>
        <Grid.ColumnDefinitions>
            <ColumnDefinition Width="Auto"/>
            <ColumnDefinition/>
        </Grid.ColumnDefinitions>
        <Label>名称</Label>
        <TextBox Grid.Column="1" Text="{Binding StepName}"/>
 
        <Label Grid.Row="1">分组</Label>
        <ComboBox IsEditable="True" Grid.Row="1" Grid.Column="1" Text="{Binding StepGroup}" ItemsSource="{Binding GroupSource}"/>
 
        <StackPanel Grid.Row="2" Grid.ColumnSpan="2" x:Name="view"/>
        <Button Grid.Row="3" Grid.ColumnSpan="2" Click="Button_Click">保存</Button>
    </Grid>
</Window>