12345678910111213141516171819202122 |
- using System.Windows.Controls;
- namespace MECF.Framework.UI.Client.CenterViews.Editors
- {
- /// <summary>
- /// InputFileNameDialogView.xaml 的交互逻辑
- /// </summary>
- public partial class InputFileNameDialogView : UserControl
- {
- public InputFileNameDialogView()
- {
- InitializeComponent();
- }
- private void TextBox_TextChanged(object sender, TextChangedEventArgs e)
- {
- }
- }
- }
|