IpAddressControl.xaml.cs 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. using System.Windows;
  2. using System.Windows.Controls;
  3. using System.Windows.Input;
  4. namespace WpfControlLibrary.IpAddress
  5. {
  6. /// <summary>
  7. /// IpAddressControl.xaml 的交互逻辑
  8. /// </summary>
  9. public partial class IpAddressControl : UserControl
  10. {
  11. public IpAddressControl()
  12. {
  13. InitializeComponent();
  14. DataObject.AddPastingHandler(part1, TextBox_Pasting);
  15. }
  16. private void TextBox_Pasting(object sender, DataObjectPastingEventArgs e)
  17. {
  18. var vm = this.DataContext as IpAddressViewModel;
  19. if ( e.DataObject.GetDataPresent(typeof(String)) )
  20. {
  21. String pastingText = (String)e.DataObject.GetData(typeof(String));
  22. vm.SetAddress(pastingText);
  23. part1.Focus();
  24. e.CancelCommand();
  25. }
  26. }
  27. private void Part4_KeyDown(object sender, System.Windows.Input.KeyEventArgs e)
  28. {
  29. if ( e.Key == Key.Back && part4.Text == "" )
  30. {
  31. part3.CaretIndex = part3.Text.Length;
  32. part3.Focus();
  33. }
  34. if ( e.Key == Key.Left && part4.CaretIndex == 0 )
  35. {
  36. part3.Focus();
  37. e.Handled = true;
  38. }
  39. if ( e.KeyboardDevice.Modifiers.HasFlag(ModifierKeys.Control) && e.Key == Key.C )
  40. {
  41. if ( part4.SelectionLength == 0 )
  42. {
  43. var vm = this.DataContext as IpAddressViewModel;
  44. Clipboard.SetText(vm.AddressText);
  45. }
  46. }
  47. }
  48. private void Part2_KeyDown(object sender, System.Windows.Input.KeyEventArgs e)
  49. {
  50. if ( e.Key == Key.Back && part2.Text == "" )
  51. {
  52. part1.CaretIndex = part1.Text.Length;
  53. part1.Focus();
  54. }
  55. if ( e.Key == Key.Right && part2.CaretIndex == part2.Text.Length )
  56. {
  57. part3.Focus();
  58. e.Handled = true;
  59. }
  60. if ( e.Key == Key.Left && part2.CaretIndex == 0 )
  61. {
  62. part1.Focus();
  63. e.Handled = true;
  64. }
  65. if ( e.KeyboardDevice.Modifiers.HasFlag(ModifierKeys.Control) && e.Key == Key.C )
  66. {
  67. if ( part2.SelectionLength == 0 )
  68. {
  69. var vm = this.DataContext as IpAddressViewModel;
  70. Clipboard.SetText(vm.AddressText);
  71. }
  72. }
  73. }
  74. private void Part3_KeyDown(object sender, System.Windows.Input.KeyEventArgs e)
  75. {
  76. if ( e.Key == Key.Back && part3.Text == "" )
  77. {
  78. part2.CaretIndex = part2.Text.Length;
  79. part2.Focus();
  80. }
  81. if ( e.Key == Key.Right && part3.CaretIndex == part3.Text.Length )
  82. {
  83. part4.Focus();
  84. e.Handled = true;
  85. }
  86. if ( e.Key == Key.Left && part3.CaretIndex == 0 )
  87. {
  88. part2.Focus();
  89. e.Handled = true;
  90. }
  91. if ( e.KeyboardDevice.Modifiers.HasFlag(ModifierKeys.Control) && e.Key == Key.C )
  92. {
  93. if ( part3.SelectionLength == 0 )
  94. {
  95. var vm = this.DataContext as IpAddressViewModel;
  96. Clipboard.SetText(vm.AddressText);
  97. }
  98. }
  99. }
  100. private void Part1_PreviewKeyDown(object sender, KeyEventArgs e)
  101. {
  102. if ( e.Key == Key.Right && part1.CaretIndex == part1.Text.Length )
  103. {
  104. part2.Focus();
  105. e.Handled = true;
  106. }
  107. if ( e.KeyboardDevice.Modifiers.HasFlag(ModifierKeys.Control) && e.Key == Key.C )
  108. {
  109. if ( part1.SelectionLength == 0 )
  110. {
  111. var vm = this.DataContext as IpAddressViewModel;
  112. Clipboard.SetText(vm.AddressText);
  113. }
  114. }
  115. }
  116. }
  117. }