| 12345678910111213141516171819 |
- using System.Windows;
- namespace SHJX.Service.Library.Views
- {
- /// <summary>
- /// ModeSetting.xaml 的交互逻辑
- /// </summary>
- public partial class ModeSetting : Window
- {
- public ModeSetting(string opKey)
- {
- Owner = Application.Current.MainWindow;
- InitializeComponent();
- DetailBody.Tag = opKey;
- txt_ModeDetail.Focus();
- txt_ModeDetail.SelectionStart = txt_ModeDetail.Text.Length;
- }
- }
- }
|