|
by Keyvan Nayyeri via Keyvan Nayyeri on 6/9/2007 6:10:22 PM
The lowest level of working with elements in WPF is applying on demand rendering techniques to customize the look and feel of an element when it's being rendered. Using on demand rendering, you can change the way that an element is rendered in several ways. On demand rendering is nothing more than overriding some methods from base classes in control hierarchy. The most common method to override is OnRender(). But you can also override some other methods based on
... [ read more ]
|