Is there something like an "OnPaint" method in Silverlight?
Back when I was writing C++, I found that it was easy to use the OnPaint event to customize the display of a class to the screen?
Is there an equivalent in Silverlight? If I want to do something when a UserControl is displayed on the screen, what method would I override?
I noticed this post: C# WPF OnPaint method alternative? but it seems that in Silverlight, thre is no "OnRender" method for a UserControl class.