delphi 如何获取listbox里的单个内容
我用数组将内容显示在listbox上,但是我想修改listbox里面的内容,而且还要将里面的内容分开显示,修改之后怎样保存呢?...
我用数组将内容显示在listbox上,但是我想修改listbox里面的内容,而且还要将里面的内容分开显示,修改之后怎样保存呢?
展开
2个回答
2013-08-31
展开全部
....TForm1 = class(TForm)
Edit1: TEdit;//加入一文本框edit1....var
Form1: TForm1; index:integer;//加入这句....procedure TForm1.ListBox1Click(Sender: TObject);//注意listbox1要选择这功能
begin
if ListBox1.ItemIndex>-1 then begin
edit1.text:=ListBox1.Items[ListBox1.ItemIndex]; index=ListBox1.ItemIndex; end;
end;procedure TForm1.Edit1KeyPress(Sender: TObject; var Key: Char);
begin
if key=#13 then begin ListBox1.Items[index]=edit1.text; end;
end;....//选择要修改的行,在edit1输入改变内容回车,就修改了
Edit1: TEdit;//加入一文本框edit1....var
Form1: TForm1; index:integer;//加入这句....procedure TForm1.ListBox1Click(Sender: TObject);//注意listbox1要选择这功能
begin
if ListBox1.ItemIndex>-1 then begin
edit1.text:=ListBox1.Items[ListBox1.ItemIndex]; index=ListBox1.ItemIndex; end;
end;procedure TForm1.Edit1KeyPress(Sender: TObject; var Key: Char);
begin
if key=#13 then begin ListBox1.Items[index]=edit1.text; end;
end;....//选择要修改的行,在edit1输入改变内容回车,就修改了
2013-08-31
展开全部
ListBox上的内容不能在控件上直接修改吧。要不修改后的内容再保存回数组?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询