开发者

Flowlayout control in Silverlight 4

开发者 https://www.devze.com 2022-12-28 02:02 出处:网络
In silverlight 4 Beta there used to开发者_如何学编程 be a contol called flowlayout control. Now i am not able to see that in the silverlight 4 rc. please let me know if anything needs to be installed

In silverlight 4 Beta there used to开发者_如何学编程 be a contol called flowlayout control. Now i am not able to see that in the silverlight 4 rc. please let me know if anything needs to be installed to get that control.


Never heard of that in Silverlight or WPF. FlowLayoutPanel was a Windows Forms control. What you can use is the WrapPanel from the Silverlight Toolkit.

<toolkit:WrapPanel Orientation="Horizontal" Width="150">
    <Button Content="Hello!" />
    <Button Content="Hello!" />
    <Button Content="Hello!" />
    <Button Content="Hello!" />
    <Button Content="Hello!" />
    <Button Content="Hello!" />
    <Button Content="Hello!" />
    <Button Content="Hello!" />
</toolkit:WrapPanel>
0

精彩评论

暂无评论...
验证码 换一张
取 消