本文介绍了如何修改设计器表单中的列表框或组合框范围的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

public void InitializeComponent()
       {
           this.listBox1 = new System.Windows.Forms.ListBox();
           this.button1 = new System.Windows.Forms.Button();
           this.textBox1 = new System.Windows.Forms.TextBox();
           this.SuspendLayout();
           //
           // listBox1
           //
           this.listBox1.FormattingEnabled = true;
           this.listBox1.Items.AddRange(new object[] {
           "1",
           "2",
           "3",
           "4",
           "5",
           "6"});
           this.listBox1.Location = new System.Drawing.Point(70, 31);
           this.listBox1.Name = "listBox1";
           this.listBox1.Size = new System.Drawing.Size(120, 95);
           this.listBox1.TabIndex = 0;



我想在不保存的情况下将项目添加到ListBox中仅保存在form.Designer.cs的示例中我现在通过收集手动将6个项目添加到listBox中,现在我想从TextBox中添加另一个项目.我该怎么办



I Want Add Item to ListBox Without Saving Just Save in form.Designer.cs foe example I add 6 Item to listBox Manualy via Collection Now I Want Add another Item from TextBox. HOW I CAN DO IT

推荐答案

string strText = textbox1.Text;
listBox1.Items.Add(strText);




这篇关于如何修改设计器表单中的列表框或组合框范围的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-29 15:12