我想建立了Windows Phone 8.1應用程序,有一些東西是真正困擾我: [看這個] http://i.imgur.com/XO7oOmT.png在WP8.1自動添加一個換行符到文本框XAML
正如你所看到的當文本到達結尾時,TextBox不會創建並轉到新行。我該怎麼辦?我試着用谷歌搜索它,但無法真正找到它(我相信我使用了錯誤的關鍵字,但我都是新手)。
不管怎麼說,這裏是我使用的XAML代碼(有一些事情我已經在谷歌找到,但沒有工作)
查看「contentTextBox」:
<Grid x:Name="LayoutRoot" Background="WhiteSmoke">
<Grid.ChildrenTransitions>
<TransitionCollection>
<EntranceThemeTransition/>
</TransitionCollection>
</Grid.ChildrenTransitions>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<!--TODO: Content should be placed within the following grid-->
<Grid Grid.Row="0" x:Name="TitleRoot" Margin="0,0,0,0">
<TextBox x:Name="titleTextBox" Text="Title"/>
</Grid>
<Grid Grid.Row="1" x:Name="ContentRoot" Margin="0,0,0,0">
<StackPanel Height="Auto">
<TextBox x:Name="contentTextBox" Text="" HorizontalAlignment="Stretch" VerticalAlignment="Top" AcceptsReturn="True" Width="Auto"/>
</StackPanel>
</Grid>
</Grid>
哦,我簡直不敢相信。但我仍然有一個問題:我是一個外國人(我已經翻譯過「文字包裝」,但沒有多大幫助),我仍然不確定「TextWrap」的真正含義。在一些文本中,我嘗試使用不同設置的TextWrap(NoWrap,Wrap等),我根本沒有看到任何區別。 – 0x7067