GlacialList 단순화 | VS2008|C#
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; }
그림을 잠시 보내지 않으니 효과도가 유사하다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Access Request, Session and Application in Struts2If we want to use request, Session and application in JSP, what should we do? We can obtain Map type objects such as Req...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.