2010-04-23 3 views
0

Silverlight 4 Beta에서는 flowlayout 컨트롤이라는 contol이 사용되었습니다. 이제는 실버 라이트 4 rc에서 볼 수 없습니다. 해당 컨트롤을 얻으려면 설치해야 할 것이 있으면 알려주십시오.Silverlight 4의 Flowlayout 컨트롤

답변

3

Silverlight 또는 WPF에 대해서는 들어 본 적이 없습니다. FlowLayoutPanel은 Windows Forms 컨트롤이었습니다. 사용할 수있는 것은 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> 
관련 문제