silverlight control size
The control that I have built开发者_Go百科 is of size 30x30. however, when the control is rendered, it takes up most of the space on the browser? Why is that so?
Any way to reduce the size to what is desired?
Thanks!
Look at your object tag's width and height attributes.
<object width="300" height="300"
data="data:application/x-silverlight-2,"
type="application/x-silverlight-2" >
<param name="source" value="..."/>
</object>
精彩评论