Skip to content

Commit

Permalink
多行输入
Browse files Browse the repository at this point in the history
  • Loading branch information
zcbenz committed Apr 20, 2012
1 parent bd140cd commit d58a114
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ComposePage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
<TextBlock Text="标题" Style="{StaticResource PhoneTextSubtleStyle}" Grid.Row="2" />
<TextBox x:Name="TitleText" IsEnabled="{Binding IsLoading, Converter={StaticResource BoolReverseConverter}}" Grid.Row="3" />
<TextBlock Text="内容" Style="{StaticResource PhoneTextSubtleStyle}" Grid.Row="4" />
<TextBox x:Name="ContentText" TextWrapping="Wrap" IsEnabled="{Binding IsLoading, Converter={StaticResource BoolReverseConverter}}" Grid.Row="5" />
<TextBox x:Name="ContentText" AcceptsReturn="True" TextWrapping="Wrap" IsEnabled="{Binding IsLoading, Converter={StaticResource BoolReverseConverter}}" Grid.Row="5" />
</Grid>
</ScrollViewer>
</Grid>
Expand Down
2 changes: 1 addition & 1 deletion PostPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
<TextBlock Text="标题" Style="{StaticResource PhoneTextSubtleStyle}" />
<TextBox x:Name="TitleText" IsEnabled="{Binding IsLoading, Converter={StaticResource BoolReverseConverter}}" Grid.Row="1" />
<TextBlock Text="内容" Grid.Row="2" Style="{StaticResource PhoneTextSubtleStyle}" />
<TextBox x:Name="ContentText" TextWrapping="Wrap" IsEnabled="{Binding IsLoading, Converter={StaticResource BoolReverseConverter}}" Grid.Row="3" />
<TextBox x:Name="ContentText" AcceptsReturn="True" TextWrapping="Wrap" IsEnabled="{Binding IsLoading, Converter={StaticResource BoolReverseConverter}}" Grid.Row="3" />
</Grid>
</ScrollViewer>
</Grid>
Expand Down

0 comments on commit d58a114

Please sign in to comment.