WPF Paint App with WriteableBitmap
Instead of drawing a line, use interpolation. Store the last "n" mouse points that have been received and pass them into an interpolation algorithm that spits out a list of points. Then loop over the...
View ArticleWPF Paint App with WriteableBitmap
Thank you for your sharing, oO0jinx0Oo. Other member who has the same question as yours will get a good solution.Annabella Luo[MSFT] MSDN Community Support | Feedback to us
View ArticleWPF Paint App with WriteableBitmap
Ok, my friend found a solution private void myCanvas_MouseMove(object sender, MouseEventArgs e) { Point position = e.GetPosition(myCanvas); wbitmap.DrawLine((int)oldposition.X, (int)oldposition.Y,...
View ArticleWPF Paint App with WriteableBitmap
Hi, I have been currently developing a Pain app using WriteableBitmap + http://writeablebitmapex.codeplex.com/ (Extended WriteableBitmap) in VisualStudio 2010 using WPF.In the first day i encountered...
View Article