| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 | 
							- using System;
 
- using System.Windows;
 
- using System.Windows.Controls;
 
- using System.Windows.Input;
 
- using Aitex.Core.Common.DeviceData;
 
- using Aitex.Core.RT.Log;
 
- namespace MECF.Framework.UI.Client.Ctrlib.UnitControls
 
- {
 
-     /// <summary>
 
-     /// InputFileNameDialogView.xaml 的交互逻辑
 
-     /// </summary>
 
-     public partial class AITRfSettingDialogView : UserControl
 
-     {
 
-         public AITRfSettingDialogView()
 
-         {
 
-             InitializeComponent();
 
-  
 
-  
 
-         }
 
-         private void InputTextBox_TextChanged(object sender, TextChangedEventArgs e)
 
-         {
 
-            
 
-             double input;
 
-             if (!double.TryParse(inputBox.Text, out input))
 
-                 (this.DataContext as AITRfSettingDialogViewModel).IsEnableOk = false;
 
-             else if (input < 0 || input > (this.DataContext as AITRfSettingDialogViewModel).DeviceData.ScalePower)
 
-                 (this.DataContext as AITRfSettingDialogViewModel).IsEnableOk = false;
 
-             else
 
-                 (this.DataContext as AITRfSettingDialogViewModel).IsEnableOk = true;
 
-             inputBox.Foreground = (this.DataContext as AITRfSettingDialogViewModel).IsEnableOk ?
 
-                 System.Windows.Media.Brushes.Black : System.Windows.Media.Brushes.Red;
 
-         }
 
-         private void OnEnterKeyIsHit(object sender, KeyEventArgs e)
 
-         {
 
-             try
 
-             {
 
-                 if (!(this.DataContext as AITRfSettingDialogViewModel).IsEnableOk) return;
 
-                 if (e.Key == Key.Return)
 
-                 {
 
-                     (this.DataContext as AITRfSettingDialogViewModel).SetPower();
 
-                 }
 
-             }
 
-             catch (Exception ex)
 
-             {
 
-                 LOG.Error(ex.Message);
 
-             }
 
-         }
 
-     }
 
- }
 
 
  |