91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

在Delphi XE中如何使用TComboBox作為單元格編輯器

發布時間:2021-12-20 14:10:00 來源:億速云 閱讀:385 作者:柒染 欄目:互聯網科技

在Delphi XE中如何使用TComboBox作為單元格編輯器,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。

需要進行以下幾步:

  1. 創建StringGrid,在OnSelectCell事件中顯示ComboBox覆蓋單元格作為編輯器

  2. 創建ComboBox,將其Parent設置為StringGrid,并將StringGrid的行高設置為ComboBox的高度

  3. 處理ComboBox的OnChange事件,修改StringGrid單元格的值

  4. 處理ComboBox的OnExit事件,隱藏ComboBox

  5. 創建新單元,定義同名類TStringGrid繼承Vcl.Grids.TStringGrid并重寫其WMCommand方法

  6. 在使用StringGrid的單元頭部引用新單元,必須放在Vcl.Grids之后


以下是示例代碼:

單元1:

點擊(此處)折疊或打開

  1. unit Unit1;


  2. interface


  3. uses

  4.   Winapi.Windows, Winapi.Messages, System.SysUtils, System.Classes,

  5.   Vcl.Controls, Vcl.Forms, Vcl.StdCtrls, Vcl.Grids,

  6.   //必須將重定義的TStringGrid單元引用放置在Vcl.Grids之后

  7.   Unit2;


  8. type

  9.   TForm1 = class(TForm)

  10.     StringGrid1: TStringGrid;

  11.     procedure FormCreate(Sender: TObject);

  12.     procedure StringGrid1SelectCell(Sender: TObject; ACol, ARow: Integer;

  13.       var CanSelect: Boolean);

  14.   private

  15.     FComboBox: TComboBox;

  16.     procedure OnComboBoxChange(Sender: TObject);

  17.     procedure OnComboBoxExit(Sender: TObject);

  18.     { Private declarations }

  19.   public

  20.     { Public declarations }

  21.   end;


  22. var

  23.   Form1: TForm1;


  24. implementation


  25. {$R *.dfm}


  26. procedure TForm1.FormCreate(Sender: TObject);

  27. begin

  28.   //創建ComboBox,也可以直接拖拽到Form

  29.   //此處只需要設置Parent := StringGrid1

  30.   FComboBox := TComboBox.Create(StringGrid1);

  31.   FComboBox.Parent := StringGrid1;

  32.   FComboBox.Items.Add('Item1');

  33.   FComboBox.Items.Add('Item2');

  34.   FComboBox.OnChange := OnComboBoxChange;

  35.   FComboBox.OnExit := OnComboBoxExit;

  36.   FComboBox.Visible := False;

  37.   //ComboBox高度是固定不能改變的

  38.   //因此設置StringGrid1的行高與ComboBox高度一致

  39.   StringGrid1.DefaultRowHeight := FComboBox.Height;

  40. end;


  41. procedure TForm1.OnComboBoxChange(Sender: TObject);

  42. begin

  43.   StringGrid1.Cells[StringGrid1.Col, StringGrid1.Row] := FComboBox.Text;

  44. end;


  45. procedure TForm1.OnComboBoxExit(Sender: TObject);

  46. begin

  47.   FComboBox.Visible := False;

  48. end;


  49. procedure TForm1.StringGrid1SelectCell(Sender: TObject; ACol, ARow: Integer;

  50.   var CanSelect: Boolean);

  51. var

  52.   ARect: TRect;

  53. begin

  54.   //示例代碼僅在第二列中使用ComboBox作為編輯器

  55.   if CanSelect and (ACol = 1) then

  56.   begin

  57.     FComboBox.ItemIndex := FComboBox.Items.IndexOf

  58.       (StringGrid1.Cells[ACol, ARow]);

  59.     //使ComboBox顯示并覆蓋住選中單元格

  60.     ARect := StringGrid1.CellRect(ACol, ARow);

  61.     FComboBox.Left := ARect.Left;

  62.     FComboBox.Top := ARect.Top;

  63.     FComboBox.Width := ARect.Right - ARect.Left;

  64.     FComboBox.Visible := True;

  65.     FComboBox.SetFocus;

  66.   end;

  67. end;


  68. end.


單元2:

點擊(此處)折疊或打開

  1. unit Unit2;


  2. interface


  3. uses

  4.   Vcl.Grids, Winapi.Windows, Winapi.Messages, Vcl.Controls;


  5. type

  6.   TStringGrid = class(Vcl.Grids.TStringGrid)

  7.   private

  8.     procedure WMCommand(var AMessage: TWMCommand); message WM_COMMAND;

  9.   end;


  10. implementation


  11. { TStringGrid }


  12. procedure TStringGrid.WMCommand(var AMessage: TWMCommand);

  13. begin

  14.   //如果當前是StringGrid內置編輯框,調用父類方法

  15.   //否則向控件發送CN_COMMAND事件

  16.   if (InplaceEditor <> nil) and (AMessage.Ctl = InplaceEditor.Handle) then

  17.     inherited

  18.   else if AMessage.Ctl <> 0 then

  19.   begin

  20.     AMessage.Result := SendMessage(AMessage.Ctl, CN_COMMAND,

  21.       TMessage(AMessage).WParam, TMessage(AMessage).LParam);

  22.   end;

  23. end;


  24. end.


說明:

  1. TStringGrid只支持內置的輸入框做為單元格編輯器,所以只好放置一個ComboBox并覆蓋住要編輯的單元格

  2. TStringGrid祖先類TCustomGrid在WMCommand方法中限制了只處理InplaceEditor,所以需要重寫這個方法

也可以繼承TStringGrid而不是使用同名類,再全部動態創建,但是太麻煩而且基本沒什么區別

看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

桐庐县| 赤城县| 鸡东县| 大冶市| 莒南县| 临高县| 萨嘎县| 沂源县| 仙居县| 蓝田县| 隆回县| 长武县| 长宁区| 新丰县| 武山县| 万源市| 樟树市| 普兰县| 横山县| 礼泉县| 怀安县| 汉沽区| 阳城县| 收藏| 武乡县| 徐水县| 静海县| 集安市| 奉贤区| 新宾| 资阳市| 广昌县| 二手房| 弥勒县| 临猗县| 城固县| 洮南市| 通江县| 石景山区| 安陆市| 合作市|