RosettaCodeData/Task/GUI-component-interaction/Mathematica/gui-component-interaction.math

9 lines
329 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
Manipulate[Null, {{value, 0}, InputField[Dynamic[value], Number] &},
Row@{Button["increment", value++],
Button["random",
If[DialogInput[
Column@{"Are you sure?",
Row@{Button["Yes", DialogReturn[True]],
Button["No", DialogReturn[False]]}}],
value = RandomInteger@10000], Method -> "Queued"]}]