delphi combobox 输入时触发onchange为什么光标定位在文本框的最开始
combobox需实现输入时自动匹配功能,当输入时触发onchange事件,每次触发后光标为什么总是定位在开头的位置。...
combobox需实现输入时自动匹配功能,当输入时触发onchange事件,每次触发后光标为什么总是定位在开头的位置。
展开
2个回答
展开全部
试试写在onKeyUp里。我之前写过类似的。
给你个参考代码:
procedure TMainForm.ComboBox1KeyUp(Sender: TObject; var Key: Word; Shift: TShiftState);
var
i: integer;
last: string;
begin
if key = 8 then exit; //退格
if key = 17 then exit; //CTRL
if key = 16 then exit; //CTRL
if key = 18 then exit; //CTRL
if key = 20 then exit; //大小写
if key = 27 then exit; //esc
last:= ComboBox1.Text;
for i:=0 to ComboBox1.Items.Count - 1 do
begin
if Pos(last ,ComBoBox1.Items.Strings[i]) = 1 then
begin
ComboBox1.ItemIndex:= i;
Break;
end;
end;
end;
给你个参考代码:
procedure TMainForm.ComboBox1KeyUp(Sender: TObject; var Key: Word; Shift: TShiftState);
var
i: integer;
last: string;
begin
if key = 8 then exit; //退格
if key = 17 then exit; //CTRL
if key = 16 then exit; //CTRL
if key = 18 then exit; //CTRL
if key = 20 then exit; //大小写
if key = 27 then exit; //esc
last:= ComboBox1.Text;
for i:=0 to ComboBox1.Items.Count - 1 do
begin
if Pos(last ,ComBoBox1.Items.Strings[i]) = 1 then
begin
ComboBox1.ItemIndex:= i;
Break;
end;
end;
end;
参考资料: sername
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询