alielie
2026-09-10 9ec80cafc23f5ee3278cacce3c9f86f4087b435a
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
using System.Windows;
using System.Windows.Forms;
 
namespace OpenTapEditor.UI
{
    /// <summary>
    /// FileSelector.xaml 的交互逻辑
    /// </summary>
    public partial class FileSelector : System.Windows.Controls.UserControl
    {
        public static readonly DependencyProperty FilePathProperty = DependencyProperty.Register(
                            "FilePath",
                            typeof(string),
                            typeof(FileSelector),
                            new FrameworkPropertyMetadata());
 
        public static readonly DependencyProperty ModeProperty = DependencyProperty.Register(
                            "Mode",
                            typeof(int),
                            typeof(FileSelector),
                            new FrameworkPropertyMetadata(0));
 
        public static readonly DependencyProperty FilterProperty = DependencyProperty.Register(
                            "Filter",
                            typeof(string),
                            typeof(FileSelector),
                            new FrameworkPropertyMetadata(null));
 
        public static readonly DependencyProperty ExtProperty = DependencyProperty.Register(
                            "Ext",
                            typeof(string),
                            typeof(FileSelector),
                            new FrameworkPropertyMetadata(null));
 
        public static readonly DependencyProperty IsFolderProperty = DependencyProperty.Register(
                            "IsFolder",
                            typeof(bool),
                            typeof(FileSelector),
                            new FrameworkPropertyMetadata(false));
 
        public string FilePath
        {
            get => (string)GetValue(FilePathProperty);
            set
            {
                SetValue(FilePathProperty, value);
            }
        }
 
        public int Mode
        {
            get => (int)GetValue(ModeProperty);
            set
            {
                SetValue(ModeProperty, value);
            }
        }
 
        public string Filter
        {
            get => (string)GetValue(FilterProperty);
            set
            {
                SetValue(FilterProperty, value);
            }
        }
 
        public string Ext
        {
            get => (string)GetValue(ExtProperty);
            set
            {
                SetValue(ExtProperty, value);
            }
        }
 
        public bool IsFolder
        {
            get => (bool)GetValue(IsFolderProperty);
            set
            {
                SetValue(IsFolderProperty, value);
            }
        }
 
        public FileSelector()
        {
            DataContext = this;
            InitializeComponent();
        }
 
        private void Button_Click(object sender, RoutedEventArgs e)
        {
            if (IsFolder)
            {
                FolderBrowserDialog fbd = new FolderBrowserDialog();
                fbd.Description = "请选择";
                if (fbd.ShowDialog() == DialogResult.OK)
                {
                    if (Mode == 1)
                    {
                        FilePath = "\"" + fbd.SelectedPath.Replace("\\", "\\\\") + "\"";
                    }
                    else
                    {
                        FilePath = fbd.SelectedPath;
                    }
                }
            }
            else
            {
                OpenFileDialog ofd = new OpenFileDialog
                {
                    Filter = this.Filter,
                    DefaultExt = this.Ext,
                    Multiselect = false
                };
                if (ofd.ShowDialog() == DialogResult.OK)
                {
                    if (Mode == 1)
                    {
                        FilePath = "\"" + ofd.FileName.Replace("\\", "\\\\") + "\"";
                    }
                    else
                    {
                        FilePath = ofd.FileName;
                    }
                }
            }
        }
    }
}