I'd like to create a neon(-like) effect in wpf/c#, to be used on a series of polylines.
The closest i come to this was using blur (not very close, but eh), but the it dims the colors too dark and I have no idea how to make even that glow. Is there an effect close to this, or I should try to write a shader for it somehow?
I'd like to do this for a school project and i'd rather not turn in a bunch of outside libraries for a small amount of self-written code. Also about google: most of the stuff i found were pretty much using blur/dropshadow to create these fading colors, not something that actually has this neon-y effect.
DropShadowEffect
class is what you're after... you just need to pick your colours carefully. It is entirely possible though, as I have previously created a digital LED clock face with bright, glowing digits on it. – Kazan<DropShadowEffect ShadowDepth="0" Color="#CF5DFFF8" BlurRadius="10" />
– Kazan