Advertisement
solidsnake

C#ComboBox

May 8th, 2013
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.20 KB | None | 0 0
  1. COMBO BOX
  2.  
  3.     public Form1()
  4.         {
  5.             InitializeComponent();
  6.             for (int i = 0; i < 10: i++)
  7.             {
  8.                 comboBox1.Items.Add("" + i);
  9.             }
  10.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement