Re: Grid Resizing: Can grid height increase automatically as new components are added to it?
Hello, generally speaking, you should avoid setting explicit size on Grid. If you remove the Width="something" and Height="something", the Grid will automatically adjust its size. This, however, may cause some problems in design time. So you can use the Design Time Size feature, which doesn't affect runtime. Have a look at this screenshot:
The markup generated looks like this:
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="d" d:DesignWidth="247" d:DesignHeight="236"
Note the d:DesignWidth/Height properties. They don't affect runtime. As long as your Grid doesn't have Width/Height property, it will automatically resized along with the browser.
shanaolanxing - I'll transfer to the Windows Azure team, and will have limited time to participate in the Silverlight forum. Apologize if I don't answer your questions in time.