年度变更建库软件5.0版本
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.
 
 

23 lines
473 B

using System.Windows.Forms;
namespace KGIS.Plugin.LayerProperty.Interface
{
public interface IPropertyPage
{
event System.EventHandler EditorChanged;
bool IsPageDirty
{
get;
set;
}
DockStyle Dock
{
get;
set;
}
void InitUC(object property);
bool CanWrite2Prop();
void Write2Prop();
void SetDefaultValue(object value);
}
}