private void MainForm_Load(object sender, EventArgs e) { //this.SetDesktopLocation(1300, 20); linkItemsForm = new LinkItemsForm(); //fill zoom combobox for (int i = 25; i <= 200; i += 25) { zoomcombo.Items.Add(i.ToString() + "%"); } zoomcombo.SelectedText = "100%"; comboBox1.Items.Add("48x48"); comboBox1.Items.Add("64x64"); comboBox1.Items.Add("96x96"); comboBox1.Items.Add("128x128"); comboBox1.Items.Add("256x256"); comboBox1.SelectedIndex = 1; SetListViewSpacing(listView2, 128 + 8, 128 + 32); pictureBox1.AllowDrop = true; }