mirror of
https://github.com/hawkeye-stan/msfs-popout-panel-manager.git
synced 2024-11-22 05:40:11 +00:00
19 lines
589 B
C#
19 lines
589 B
C#
|
using System.Windows;
|
|||
|
|
|||
|
namespace MSFSPopoutPanelManager.MainApp.CustomControl
|
|||
|
{
|
|||
|
public delegate void ValueChangedEventHandler(object sender, ValueChangedEventArgs e);
|
|||
|
|
|||
|
public class ValueChangedEventArgs : RoutedEventArgs
|
|||
|
{
|
|||
|
public ValueChangedEventArgs(RoutedEvent routedEvent, object source, double oldValue, double newValue)
|
|||
|
: base(routedEvent, source)
|
|||
|
{
|
|||
|
OldValue = oldValue;
|
|||
|
NewValue = newValue;
|
|||
|
}
|
|||
|
public double OldValue { get; private set; }
|
|||
|
public double NewValue { get; private set; }
|
|||
|
}
|
|||
|
}
|