Callback triggered when the target element is clicked.
 Encapsulates a method that has no parameters and does not return a value.
 
 
 
public VisualElement CreateButton() { var button = new Button { text = "Press Me" }; button.clicked += () => { Debug.Log("Button was pressed!"); }; return button; }