You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
653 B
C#
23 lines
653 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows;
|
|
|
|
namespace HwControlLib.UtilitiesHelper
|
|
{
|
|
public class TextBoxValueChangedEventArgs<T> : RoutedPropertyChangedEventArgs<T>
|
|
{
|
|
public bool IsManual { get; private set; }
|
|
public bool IsBusy { get; private set; }
|
|
|
|
public TextBoxValueChangedEventArgs(T oldValue, T newValue, bool isManual, bool isBusy = false, RoutedEvent routedEvent = null)
|
|
: base(oldValue, newValue, routedEvent)
|
|
{
|
|
IsManual = isManual;
|
|
IsBusy = isBusy;
|
|
}
|
|
}
|
|
}
|