码迷,mamicode.com
首页 > 其他好文 > 详细

OnExit事件 OnChange事件

时间:2015-10-28 22:59:39      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:

procedure TSetParkForm.edtPrePosExit(Sender: TObject); // 焦点移开 或已操作
begin
  if (G2.RowCount > 0) and (G2.Selected >= 0) then begin // 判断G2是否有数据,且为选中状态
    G1.Enabled := False;
    G2.Enabled := False;
  end;
end;

procedure TSetParkForm.edtPrePosChange(Sender: TObject);    // Edit/Combox改变事件
begin
  if Sender = edtPrePos then begin
    if (G2.RowCount > 0) and (G2.Selected >= 0) then begin // 判断G2是否有数据,且为选中状态
      G2.Cells[2, G2.Selected] := edtPrePos.Text;
    end;
  end;

  if sender = combPNSize then begin
    if (G2.RowCount > 0) and (G2.Selected >= 0) then begin // 判断G2是否有数据,且为选中状态
      G2.Cells[4, G2.Selected] := RemoveSgin(combPNSize.Text);
    end;
  end;
end;

 

OnExit事件 OnChange事件

标签:

原文地址:http://www.cnblogs.com/studypanp/p/4918721.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!