You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace KGIS.Plugin.LayerProperty.EventHandler
|
|
|
|
|
{
|
|
|
|
|
public class CurrentObjectChangedEventArgs<T> : EventArgs
|
|
|
|
|
{
|
|
|
|
|
private T old;
|
|
|
|
|
private T selected;
|
|
|
|
|
public T Old
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return this.old;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
public T Selected
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return this.selected;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
public CurrentObjectChangedEventArgs(T old, T selected)
|
|
|
|
|
{
|
|
|
|
|
this.old = old;
|
|
|
|
|
this.selected = selected;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|