|
ASR.rar
(36.22 KB, 下载次数: 6)
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Windows.Forms;
- using System.Diagnostics;
- namespace ASR
- {
- public partial class Form1 : Form
- {
- public Form1()
- {
- InitializeComponent();
- }
- private void button1_Click(object sender, EventArgs e)
- {
- System.Collections.ArrayList Array = new System.Collections.ArrayList();
- for (int i = 1; i <= 88; i++)
- {
- Array.Add(i);
- }
- for (int i = 0; i < Array.Count; i++)
- {
- this.comboBox1.Items.Add(("元素:") + (Array[i]).ToString());
- Debug.WriteLine(comboBox1.Items[i].ToString());
-
- }
- this.Refresh();
- }
- }
- }
复制代码 |
|