1234567891011121314151617181920212223242526272829303132 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using Tofly.CoreUI.Control;
- using Tofly.Data.General;
- namespace Tofly.DataEditUI
- {
-
-
-
- public interface IAttributeEdit : IForm
- {
-
-
-
- IRow CurrentRow { get; }
-
-
-
-
- ITable CurrentTable { get; set; }
-
-
-
-
- object DataSource { get; set; }
- void CloseEdit();
- }
- }
|