Sha256: cb3dc799f6f4febbcaae8a6c3f86dd2cb065527ad3f98873b1e5b78790f390ba
Contents?: true
Size: 669 Bytes
Versions: 6
Compression:
Stored size: 669 Bytes
Contents
Shoes.app height: 300, width: 300 do stack do flow do para "Normal " @el1 = edit_line "Normal", tooltip: "Normal" end flow do para "Font " @el2 = edit_line "Font Is?", font: "Monaco 9", tooltip: "monaco 9" end flow do para "Stroke " @el3 = edit_line "Stroke", stroke: red, tooltip: "red" end flow do para "Both" @el4 = edit_line "Stroke and Font", stroke: green, font: "Arial 14", tooltip: "green arial 14" end button "change contents" do @el1.text = "Changed!" @el2.text = "Changed!" @el3.text = "Changed!" @el4.text = "Changed!" end end end
Version data entries
6 entries across 6 versions & 2 rubygems