真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

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

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

創(chuàng)新互聯(lián)網(wǎng)站建設(shè)公司一直秉承“誠信做人,踏實做事”的原則,不欺瞞客戶,是我們最起碼的底線! 以服務(wù)為基礎(chǔ),以質(zhì)量求生存,以技術(shù)求發(fā)展,成交一個客戶多一個朋友!專注中小微企業(yè)官網(wǎng)定制,網(wǎng)站設(shè)計制作、成都網(wǎng)站設(shè)計,塑造企業(yè)網(wǎng)絡(luò)形象打造互聯(lián)網(wǎng)企業(yè)效應(yīng)。

需要進行以下幾步:

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

  2. 創(chuàng)建ComboBox,將其Parent設(shè)置為StringGrid,并將StringGrid的行高設(shè)置為ComboBox的高度

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

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

  5. 創(chuàng)建新單元,定義同名類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.   //創(chuàng)建ComboBox,也可以直接拖拽到Form

  29.   //此處只需要設(shè)置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.   //因此設(shè)置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.   //如果當(dāng)前是StringGrid內(nèi)置編輯框,調(diào)用父類方法

  15.   //否則向控件發(fā)送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只支持內(nèi)置的輸入框做為單元格編輯器,所以只好放置一個ComboBox并覆蓋住要編輯的單元格

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

也可以繼承TStringGrid而不是使用同名類,再全部動態(tài)創(chuàng)建,但是太麻煩而且基本沒什么區(qū)別

看完上述內(nèi)容是否對您有幫助呢?如果還想對相關(guān)知識有進一步的了解或閱讀更多相關(guān)文章,請關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝您對創(chuàng)新互聯(lián)的支持。


文章名稱:在DelphiXE中如何使用TComboBox作為單元格編輯器
鏈接URL:http://weahome.cn/article/pocjcg.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部