I have an ItemsControl which contains some nested containers. I want to add a dropshadow around each element of the main ItemsControl. But instead it is adding it to certain containers that are within the main ItemsControl (creating rows of shadows). I have placed the effect at a number of different levels but it results in no change. I started out with the outermost container of the item within the main ItemsControl and went upward from there.

Here is where I currently have the effect for the drop shadow placed:

<ItemsControl  >
    <ItemsControl.ItemsPanel>
        <ItemsPanelTemplate>
            <!-- I have tried adding the dropshadow effect within this stackpanel -->
            <StackPanel />
        </ItemsPanelTemplate>
    </ItemsControl.ItemsPanel>
    <!-- Where I define the dropshadow -->
    <ItemsControl.Effect>
        <DropShadowEffect BlurRadius="0" ShadowDepth="1" Color="LightGray"/>
    </ItemsControl.Effect>
    <!-- End of dropshadow definition -->    

    <ItemsControl.ItemTemplate>
        <DataTemplate>
            <media:Step5Item />
        </DataTemplate>
    </ItemsControl.ItemTemplate>
</ItemsControl>

And here is the definition for Step5Item, I added documentation for where the shadows are appearing: (edit) I removed the content for the elements since that was just styling and so forth.

<!-- This is inserted by the above code's DataTemplate -->
<!-- I have tried adding a border here and giving it a dropshadow effect -->
<Grid >

    <!-- I have tried inserting a dropshadow effect here -->

    <TextBlock Grid.Row="0"/>

    <Border BorderBrush="LightGray" BorderThickness="1" >
        <!-- I have tried inserting a dropshadow effect here -->
        <Grid>
            <Border >
                <!-- There is a shadow around this border/grid -->
                <Grid Grid.Row="0" >
                    <TextBlock Grid.Column="0" />
                    <Button Grid.Column="2"/>

                </Grid>
            </Border>

            <!--There is a shadow around each element in this ItemsControl-->
            <ItemsControl Grid.Row="2" >
                <ItemsControl.ItemTemplate>
                    <DataTemplate>
                        <Grid Margin="0,0,0,4" >
                            <Path Grid.Row="0">
                                <Path.Data>
                                    <LineGeometry StartPoint="0,0" EndPoint="1500,0"/>
                                </Path.Data>
                            </Path>
                            <Grid Grid.Row="1">
                                <Image Grid.Column="0" />
                            </Grid>
                        </Grid>
                    </DataTemplate>
                </ItemsControl.ItemTemplate>
            </ItemsControl>
        </Grid>
    </Border>
</Grid>

There is also a shadow at the bottom but I don't know if its from the last element in the ItemsControl or if it is from the outer most border.

If you'd like I can clean up the second code piece more. I took out some stuff but left in the elements, thinking that might be best for readability.

EDIT I tried applying the effect after I add the child elements hoping that since they would be created before the effect went into play that the problem would not occur. I tried placing the effect at the bottom of both the main ItemsControl as well as at the bottom of the outermost grid in Step5Item. I have also removed some content from Step5Item to make it hopefully more readable.

EDIT2

Here are two images with and without the effect. I left the DropShadow code exactly where I placed it above, though like I said, I can place it in many places to get the same effect.

With Dropshadow

With Error

Without Dropshadow

Without Error

Edit 3

This is the border and drop shadow effect that I am using from Erno's solution. I am hoping to be able to increase the shadowdepth some more because the right side is not getting any shadow, only the bottom. Currently if I change ShadowDepth it changes to location of the shadow to be at a distance away equal to the new size but it is only a thickness of 1.

<Border Margin="0,1,0,0" Height="auto" Width="auto" CornerRadius="5,5,5,5"    BorderThickness="1" BorderBrush="LightGray">
    <Border.Effect>
        <DropShadowEffect BlurRadius="0" ShadowDepth="1" Direction="315" Color="LightGray"/>
    </Border.Effect>
</Border>
link|improve this question

Can you post some screen shots to clarify the problem? – XAMeLi Aug 3 '11 at 20:22
@XAMeLi added images – StephenT Aug 4 '11 at 13:13
I don't understand the problem yet. Can you slim the code down? – Erno Aug 4 '11 at 14:28
@Erno I took a hatchet to it. Its pretty much just containers left. For what the issue is, look at the horizontal lines in the images. I am trying to get an effect where only the outside of the two containers have DropShadows. Instead there is a border around every row within those two containers. – StephenT Aug 4 '11 at 14:38
I also just added comments in my code for where I have tried adding the dropshadow effect (all with the exact same result from what I see). – StephenT Aug 4 '11 at 14:45
feedback

1 Answer

up vote 2 down vote accepted

Have you tried to do the following?

I added another Grid and added a SIBLING Border with the effect. The grid containing the rows is displayed on top of it but is NOT a child control of the Border.

        <ItemsControl Grid.Row="2" >
            <ItemsControl.ItemTemplate>
                <DataTemplate>
                    <Grid Margin="0,0,0,4" >

                        <Grid> 
                            <Border>
                                <Border.Effect>
                                    <DropShadow />
                                </Border.Effect>
                            </Border>

                            <Path Grid.Row="0">
                                <Path.Data>
                                    <LineGeometry StartPoint="0,0" EndPoint="1500,0"/>
                                </Path.Data>
                            </Path>
                            <Grid Grid.Row="1">
                                <Image Grid.Column="0" />
                            </Grid>
                        </Grid>
                    </Grid>
                </DataTemplate>
            </ItemsControl.ItemTemplate>
        </ItemsControl>
link|improve this answer
after a lot of reworking I eventually got the idea to mostly work. I put it somewhere else (your solution had it repeating with every ItemControl object, I wanted it around the entire thing). But for some reason when I increase the size of the dropshadow through shadowDepth instead of getting a solid shadow that is 3,4,9 or etc in size. I get a shadow that is 1 in size, but at a distance away that indicates that the number I inputed was used. I am updating the bottom of my question with the code I am using, let me know if you have any insights. – StephenT Aug 4 '11 at 18:56
@StephenT, You could give the Border and Grid siblings both a bigger margin. That would give the shadow more room or am I not understanding what the new problem is? – Erno Aug 4 '11 at 19:08
1  
@Stephen, Got it, the border is missing a Background color. No background => no shadow. – Erno Aug 4 '11 at 19:13
ah okay that explains some behavior I was seeing (its the actual shadow of a straight line, I didn't figure them to be so literal with the effect). The width of the overlapping object still seems to be a bit wider than the border, but when I adjust the margins one just adjusts to the other. I think I'm just going to add a second border to get the effect I want. I've spent like 2 hours to add a drop shadow to one thing, maybe its time to get more effort in elsewhere – StephenT Aug 4 '11 at 19:43
By the way thank you a lot for the help, this was driving me nuts. – StephenT Aug 4 '11 at 19:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.