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.
63 lines
1.1 KiB
63 lines
1.1 KiB
using KGIS.Plugin.LayerProperty.EventHandler; |
|
using System; |
|
using System.Collections.Generic; |
|
using System.Linq; |
|
using System.Text; |
|
using System.Threading.Tasks; |
|
|
|
namespace KGIS.Plugin.LayerProperty.Interface |
|
{ |
|
public interface ISchemeItem |
|
{ |
|
event VisibleChangedEventHandler VisibleChanged; |
|
event System.EventHandler ItemContentChanged; |
|
string Name |
|
{ |
|
get; |
|
set; |
|
} |
|
string Description |
|
{ |
|
get; |
|
set; |
|
} |
|
string Key |
|
{ |
|
get; |
|
set; |
|
} |
|
bool IsDirty |
|
{ |
|
get; |
|
} |
|
ISchemeItem Parent |
|
{ |
|
get; |
|
set; |
|
} |
|
ILayerScheme Scheme |
|
{ |
|
get; |
|
} |
|
int Order |
|
{ |
|
get; |
|
set; |
|
} |
|
bool Visible |
|
{ |
|
get; |
|
set; |
|
} |
|
string Icon |
|
{ |
|
get; |
|
set; |
|
} |
|
object Tag |
|
{ |
|
get; |
|
set; |
|
} |
|
} |
|
}
|
|
|