捐赠 | 广告 | 注册 | 发布 | 上传 | 关于我们    
  粤ICP备10103342号-1 DELPHI盒子 | 盒子文章 | 盒子问答悬赏 | 最新更新 | 盒子检索 | 下载中心 | 高级搜索    
  精品专区 | 繁體中文 | 奖励公告栏 | 直通车账号登陆 | 关闭GOOGLE广告 | 临时留言    
盒子资源分类
全部展开 - 全部合拢
TStringGrid调用ComboBox的演示例子
关键字:T2cccStringGrid ComboBox TInplaceEditList esEllipsis esPickList
来 自:原创
平 台:Win9x,Win2k/XP/NT,Win2003 下载所需:0 火柴
深浅度:初级 完成时间:2006/2/23
发布者:zizii 发布时间:2006/2/23
编辑器:BDS2006 语  种:简体中文
分 类:组件 下载浏览:10173/14997
加入到我的收藏
下载错误报错
登陆以后才能下载
 用户名:
 密 码:
自动登陆(30天有效)
图片如果打不开,说明流量不够了,请稍候下载……
TStringGrid调用ComboBox的演示例子,这个应该是比较简单有效的方法。

unit Unit1;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, Grids;

type
  T2cccStringGrid = class(TStringGrid)
  protected
    function CreateEditor: TInplaceEdit; override;
    function GetEditStyle(ACol, ARow: Longint): TEditStyle; override;
    procedure EditListGetItems(ACol, ARow: Integer; Items: TStrings);
    procedure EditButtonClick(Sender: TObject);
  end;
  TStringGrid = class(T2cccStringGrid);

  TForm1 = class(TForm)
    StringGrid1: TStringGrid;
    procedure FormCreate(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  Form1: TForm1;

implementation

{$R *.dfm}

function T2cccStringGrid.CreateEditor: TInplaceEdit;
begin
  Result := TInplaceEditList.Create(Self);
  (Result as TInplaceEditList).OnGetPickListitems := EditListGetItems;
  (Result as TInplaceEditList).OnEditButtonClick := EditButtonClick;
end;

function T2cccStringGrid.GetEditStyle(ACol, ARow: Integer): TEditStyle;
begin
  case ACol mod 2 of
    0: Result := esEllipsis;
    1: Result := esPickList;
  else
    Result := inherited GetEditStyle(ACol, ARow);
  end;
end;

procedure T2cccStringGrid.EditListGetItems(ACol, ARow: Integer; Items: TStrings);
begin
  case ACol mod 2 of
    0: Items.CommaText := '2ccc,delphibox,zizii';
    1: Items.CommaText := 'welcome,stringgrid,demo';
  end;
end;

procedure T2cccStringGrid.EditButtonClick(Sender: TObject);
begin
  Cells[Col, Row] := 'Hello 2ccc';
end;

procedure TForm1.FormCreate(Sender: TObject);
begin
  StringGrid1.Options := StringGrid1.Options + [goEditing];
  StringGrid1.DefaultRowHeight := 21;
end;

end.
Google
 
本站原创作品,未经作者许可,严禁任何方式转载;转载作品,如果侵犯了您的权益,请联系我们
龙脉加密锁 15元起 Grid++Report 报表 申请支付@网
 相关文章
没有相关文章
相关评论
共有评论7条
我要发表评论 查看全部评论
 
  DELPHI盒子版权所有 技术支持:深圳市麟瑞科技有限公司 1999-2024 V4.01 粤ICP备10103342号-1 更新RSS列表