GlacialList 단순화 | VS2008|C#

1463 단어 StringC#dll공구.
1. DLL을 참조하고 도구상자에서 참조를 통해 구성 요소를 추가합니다.
2. glacialList 컨트롤을 드래그합니다.
3. columns 속성의 집합을 설정합니다.ActivatedEmbeddedType의 역할과 효과에 주의하십시오.
// Add a column, then set its embedded type
GLColumn column = this.glacialList2.Columns.Add( "First column", 100 );
column.ActivatedEmbeddedType = GLActivatedEmbeddedTypes.TextBox;
4.item을 추가합니다.
            GlacialComponents.Controls.GLItem item;             for (int i = 0; i < 10; i++)             {                 string taskname = "test"+ i.ToString();                 item = this.glacialList1.Items.Add(taskname);//add taskname                 item.SubItems[1].Text = DateTime.Now.ToString();                 item.SubItems[1].BackColor = Color.Bisque;                 item.SubItems[2].Text = (i*10).ToString();                 ProgressBar pb;                 pb = new ProgressBar();                 pb.Value = int.Parse(item.SubItems[2].Text);                 pb.Maximum = 100;                 this.glacialList1.Items[i].SubItems[2].Control = pb;             }
그림을 잠시 보내지 않으니 효과도가 유사하다.

좋은 웹페이지 즐겨찾기