Silverlight multiple line textbox
问题 I have looked at several code snippets where people suggest that the AcceptsReturn property of a textbox in Silverlight will enable multiple lines. My problem however is when I add a textbox with said property and explicity set the height or allow it to fill the container, the text sits vertically in the middle of the textbox. <Grid x:Name="LayoutRoot" > <TextBox TextWrapping="Wrap" Text="TextBox" AcceptsReturn="True"/> </Grid> I need the text to anchor to the top of the textbox. 回答1: Ensure