21 lines
467 B
C#
21 lines
467 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows;
|
|
|
|
namespace FasdDesktopUi.Basics.CustomEvents
|
|
{
|
|
internal class IndexEventArgs : RoutedEventArgs
|
|
{
|
|
public int OldValue { get; set; } = -1;
|
|
public int NewValue { get; set; } = -1;
|
|
|
|
public IndexEventArgs(RoutedEvent routedEvent) : base(routedEvent)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|