using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace KGIS.Plugin.LayerProperty.Interface { public interface IUIPlugIn : IPlugIn { bool Visible { get; set; } System.Windows.Forms.DockStyle Dock { get; set; } bool Save(); void DiscardModify(); bool CanLeave(); void RefreshData(); } }