Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
int anzahl = listBox1.Items.Count;
listBox1.Items.Insert(anzahl, zwischen);
//zwischen ist der Abzulegende String
int i;
int k = 5;
cli::array <System::Windows::Forms::ListViewItem^> ^ itemarray = gcnew array<System::Windows::Forms::ListViewItem^>(5);
for (i=0; i<k; i++)
{
itemarray[i] = gcnew System::Windows::Forms::ListViewItem(gcnew cli::array< System::String^ >(2) {L"", Convert::ToString(i+1)}, -1);
}
this->listView1->Items->AddRange(itemarray);