在窗体上怎么显示控件(用代码)
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 Sahpe{ public partial class TestForm : Form { public TestForm() { InitializeComponent(); } private void TestForm_Load(object sender, EventArgs e) { //怎么显示控件,用代码来实现 //比如我想用代码显示Label控件 } }}