在 silverlight 4 Beta 中曾经有一个称为 flowlayout control 的控件。现在我无法在 silverlight 4 rc 中看到它。请让我知道是否需要安装任何东西来获得该控件。
问问题
1811 次
1 回答
3
在 Silverlight 或 WPF 中从未听说过。FlowLayoutPanel 是一个 Windows 窗体控件。您可以使用Silverlight Toolkit中的 WrapPanel 。
<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>
于 2010-04-23T03:41:48.903 回答