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.
38 lines
925 B
38 lines
925 B
using System; |
|
using System.Collections.Generic; |
|
using System.ComponentModel; |
|
using System.Linq; |
|
using System.Text; |
|
using System.Threading.Tasks; |
|
|
|
namespace KGIS.Plugin.LayerProperty.EventHandler |
|
{ |
|
public class ListChangedEventArgs<T> |
|
{ |
|
private ListChangedType listChangedType; |
|
private T changedObject; |
|
public ListChangedType ListChangedType |
|
{ |
|
get |
|
{ |
|
return this.listChangedType; |
|
} |
|
} |
|
public T ChangedObject |
|
{ |
|
get |
|
{ |
|
return this.changedObject; |
|
} |
|
set |
|
{ |
|
this.changedObject = value; |
|
} |
|
} |
|
public ListChangedEventArgs(ListChangedType listChangedType, T changedObject) |
|
{ |
|
this.listChangedType = listChangedType; |
|
this.changedObject = changedObject; |
|
} |
|
} |
|
}
|
|
|