Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Can you provide you DataTemplate as I believe I have just managed to mock up what you are trying to achieve and I have scrollbars visible and working form the start. </p> <p>Here is the xaml that I used for the DataTemplate for the ListBox:</p> <pre><code> &lt;ListBox DataContext="{StaticResource MusicData}" ItemsSource="{Binding XPath=Album}"&gt; &lt;ListBox.ItemTemplate&gt; &lt;DataTemplate&gt; &lt;ListBoxItem&gt; &lt;StackPanel Orientation="Horizontal" &gt; &lt;TextBlock&gt;No.&lt;/TextBlock&gt; &lt;TextBlock Text="{Binding XPath=No}"&gt;&lt;/TextBlock&gt; &lt;TextBlock&gt;Title&lt;/TextBlock&gt; &lt;TextBlock Text="{Binding XPath=Title}"&gt;&lt;/TextBlock&gt; &lt;/StackPanel&gt; &lt;/ListBoxItem&gt; &lt;/DataTemplate&gt; &lt;/ListBox.ItemTemplate&gt; &lt;/ListBox&gt; </code></pre> <p>Hope this helps.</p> <p>I also found a piece of code I used a while back and this might help. You can try setting the ItemsPanelTemplate:</p> <pre><code> &lt;ListBox.ItemsPanel&gt; &lt;ItemsPanelTemplate&gt; &lt;StackPanel&gt; &lt;ScrollViewer VerticalScrollBarVisibility="Visible" /&gt; &lt;/StackPanel&gt; &lt;/ItemsPanelTemplate&gt; &lt;/ListBox.ItemsPanel&gt; </code></pre> <p>This will work with any items control as stated in this article: <a href="http://msdn.microsoft.com/en-us/library/system.windows.controls.itemscontrol.itemcontainerstyle.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.windows.controls.itemscontrol.itemcontainerstyle.aspx</a></p> <p>One final thing I can suggest is to create your own ControlTemplate for the ListBox Like so:</p> <pre><code>&lt;ListBox.Template&gt; &lt;ControlTemplate&gt; &lt;ScrollViewer VerticalScrollBarVisibility="Auto"&gt; &lt;ItemsPresenter /&gt; &lt;/ScrollViewer&gt; &lt;/ControlTemplate&gt; &lt;/ListBox.Template&gt; </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload