1

这似乎是一个愚蠢的问题。我有一个文本框,可用于在运行时在 Windows 窗体上将项目添加到选中列表框。我正在使用 c#。它在运行时工作得很好。当表单打开时,项目会被添加和填充。但是,当我关闭并再次打开表单时,我没有在选中列表框列表中看到添加的项目。请注意,我不使用数据源,也不想使用。我不想硬编码任何东西,而是更喜欢使用表单上的文本框输入作为变量来输入集合列表。我想不出一种方法来扩展我的选中列表框选项。任何援助将不胜感激。

4

3 回答 3

2

你是怎么打开表格的?是不是像:

FormName form = new FormName();
form.Show()

我认为发生这种情况的唯一原因是您每次显示时都在实例化一个新的表单实例,而不是重用相同的表单。

于 2009-07-06T13:51:01.803 回答
2

让您的表单ref List<string> values作为参数。然后将此作为 CheckedListBox 的 BindingSource。

这是代码:

class MyForm : Form {
        List<string> values;
        BindingSource source;

        public MyForm()
        {
            InitializeComponent();
        }

        public MyForm(ref List<string> values):this()
        {
            if (values == null)
                values = new List<string>();

            this.values = values;

            checkedListBox1.DisplayMember = "Value";
            checkedListBox1.ValueMember = "Value";
            source = new BindingSource(this.values, null);
            checkedListBox1.DataSource = source;
        }

        private void AddItemButton_Click(object sender, EventArgs e)
        {
            this.source.Add(textBox1.Text);
            textBox1.Text = string.Empty;
        }
}
于 2009-07-06T13:55:43.153 回答
0
private void frmMain_Load(object sender, EventArgs e)
{
  if (!string.IsNullOrEmpty(Properties.Settings.Default.CheckedItems))
  {
    string[] checkedIndicies = Properties.Settings.Default.CheckedItems.Split(new char[] { ',' }, StringSplitOptions.RemoveEmptyEntries);
    for (int i1 = 0; i1 < checkedIndicies.Length; i1++)
    {
      int idx;
      if ((int.TryParse(checkedIndicies[i1], out idx)) && (checkedListBox1.Items.Count >= (idx+1)))
      {
        checkedListBox1.SetItemChecked(idx, true);
      }
    }
  }
}

private void button2_Click(object sender, EventArgs e)
    {
        if (textBox1.Text != "")
        {
            textBox1.MaxLength = 15;
            // Change all text entered to be lowercase.
            textBox1.CharacterCasing = CharacterCasing.Lower;

            if (checkedListBox1.Items.Contains(textBox1.Text) == false)
            {
                checkedListBox1.Items.Add(textBox1.Text, CheckState.Checked);

                textBox1.Text = "";
                MessageBox.Show("Added! Click Move to see List Box");
            }

            else
            {
                MessageBox.Show("Already There!");
                textBox1.Text = "";
            }
        }
    }



private void frmMain_FormClosing(object sender, FormClosingEventArgs e)
{
  string idx = string.Empty;
  for (int i1 = 0; i1 < checkedListBox1.CheckedIndices.Count; i1++)
    idx += (string.IsNullOrEmpty(idx) ? string.Empty : ",") + Convert.ToString(checkedListBox1.CheckedIndices[i1]);
  Properties.Settings.Default.CheckedItems = idx;
  Properties.Settings.Default.Save();
}
于 2009-07-06T21:12:41.483 回答