I have developed a control in WPF used for charting, but there is a performance issue when I resize the control. Since I don't know how to make the performance better I have simply turned off rendering when risizing at the moment, but that does not look very nice. So my question is if it is possible to "freeze" the control as an image during resize to make it appear smooth.
Edit: The control is basically made of a scrollviewer which contains a custom virtualized panel. The scrollviewer can only scroll horizontal. The virtualized panel in the scrollviewer contains all other items such as the curves, the labels, the grid, etc.