Click
Introduction
Click Definition
var button = new Button();
button.AddToRoot();
button.Anchor(Gum.Wireframe.Anchor.Center);
// Button's Click event internally uses an InteractiveGue's Click, so
// we can test when clicks are raised by subscribing to a Button's Click
button.Click += (_, _) =>
button.Text = DateTime.Now.ToString();


Last updated
Was this helpful?

