Exemplo n.º 1
0
 protected virtual void OnCommittedData(CommittedDataEventArgs e)
 {
     if (fUpdateActions != null)
     {
         foreach (BaseUpdatedAction action in fUpdateActions)
         {
             action.DoAction(DataSet, MainResolver);
         }
     }
     EventUtil.ExecuteEventHandler(EventHandlers, EventConst.CommittedDataEvent, this, e);
 }
Exemplo n.º 2
0
 protected virtual void OnCommittedData(CommittedDataEventArgs e)
 {
     EventUtil.ExecuteEventHandler(EventHandlers, EventConst.CommittedDataEvent, this, e);
 }
Exemplo n.º 3
0
 protected virtual void OnApplyDatas(ApplyDataEventArgs e)
 {
     EventUtil.ExecuteEventHandler(EventHandlers, EventConst.ApplyDataEvent, this, e);
 }
Exemplo n.º 4
0
 protected virtual void OnFilledUpdateTables(FilledUpdateEventArgs e)
 {
     EventUtil.ExecuteEventHandler(EventHandlers, EventConst.FilledUpdateEvent, this, e);
 }
Exemplo n.º 5
0
        /// <summary>
        /// 触发设置字段信息事件
        /// </summary>
        /// <param name="e">字段信息参数</param>
        protected virtual void OnSetFieldInfo(FieldInfoEventArgs e)
        {
            TkDebug.AssertArgumentNull(e, "e", this);

            EventUtil.ExecuteEventHandler(fEventHandlers, SetFieldInfoEvent, this, e);
        }
Exemplo n.º 6
0
        protected virtual void OnUpdatedRow(UpdatingEventArgs e)
        {
            TkDebug.AssertArgumentNull(e, "e", this);

            EventUtil.ExecuteEventHandler(fEventHandlers, UpdatedRowEvent, this, e);
        }
Exemplo n.º 7
0
 protected virtual void OnPreparedPostObject(PreparePostObjectEventArgs e)
 {
     EventUtil.ExecuteEventHandler(EventHandlers, EventConst.PreparedPostEvent, this, e);
 }