The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
0answers
124 views

WPF UI interaction lagging, but why?

To demonstrate a problem I'm having, I've coded the simple example below that draws a curve, and a black line that follows the cursor. Can someone explain why when I increase "numPointsMul", ...
2
votes
2answers
96 views

Why is this very basic StreamGeometry (a square) not rendering in a Window's OnRender?

Ok, I'm stumped. Why is this not rendering the square? (Note, I purposely used positive and negative coordinates so it would display regardless of the origin. Didn't know if the x/y were reversed, ...
0
votes
0answers
56 views

How can you render a path in several locations?

We have a path defined which we would like to render in several hundred different positions during the OnRender override. We know about the PushTransform method on the DC, but that seems to require a ...
2
votes
2answers
516 views

How to redraw or refresh in OnRender?

I want to draw something dynamically. Following code shows my OnRender. I'm setting DrawItem somewhere in my program where I need it. But when I'm calling DrawItem =5; what do I have to call, so that ...
10
votes
3answers
4k views

How can I manually tell an owner-drawn WPF Control to refresh without executing measure or arrange passes?

We are doing custom drawing in a control subclass's OnRender. This drawing code is based on an external trigger and data. As such, whenever the trigger fires, we need to re-render the control based ...
2
votes
1answer
494 views

WPF OnRender Z-Order control?

I have a custom panel that implements a nice custom layout of its children. I want to add some extra graphics to the panel and so override OnRender to add extra rectangles etc. It works great except ...