BCB6 TListBox(如何获取多选项的值)

发布于 2024-11-07 00:24:09 字数 75 浏览 1 评论 0原文

如何获取 TListBox 中的选定项目并将项目添加到第二个 TListBox 中,我使用 Borland C++ Builder 6。

How can I get the selected items in TListBox and add the items in the second TListBox, Im using Borland C++ Builder 6.

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

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

发布评论

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

评论(2

饮惑 2024-11-14 00:24:10

正如 David 中所说他的答案,您需要使用 选定的 属性。

这是我过去在几个项目中使用过的一个简单函数。

void __fastcall TSelectForm::CopySelectedList(TListBox *SrcLB, TListBox *DestLB, bool ClearDest)
{
 DestLB->Items->BeginUpdate();
 if (ClearDest) DestLB->Clear();

 // copy selected items from source listbox
 for (int Index = 0; Index < SrcLB->Count; ++Index)
 {
   if (SrcLB->Selected[Index])
   {
     DestLB->Items->Add(SrcLB->Items->Strings[Index]);
   } // end if
 } // end for

 DestLB->Items->EndUpdate();
} // end CopySelectedList

As David said in his answer, you need to use the Selected property.

Here is a simple function I have used in several projects in the past.

void __fastcall TSelectForm::CopySelectedList(TListBox *SrcLB, TListBox *DestLB, bool ClearDest)
{
 DestLB->Items->BeginUpdate();
 if (ClearDest) DestLB->Clear();

 // copy selected items from source listbox
 for (int Index = 0; Index < SrcLB->Count; ++Index)
 {
   if (SrcLB->Selected[Index])
   {
     DestLB->Items->Add(SrcLB->Items->Strings[Index]);
   } // end if
 } // end for

 DestLB->Items->EndUpdate();
} // end CopySelectedList
几度春秋 2024-11-14 00:24:10

您需要迭代 Selected[] 属性。如果 Selected[i]==true 则选择 Items[i]。

You need to iterate over the Selected[] property. if Selected[i]==true then Items[i] is selected.

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