lab5, pt2

This commit is contained in:
2022-10-13 13:03:15 -05:00
parent 886cae5684
commit 97a084391c
163 changed files with 1446 additions and 52 deletions

22
Testing/TestProject/Form1.cs Executable file
View File

@@ -0,0 +1,22 @@
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 = "";
}
}
}