using System; using System.Collections.Generic; using System.Text; namespace FineUI.Examples.master { public interface ISingleGridPage { /// /// 主表格实例 /// Grid Grid { get; } /// /// 重新绑定表格 /// void BindGrid(); /// /// 删除选中的行数据 /// void DeleteSelectedRows(); /// /// 获取新增地址 /// /// string GetNewUrl(); /// /// 获取编辑地址 /// /// string GetEditUrl(); } }