I am pretty new to Silverlight. I am wanting to have some text that is
fully transparent that will show whatever is behind it. I also want a
black background. When I make the text transparent, it only blends in
with the black. I searched google and found that you can use the
clipping path, but it didn't show any examples and I couldn't find much
in the MSDN2 Library. What can I do? Here is what I have:
<canvas xmlns="http://schemas.microsoft.com/client/2007">
<canvas width="300" height="300" background="Black">
<TextBlock canvas.left="10" canvas.top="10" text="My new thumbdrive is amazingly cool!" foreground="#ff00aaff" opacity=".5">
</TextBlock></canvas>
</canvas>
Thanks!