Click here to Skip to main content
15,918,742 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,

My problem is in WPF technology.

How to show rendering line to line on manipulate a image, like Photoshop software or Paint.Net rendering.
This means, show real time manipulating effect (filter effect), without "Not responding" message on window title.

Thank you for attention.:confused:
Posted
Updated 27-Dec-10 12:24pm
v2
Comments
Dalek Dave 27-Dec-10 18:24pm    
Edited for Grammar and Readability.

1 solution

That sounds like you're doing the (time consuming) manipulation in the window's main thread. This will freeze your application. If you have to do lengthy stuff that runs for a while you should use a Thread or a BackgroundWorker to do it.

Cheers,

Manfred
 
Share this answer
 
Comments
Dalek Dave 27-Dec-10 18:25pm    
Spot on, doing it realtime eats resources.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900