<div>;hello </div><div><div>;is there any option that make it able to wrap the buttons(as like word wrap) if set of buttons&#39; width is larger than pane&#39;s width?</div><div>;I mean, I want to place 3 buttons in a row. so make it to two lines</div>
<div>;but this code not be able to make two lines but only one</div></div><div><br></div><div>#lang racket/gui</div><div>(define f (new frame% (label &quot;1&quot;)))</div><div>(define hp (new horizontal-pane% (parent f) (min-width 50) (stretchable-width #t)))</div>
<div>(define btn1 (new button% (label &quot;btn1&quot;) (parent hp)))</div><div>(define btn2 (new button% (label &quot;btn2&quot;) (parent hp)))</div><div>(define btn3 (new button% (label &quot;btn3&quot;) (parent hp)))</div>
<div>(define btn4 (new button% (label &quot;btn4&quot;) (parent hp)))</div><div>(define btn5 (new button% (label &quot;btn5&quot;) (parent hp)))</div><div>(define btn6 (new button% (label &quot;btn6&quot;) (parent hp)))</div>
<div><br></div><div>(send f show #t)</div><div><br></div><div><br></div>