是否有一个与 ItemIndex 等效的 TDBComboBox?

发布于 2024-07-08 09:54:37 字数 95 浏览 7 评论 0原文

在 TDBComboBox 的帮助文件条目中,它表示所选选项的文本将成为该字段的新值。 是否有任何类似的控件通过 ItemIndex 而不是文本? (例如,表示枚举类型。)

In the helpfile entry for TDBComboBox, it says that the text of the selected option becomes the new value for the field. Is there any similar control that goes by ItemIndex instead of text? (To represent an enumerated type, for example.)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

信仰 2024-07-15 09:54:37

尝试 TDBLookupComboBox。 查看 ListField、DataField 和 KeyField 属性。

Try the TDBLookupComboBox. Check out the ListField, DataField and KeyField properties.

梦里°也失望 2024-07-15 09:54:37

您可以用数字('0、'1'、'2'、...)填充 TDBComboBox 项目,但将 DBComboBox1.Style 设置为 csOwnerDrawFixed 并写入 OnItemDraw 事件。 像这样的事情:

procedure TForm1.DBComboBox1DrawItem(Control: TWinControl; Index: Integer;
  Rect: TRect; State: TOwnerDrawState);
begin
  with (Sender as TDBComboBox).Canvas do
  begin
    FillRect(Rect);
    TextRect(Rect, Rect.Left+1, Rect.Top+1, MyValueDescriptions[Index]);
  end;
end;

You can fill TDBComboBox items with numbers ('0, '1', '2', ...), but set DBComboBox1.Style to csOwnerDrawFixed and write OnItemDraw event. Something like this:

procedure TForm1.DBComboBox1DrawItem(Control: TWinControl; Index: Integer;
  Rect: TRect; State: TOwnerDrawState);
begin
  with (Sender as TDBComboBox).Canvas do
  begin
    FillRect(Rect);
    TextRect(Rect, Rect.Left+1, Rect.Top+1, MyValueDescriptions[Index]);
  end;
end;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文