Resemblance between CSS and Silverlight

Explain the resemblance between CSS and Silverlight, regarding overlapping objects.

Silverlight content is hosted on the tag. CSS of DIV can be changed as it is for other HTML documents. The changes can be for absolute positioning, z-indexing, top and left properties etc.

The following tag depicts the way CSS changes for silverlight page.
<div style="height:100%;z-index:200;position:absolute;left:1px; top:14px;">


What kind of Brush does Silverlight support?
Silverlight brush objects supports for painting with solid colors, linear gradients, radical gradients and images. SolidColorBrush is used to paint a closed object such as rectangle...
Mouse events that Silverlight currently supports
The mouse events that supports silverlight are - LostMouseCapture - occurs when an UI element lost mouse capture...
MouseLeftButtonDown and MouseLeftButtonUp in Silverlight
The difference is the action of the button. Once mouse button is pressed MouseLeftButtonDown event is invoked...
Post your comment