终端一体化运控平台
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 

13 wiersze
278 B

  1. using System.Windows;
  2. namespace BPASmartClient.MilkWithTea.Data;
  3. public class CancelRoutedEventArgs : RoutedEventArgs
  4. {
  5. public CancelRoutedEventArgs(RoutedEvent routedEvent, object source) : base(routedEvent, source)
  6. {
  7. }
  8. public bool Cancel { get; set; }
  9. }