zoukankan      html  css  js  c++  java
  • 清除面板上所有控件的值

    procedure Pub_ClearOnePanCondition(APan: TWinControl);
    var
      intI: integer;
      PanTemp: TScrollBox;
    begin
      for intI := 0 to APan.ControlCount - 1 do
      begin
        if (APan.Controls[intI] is TScrollBox) then
        begin
          PanTemp := TScrollBox(APan.Controls[intI]);
          Pub_ClearOnePanCondition(PanTemp);
        end;
    
        if (APan.Controls[intI] is TPanel) then
          Pub_ClearOnePanCondition(TPanel(APan.Controls[intI]));
    
        if (APan.Controls[intI] is TCustomEdit) then TCustomEdit(APan.Controls[intI]).Text := '';
    
        if (APan.Controls[intI] is TCheckBox) then TCheckBox(APan.Controls[intI]).Checked := False;
        if (APan.Controls[intI] is TRzCheckBox) then TRzCheckBox(APan.Controls[intI]).Checked := False;
        if (APan.Controls[intI] is TComboBox) then
        begin
          if TComboBox(APan.Controls[intI]).Style = csDropDownList then
            TComboBox(APan.Controls[intI]).ItemIndex := -1
          else
          begin
            TComboBox(APan.Controls[intI]).ItemIndex := -1;
            TComboBox(APan.Controls[intI]).Text := '';
          end;
        end;
        if (APan.Controls[intI] is TRzComboBox) then
        begin
          if TRzComboBox(APan.Controls[intI]).Style = csDropDownList then
            TRzComboBox(APan.Controls[intI]).ItemIndex := -1
          else
          begin
            TRzComboBox(APan.Controls[intI]).ItemIndex := -1;
            TRzComboBox(APan.Controls[intI]).Text := '';
          end;
        end;
        if (APan.Controls[intI] is TDateTimePicker) then TDateTimePicker(
          APan.Controls[intI]).Checked := False;
        if (APan.Controls[intI] is TRZDateTimePicker) then TRZDateTimePicker(
          APan.Controls[intI]).Checked := False;
        if (APan.Controls[intI] is TRZDateTimeEdit) then TRZDateTimeEdit(
          APan.Controls[intI]).Clear;
    
        if (APan.Controls[intI] is TRadioGroup) then
        begin
          if TRadioGroup(APan.Controls[intI]).Items.Count > 0 then
          begin
            if TRadioGroup(APan.Controls[intI]).Tag > 0 then
              TRadioGroup(APan.Controls[intI]).ItemIndex := TRadioGroup(APan.Controls[intI]).Items.Count - 1
            else TRadioGroup(APan.Controls[intI]).ItemIndex := 0;
          end;
        end;
      end;
    end;
    

      

  • 相关阅读:
    JavaScript实现继承的几种方式总结一
    MyISAM key 压缩
    Visual Studio2010英文版安装中文帮助文档
    回忆我是怎样走上程序之路的(上)起因
    hdu2054 A==B
    顺序表的增删排序
    hdu2145 zz's Mysterious Present
    hdu 2141 Can you find it?
    hdu1162 Eddy's picture
    hdu1142 A Walk Through the Forest
  • 原文地址:https://www.cnblogs.com/rogge7/p/4498667.html
Copyright © 2011-2022 走看看