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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
using OpenTap;
using System.Windows;
using System.Windows.Controls;
 
namespace OpenTapEditor.UI
{
    /// <summary>
    /// FileSelector.xaml 的交互逻辑
    /// </summary>
    public partial class VariableTextBox : UserControl
    {
        public static readonly DependencyProperty ValueProperty = DependencyProperty.Register(
                            "Value",
                            typeof(string),
                            typeof(VariableTextBox),
                            new FrameworkPropertyMetadata());
 
        public static readonly DependencyProperty StepProperty = DependencyProperty.Register(
                            "Step",
                            typeof(ITestStep),
                            typeof(VariableTextBox),
                            new FrameworkPropertyMetadata());
 
        public ITestStep Step
        {
            get => (ITestStep)GetValue(StepProperty);
            set
            {
                SetValue(StepProperty, value);
            }
        }
 
        public string Value
        {
            get => (string)GetValue(ValueProperty);
            set
            {
                SetValue(ValueProperty, value);
            }
        }
 
        public VariableTextBox()
        {
            DataContext = this;
            InitializeComponent();
        }
 
        private void Button_Click(object sender, RoutedEventArgs e)
        {
            var win = new VariableSelector()
            {
                Owner = Window.GetWindow(this)
            };
            if (win.Open(Step.Root, new TestStepList()) == true)
            {
                Value = win.Result;
            }
        }
    }
}