I need to float out some content out of the ListBox
as specified in a DataTemplate
for an ListBox.ItemTemplate
. I am using RenderTransform
but the content gets clipped on ListBox
boundaries. ClipToBounds
is False
for the entire visual tree.
I have read somewhere that WPF internally performs some clipping even when none is specified with dedicated clipping properties. I have also found out that using Canvas
can sometimes cure the clipping problem but it does not help here.
How can I overcome this problem? Here is some XAML that I want to fix. Please note the entire left part of rectangle is missing.
<ListBox>
<ListBox.ItemTemplate>
<DataTemplate>
<Rectangle Fill="Red" Stroke="Green" StrokeThickness="4" Width="100" Height="50">
<Rectangle.RenderTransform>
<TranslateTransform X="-50" />
</Rectangle.RenderTransform>
</Rectangle>
</DataTemplate>
</ListBox.ItemTemplate>
42
</ListBox>
The
ListBoxItem
's are getting clipped by theScrollViewer
in theListBox
Template. To work around this I think you'll need to remove theScrollViewer
from the Template and if you need scrolling you can wrap theListBox
in aScrollViewer
Update
The
ScrollViewer
in the Template will generate aScrollContentPresenter
which in turn has the followingGetLayoutClip
This class is Sealed so you can't derive from it to override this method. You would have to implement your own
ScrollContentPresenter
(e.gMyScrollContentPresenter
) and probably your ownScrollViewer
that usesMyScrollContentPresenter
as well to make this work (and if you returnnull
in this method I think that some items below the bounds of theListBox
could become visible as well)