0

我是 Winforms 和 C# 的新手,所以这听起来像是一个愚蠢的问题。我有下面显示的类,用于创建要显示为模式对话框的表单。

class FrmDelivery : Form
{
    ListBox s;
    public FrmDelivery()
    {
        s = new ListBox();

        s.DataSource = new List<int>(){1,2,3,4};
        s.Update();
        s.Show();

    }

} 

但是,当我使用该ShowDialog方法显示此表单时,由于某些原因,它没有显示任何内容。我应该怎么做才能在这个表单中添加一个列表框?

编辑:

我使用代码来显示表单:

       FrmDelivery frm = new FrmDelivery();
        frm.ShowDialog();
4

5 回答 5

2

注意 - WPF 使用 Windows,而不是 Forms,所以我不清楚你为什么从 Form 而不是Window. 但我会回答,就好像您在谈论 WPF 窗口作为您的“表单”一样。

首先,需要一些东西来显示窗口。目前,提供的代码不显示窗口,它试图显示一个ListBox.

其次,您需要向窗口添加一个 LayoutPanel 并将您的添加ListBox为布局面板的子项。布局面板有多种风格,例如Grids并基于您想要的布局类型。StackPanelsCanvases

或者,您可以将 的 设置ContentWindow您的ListBox. 这意味着唯一的东西Window就是你的ListBox', so if you want multiple visual elements on yourWindow`,你需要使用布局面板。

第二种方法看起来像

this.Content = s;

对于第一种方法,我建议阅读 WPF 中的布局面板。 这是一个教程是 MSDN 关于布局的主题。谷歌搜索将产生更多结果。

于 2013-03-03T20:40:52.490 回答
1

您需要将列表框添加到控件集合中:

ListBox s;
public FrmDelivery()
{
  s = new ListBox();
  s.DataSource = new List<int>() { 1, 2, 3, 4 };

  this.Controls.Add(s);
}

这将为您将控件放到您的表单上,尽管您可能想要设置许多其他属性(例如,让它看起来像您想要的那样) - 正如其他人所提到的,您可以看到设计师是如何做到这一点的通过将列表框放在表单上并检查生成的代码来隐藏代码。

于 2013-03-03T20:50:27.613 回答
1

我建议您使用 Add|New Item|Windows Form 创建一个新表单。然后,您将获得一个设计图面,您可以在其中添加一个列表框,并生成将正确初始化您的表单和列表框的代码。特别是您的表单和列表框将获得它们当前没有的默认大小。

您的代码(例如 Form1.cs)将与此类似:

public partial class Form1 : Form
{
    public Form1()
    {
        InitializeComponent();

        this.listBox1.DataSource = new List<int> { 1, 2, 3, 4 };
    }

    public int? SelectedValue
    {
        get
        {
            return (int?)this.listBox1.SelectedValue;
        }
    }
}

另外,Form1.Designer.cs 中会有大量代码,类似于

....

    #region Windows Form Designer generated code

    /// <summary>
    /// Required method for Designer support - do not modify
    /// the contents of this method with the code editor.
    /// </summary>
    private void InitializeComponent()
    {
        this.listBox1 = new System.Windows.Forms.ListBox();
        this.SuspendLayout();
        // 
        // listBox1
        // 
        this.listBox1.FormattingEnabled = true;
        this.listBox1.Location = new System.Drawing.Point(30, 37);
        this.listBox1.Name = "listBox1";
        this.listBox1.Size = new System.Drawing.Size(120, 95);
        this.listBox1.TabIndex = 0;
        // 
        // Form1
        // 
        this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
        this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
        this.ClientSize = new System.Drawing.Size(284, 261);
        this.Controls.Add(this.listBox1);
        this.Name = "Form1";
        this.Text = "Form1";
        this.ResumeLayout(false);

    }

    #endregion

你可以像这样使用你的表格:

    private void button1_Click(object sender, System.EventArgs e)
    {
        using (var form = new Form1()) // you should dispose forms used as dialogs
        {
            if (DialogResult.OK == form.ShowDialog()) // optional (you could have OK/Cancel buttons etc
            {
                Debug.WriteLine(form.SelectedValue ?? -1);
            }
        }
    }
于 2013-03-03T20:54:26.837 回答
1

您不仅应该将控件添加到集合中,还应该设置他的特征。至少尺寸和位置。

class FrmDelivery : Form
{
ListBox s;
public FrmDelivery()
{
    s = new ListBox();
    s.Location = new System.Drawing.Point(0, 0); //relative to the parent control (not an absolute value, so)
    s.Name = "listBox1";
    s.Size = new System.Drawing.Size(120, 95);


    s.DataSource = new List<int>(){1,2,3,4};
    this.Controls.Add(s); //it will add it to the form but you can add it to another control, like panel.

}

}

希望它会有所帮助

于 2013-03-03T20:59:09.180 回答
0

请查看您是否已将默认构造中的 InitializeComponent() 注释掉。它通常会在 FormLoad 上初始化表单的所有控件。

于 2016-02-17T20:44:32.060 回答