Frame innerborder ?
Hi all
I have this Frame in my wpf app, that shows a html page.
But I want to remove the border around the content of the frame, how do I do that ?
BorderThickness="0,0,0,0", does not help, it still has this 2 pixel gray "inner" border.
<Frame Content="Frame" Grid.Row="1" x:Name="Frame1" BorderThickness="0,0,0,0" Source="somehtmlpage.html" HorizontalAlignment="Left" VerticalAlignment="Top" Width="720" Height="180"/>
/Anders

