我試圖在屏幕上的包裝面板上動態顯示按鈕,以便它們在沒有任何滾動條的情況下很好地放置。我有如下的標記,但滾動條出於某種原因。我們如何讓滾動條不出現,按鈕佈局沒有任何滾動條。在wrappanel中添加動態按鈕wpf
<ListBox x:Name="ItemsListBox" >
<ListBox.ItemTemplate>
<DataTemplate>
<ToggleButton Content="{Binding Name}" Click="Click" MinWidth="120" MinHeight="70" FontWeight="Bold" FontSize="18"/>
</DataTemplate>
</ListBox.ItemTemplate>
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<WrapPanel></WrapPanel>
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
</ListBox>
滾動條仍然出現 – TrustyCoder 2012-08-01 15:43:31