listbox.items 를 for 문으로 루프 돌리면서 확인하시면 됩니다.

 

예를 들어서 listbox1 이라는 컨트롤이 있다고 가정하면,

아래와같이 취득할수 있습니다.

 

   private void Form1_Load(object sender, EventArgs e)
        {
            for (int i = 0; i <= listBox1.Items.Count; i++)
            {
                listBox1.Items[i].ToString();
            }
        }

 

그리고 리스트박스 항목 갯수 구하기 

int i;
i = listBox.Items.Count

+ Recent posts