高手,我是初学者,如何能让C#中combobox的下拉列表循环暗淡显示出数字1到20
循环我知道啊,我的程序是这样的:usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentMode...
循环我知道啊,我的程序是这样的:
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;
namespace speech_count
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
{
for (int i = 1; i <= 20; i++)
{
this.comboBox1.Items.Add(i);
}
}
}
}
运行的时候,combobox的下拉菜单里没有东西显示,上面的是打错字了,是循环,不是暗淡,不好意思。 展开
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;
namespace speech_count
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
{
for (int i = 1; i <= 20; i++)
{
this.comboBox1.Items.Add(i);
}
}
}
}
运行的时候,combobox的下拉菜单里没有东西显示,上面的是打错字了,是循环,不是暗淡,不好意思。 展开
2个回答
展开全部
在ComboBox属性中的Items属性栏点击右边有三个点的按钮,然后出来一个框,在里面把1到20依次添加进去就行了,输入一个数字点击一次回车!
也可以在Text属性栏输入一个1,这样运行的时候ComboBox中就会自动显示一个1,否则为空~
你的事件用错了!
private void Form1_Load(object sender, EventArgs e)
{
for (int i = 1; i <= 20; i++)
{
this.comboBox1.Items.Add(i);
}
}
也可以在Text属性栏输入一个1,这样运行的时候ComboBox中就会自动显示一个1,否则为空~
你的事件用错了!
private void Form1_Load(object sender, EventArgs e)
{
for (int i = 1; i <= 20; i++)
{
this.comboBox1.Items.Add(i);
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询