22 lines
548 B
C#
22 lines
548 B
C#
|
namespace TestProject
|
||
|
{
|
||
|
public partial class Form1 : Form
|
||
|
{
|
||
|
public Form1()
|
||
|
{
|
||
|
InitializeComponent();
|
||
|
}
|
||
|
|
||
|
public void normalButton_Click(object sender, EventArgs e)
|
||
|
{
|
||
|
//string privateString = "I\'m a private string, I don't get out much.";
|
||
|
testLabel.Text = "Oh no! Please don't clear my text!";
|
||
|
}
|
||
|
|
||
|
private void clearButton_Click(object sender, EventArgs e)
|
||
|
{
|
||
|
testLabel.Text = "";
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|