名前、州、都市などを入力し、ボタンをクリックすると、各ボックスに入力したすべてのテキストが表示され、1 つのラベルに表示される、WinForms を使用して宛名ラベル プログラムを作成しようとしています。私は近いですが、プログラムを実行すると、単語の間にスペースがありません。これが私のコードです:
namespace Mail_Label_Program
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void btnDisplay_Click(object sender, EventArgs e)
{
lblMessage.Text = txtFirst.Text + txtLast.Text;
}
private void btnExit_Click(object sender, EventArgs e)
{
//This closes the program.
this.Close();
}
private void btnClear_Click(object sender, EventArgs e)
{
//This clears all textbox forms.
txtFirst.Text = string.Empty;
txtLast.Text = string.Empty;
txtCity.Text = string.Empty;
txtStreet.Text = string.Empty;
txtState.Text = string.Empty;
txtZip.Text = string.Empty;
}
}
}