In Visual Basic 2008 Professional
With the "Border" selected either in the Form Designer or in the XAML code, in the Properties, I noticed that there is a
More Properties selection that is located below the
Appearance properties group and above the
Brushes properties group.
The
More Properties expands up and down, and the
BitmapEffect property is hidding inside of there.
In Visual Basic 2008 Express
It's not listed in the Properties for System.Windows.Controls.Border. Intellisense does show it while typing in the XAML editor.
Also, you might also try manually placing the following code that was produced on my system inside of the Border element of the XAML code section:
Code:
<Border Height="200" HorizontalAlignment="Left" Margin="0,60,0,0" Name="Border1" VerticalAlignment="Top" Width="380">
<Border.BitmapEffect>
<DropShadowBitmapEffect Opacity="0.5" ShadowDepth="8" Softness="1" />
</Border.BitmapEffect>
<Border.RenderTransform>
<SkewTransform CenterX="0" CenterY="0" AngleX="0.5" AngleY="-3" />
</Border.RenderTransform>
<Image Height="185" Name="Image1" Stretch="Fill" Width="300" Source="/CreditCardProjectName;component/CreditCard.jpg" />
</Border>