作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有 StringGrid,并且希望其中只有 1
或 0
单元格。我尝试使用 StringGridGetEditMask
procedure TForm1.StringGrid1GetEditMask(Sender: TObject; ACol,
ARow: Integer; var Value: String);
begin
Value := '0';
if not (strToInt(Value) in [0,1]) then value := #0;
end;
但是我可以输入从 0 到 9 的所有数字。如何过滤除 0 和 1 之外的所有数字?
最佳答案
根据您的意图,您需要对 TStringGrid
进行子类化类并在此类子类中分配给就地编辑器,例如OnKeyPress
事件如该插入器类中所示:
type
TStringGrid = class(Grids.TStringGrid)
private
procedure InplaceEditKeyPress(Sender: TObject; var Key: Char);
protected
function CreateEditor: TInplaceEdit; override;
end;
implementation
{ TStringGrid }
function TStringGrid.CreateEditor: TInplaceEdit;
begin
Result := inherited CreateEditor;
TMaskEdit(Result).OnKeyPress := InplaceEditKeyPress;
end;
procedure TStringGrid.InplaceEditKeyPress(Sender: TObject; var Key: Char);
begin
if not (Key in [#8, '0', '1']) then
Key := #0;
end;
关于Delphi 二进制数掩码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15645792/
我是一名优秀的程序员,十分优秀!