cplotts
|
Registered User
|
I'm a user interface centric developer with designer tendencies. I love building controls with Microsoft technologies, most recently in WPF and Silverlight.
|
|
Nov 26 |
comment |
How Can I Use the Visual State Manager in Blend for WPF Applications? Good point! I had forgotten to mention that (about also needing the WPF toolkit for Blend 3). I also love using VSM with UserControl(s) ... and I agree ... totally useful! |
|
Nov 25 |
awarded | ● Notable Question |
|
Nov 25 |
revised |
How Can I Use the Visual State Manager in Blend for WPF Applications? Some more info ... |
|
Nov 25 |
answered | How Can I Use the Visual State Manager in Blend for WPF Applications? |
|
Nov 25 |
asked | How Can I Use the Visual State Manager in Blend for WPF Applications? |
|
Nov 25 |
answered | WPF and VSM - List of States? |
|
Nov 10 |
awarded |
● |
|
Nov 6 |
answered | Save WPF image with Shader effects applied |
|
Oct 22 |
comment |
What is your longest-held programming assumption that turned out to be incorrect? I learn this and then forget it ... and then learn it and then forget it ... |
|
Oct 17 |
awarded | ● Civic Duty |
|
Oct 17 |
comment |
Can WPF render a line path with 300,000 points on it in a performance-sensitive environment? If this approach doesn't work for you, try using an Image control with a dynamically generated DrawingImage. As I mention in stackoverflow.com/questions/952657/…, Pavan Podila mentions that this approach scales quite well ... and might help you out if you don't have to interact with the points ... and even then you can get smart about it. See page 25 of his WPF Control Development Unleashed book for more info. |
|
Oct 17 |
answered | Most performant way to graph thousands of data points with WPF? |
|
Oct 15 |
accepted | How to change color of border in a usercontrol using trigger with its custom property? |
|
Oct 13 |
revised |
Can WPF render a line path with 300,000 points on it in a performance-sensitive environment? Adding more references ... |
|
Oct 13 |
revised |
Most performant way to graph thousands of data points with WPF? Just adding some more references ... |
|
Oct 12 |
accepted | Expression blend tutorials? |
|
Oct 6 |
revised |
Good resources for learning WPF Adding a MVVM link ... |
|
Oct 6 |
answered | Good resources for learning WPF |
|
Sep 27 |
comment |
What is your best programmer joke? Ok, I hurt myself. |
|
Sep 27 |
comment |
What is your best programmer joke? I'm sorry, this one should be be near the top. +1. Hahahaha. |
|
Sep 27 |
revised |
Can WPF render a line path with 300,000 points on it in a performance-sensitive environment? Ooops ... another one ... |
|
Sep 27 |
comment |
Can WPF render a line path with 300,000 points on it in a performance-sensitive environment? I wasn't suggesting the use of bitmap effects and neither was AgileJon (in my understanding). He was just pointing out that they can be a source of performance problems ... since they can at times force software rendering to occur |
|
Sep 26 |
comment |
Can WPF render a line path with 300,000 points on it in a performance-sensitive environment? Bitmap effects (prior to .NET 3.5 SP1) were the source of performance problems ... since .NET 3.5 SP1 thunks bitmap effects down into actual GPU effects (in most cases) it is less of a problem now ... but then only 2 bitmap effects were offered as baked in GPU effects (drop shadow and blur). |
|
Sep 26 |
comment |
Can WPF render a line path with 300,000 points on it in a performance-sensitive environment? Wonderful! Glad to hear it! |
|
Sep 26 |
accepted | Can WPF render a line path with 300,000 points on it in a performance-sensitive environment? |
|
Sep 26 |
comment |
Easiest way to draw a sequence of points in WPF from code Thanks ... glad it was what you were looking for. |
|
Sep 26 |
comment |
Most performant way to graph thousands of data points with WPF? You're using DrawingVisual? That's odd that should have given a huge performance boost ... |
|
Sep 26 |
accepted | Easiest way to draw a sequence of points in WPF from code |
|
Sep 26 |
revised |
Expression blend tutorials? Added another couple links |
|
Sep 26 |
answered | Expression blend tutorials? |
|
Sep 26 |
awarded | ● Yearling |
|
Sep 25 |
comment |
Easiest way to draw a sequence of points in WPF from code I don't quite what you are trying to do ... but don't forget about InkCanvas which allows you to 'ink' on top of something ... in a relatively easy way. But InkCanvas doesn't answer your question, so I thought I would comment instead. |
|
Sep 25 |
answered | Easiest way to draw a sequence of points in WPF from code |
|
Sep 25 |
comment |
What do you use to keep notes as a developer? I use this too ... and I have work notes going back 15 years. |
|
Sep 25 |
answered | DrawingImage always draws in upper left, regardless of coordinates supplied |
|
Sep 25 |
comment |
Most performant way to graph thousands of data points with WPF? +1 for pointing to more performant ways of doing it. |
|
Sep 25 |
comment |
Most performant way to graph thousands of data points with WPF? In overriding OnRender, be careful of trying to drive WPF like an immediate mode drawing system versus the retained mode system that it is. You will lose performance that way. |
|
Sep 25 |
comment |
Most performant way to graph thousands of data points with WPF? For the record, I like many of the suggestions above ... especially downsampling the number of points. Obviously, that approach could be used in conjunction with programming against the Visual layer. |
|
Sep 25 |
answered | Most performant way to graph thousands of data points with WPF? |
|
Sep 25 |
comment |
Most performant way to graph thousands of data points with WPF? PresentationSource.FromVisual(visual).CompositionTarget.TransformToDevice.M11 will get you the factor to convert from logical units to device units. See wpftutorial.net/DrawOnPhysicalDevicePixels.html/… for more info. |
|
Sep 25 |
comment |
Most performant way to graph thousands of data points with WPF? +1 for a great and common sense idea. |
|
Sep 25 |
comment |
Most performant way to graph thousands of data points with WPF? Don't you mean WindowsFormsHost ... as the way to interop the Windows Forms graphing component? +1 for the idea to interop in something more performant. Realize, though, that this approach will limit you in how you can compose WPF things on top of the Windows Forms graphing component. This is how our current application does things and it works rather well ... but now we want to start composing things on top of our graphing component ... and this is leading us to rewrite our graphing component in WPF. |
|
Sep 25 |
revised |
Can WPF render a line path with 300,000 points on it in a performance-sensitive environment? Just mentioning Matthew's section in Chapter 14 ... |
|
Sep 25 |
comment |
Can WPF render a line path with 300,000 points on it in a performance-sensitive environment? Don't you mean bitmap effects? Instead of shader effects? |
|
Sep 25 |
comment |
Can WPF render a line path with 300,000 points on it in a performance-sensitive environment? +1 for the idea to minimize the points on the line based on the resolution of the device. Very smart. |
|
Sep 25 |
answered | Can WPF render a line path with 300,000 points on it in a performance-sensitive environment? |
|
Sep 25 |
comment |
Can WPF render a line path with 300,000 points on it in a performance-sensitive environment? OnRender may be more performant than some approaches ... but be careful about trying to drive WPF in an immediate mode manner (which overriding OnRender might encourage you to do) ... WPF is a retained mode composition system. I myself have been bitten by doing just this. |
|
Sep 25 |
comment |
Hidden features of WPF and XAML? +1 for humor. Nice. |
|
Sep 25 |
comment |
How to change color of border in a usercontrol using trigger with its custom property? Glad to help and happy to have guessed at what you were looking for. |
|
Sep 24 |
comment |
WPF. Axis system You can bind to ActualWidth and ActualHeight since they are dependency properties ... but you will need to use a value converter to divide by 2. Simple enough to do ... but clutters up the answer. :) |
