79288177

Date: 2024-12-17 14:10:24
Score: 1
Natty:
Report link

Is button1 just a normal windows forms button? Text is just a property of the control.

If it is, try doing:

button1.Text = "New Text";

Add that to your button1_Click event.

 private void button1_Click(object sender, EventArgs e)
    {
        button1.Text = "New Text";
        var BildiriminOzellikleri = new ToastContentBuilder()
Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: qater