コード例 #1
0
 private void buttonOK_Click(object sender, EventArgs e)
 {
     SelectedLanguages = new StringCollection();
     for (int i = 0; i < checkedListBox1.CheckedItems.Count; i++)
     {
         Cultrue c = checkedListBox1.CheckedItems[i] as Cultrue;
         if (c != null)
         {
             SelectedLanguages.Add(c.Name);
         }
     }
     this.DialogResult = DialogResult.OK;
 }
コード例 #2
0
 protected override void OnDrawItem(DrawItemEventArgs e)
 {
     e.DrawBackground();
     if (e.Index >= 0 && e.Index < Items.Count)
     {
         if (this.CheckedIndices.Contains(e.Index))
         {
             e.Graphics.FillRectangle(Brushes.LightGreen, e.Bounds);
             CheckBoxRenderer.DrawCheckBox(e.Graphics, new System.Drawing.Point(e.Bounds.X, e.Bounds.Y), System.Windows.Forms.VisualStyles.CheckBoxState.CheckedNormal);
         }
         else
         {
             CheckBoxRenderer.DrawCheckBox(e.Graphics, new System.Drawing.Point(e.Bounds.X, e.Bounds.Y), System.Windows.Forms.VisualStyles.CheckBoxState.UncheckedNormal);
         }
         Cultrue c = Items[e.Index] as Cultrue;
         float   x = (float)(e.Bounds.X + 16);
         if (c.Image != null)
         {
             e.Graphics.DrawImage(c.Image, x, (float)(e.Bounds.Y + 1));
             x += 16;
         }
         e.Graphics.DrawString(c.ToString(), this.Font, Brushes.Black, x, (float)(e.Bounds.Y + 1));
     }
 }