TValueListEditor - 如何验证输入?

发布于 2025-01-10 08:01:21 字数 100 浏览 2 评论 0原文

我有一个 TValueListEditor 并且想要验证输入。例如,将所有空格替换为下划线。

怎么做呢?我认为 OnSetEditText 可能不错,但我无法更改那里的值。

I have a TValueListEditor and want to validate input. For example replace all spaces to underscores.

How to do that? I thought OnSetEditText might be good but I can't change Value there.

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

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

发布评论

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

评论(1

感悟人生的甜 2025-01-17 08:01:21

这似乎对我有用

procedure TForm1.ValueListEditor1GetEditText(Sender: TObject; ACol,
  ARow: Integer; var Value: string);
begin
  CurrentRow := ARow;
end;

procedure TForm1.ValueListEditor1KeyDown(Sender: TObject; var Key: Word;
  Shift: TShiftState);
begin
  if CurrentRow <> 3 then Exit;

  if Key = 32 then Key := 0;
end;   

This seems to work for me

procedure TForm1.ValueListEditor1GetEditText(Sender: TObject; ACol,
  ARow: Integer; var Value: string);
begin
  CurrentRow := ARow;
end;

procedure TForm1.ValueListEditor1KeyDown(Sender: TObject; var Key: Word;
  Shift: TShiftState);
begin
  if CurrentRow <> 3 then Exit;

  if Key = 32 then Key := 0;
end;   
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文