If I had a Canvas with n number of Visual objects of any shape or size, how would I highlight/outline a Visual object programmatically?
Is there something built into WPF to help me?
|
|
If I had a Canvas with n number of Visual objects of any shape or size, how would I highlight/outline a Visual object programmatically? Is there something built into WPF to help me?
|
||
|
|
|
|
Having read the comments in the other answer -- in which you state that you wish the outline to conform to the shape of the visual -- I can only suggest you take a look at the Duplicating the visuals themselves would probably be less efficient, and would probably produce a great number of complications due to other aspects of those items, such as any bindings. |
||||||
|
|
|
Joel has a great suggestion about using BitmapEffects. However, if you can use .NET 3.5 SP1, I would steer you toward GPU rendered effects. So, instead of using UIElement.BitmapEffect, you would use UIElement.Effect. .NET 3.5 SP1 has two GPU effects built in: BlurEffect and DropShadowEffect. You can also create your own GPU effects ... and this is where you would use ShaderEffect. Check out Greg Schechter's blog post series for more info. Here is a piece of code for a mouse over effect that I just implemented a few days ago (it actually shows up sort of like an outer glow bitmap effect due to the ShadowDepth being 0, but not exactly):
|
|||
|
|
|
If you wrap those Visual objects in a Border ... and make the Opacity 0 by default ... then you could programmatically turn the Opacity to 1 whenever you need to. Does that help? |
||||||
|
|
|
I have some problem regarding this. I am running the code in in Window7. I have 2 Path and also the Path Effect and data=Geometry Object. But Effect is working for the Last Path only.For the First one Data is not displaying. If i will remove the Effect then it is displaying. This is the Problem with Window7 32 bit only. Please give me some idea.
Effect="{DynamicResource tbEffect}" VerticalAlignment="Center" HorizontalAlignment="Right"/> In CS am assigning Geometry Object to Data |
||
|
|