我的意圖很簡單。創建一個用戶可以滾動該特定面板中的許多控件的排序面板。該面板中的控件可能是按鈕,或圖像或標籤..無論如何。WP7 ScrollViewer根本不起作用
事情是......如果我讓我的ScrollViewer垂直滾動,但它不會顯示其內部的所有控件,並且它不會停留在滾動它的位置。如果我把它做成水平的,我就是這麼想的,它根本不會滾動......沒有一點。
以下是我的代碼:請幫助!
<ScrollViewer Height="118" Name="scrollerButtons" Width="362" Canvas.Left="167" Canvas.Top="275" VerticalAlignment="Center">
<StackPanel Height="97" Name="stackPanelButtons" Width="168" Orientation="Horizontal" Canvas.Left="162" Canvas.Top="43" VerticalAlignment="Center" HorizontalAlignment="Center">
<Button Width="60" Height="60"> </Button>
<Button Width="60" Height="60"></Button>
<Button Width="60" Height="60"></Button>
<Button Width="60" Height="60"></Button>
<Button Width="60" Height="60"></Button>
<Button Width="60" Height="60"></Button>
<Button Width="60" Height="60"></Button>
<Button Width="60" Height="60"></Button>
<Button Width="60" Height="60"></Button>
<Button Width="60" Height="60"></Button>
<Button Width="60" Height="60"></Button>
<Button Width="60" Height="60"></Button>
<Button Width="60" Height="60"></Button>
<Button Width="60" Height="60"></Button>
<Button Width="60" Height="60"></Button>
<Button Width="60" Height="60"></Button>
<Button Width="60" Height="60"></Button>
<Button Width="60" Height="60"></Button>
</StackPanel>
</ScrollViewer>
我添加了一堆按鈕只是爲了測試整個事情。高度讚賞任何幫助。謝謝。
嘿那裏瓊斯。我是那麼做的。仍然不起作用。 – Subby 2011-12-24 18:16:10
我修好了!我添加了這個:ScrollViewer.HorizontalScrollBarVisibility =「Auto」ScrollViewer.VerticalScrollBarVisibility =「Visible」 – Subby 2011-12-24 18:32:22