我正在Windows Phone 8上开发应用程序,但是当我从Web服务中选择数据时,它正在削减。
这是我的代码:
<Grid Background="Aqua">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<!--TitlePanel contains the name of the application and page title-->
<StackPanel Grid.Row="0" Margin="12,17,0,28">
<TextBlock Text="MY APPLICATION" Style="{StaticResource PhoneTextNormalStyle}"/>
</StackPanel>
<ScrollViewer Grid.Row="1" Background="Yellow" >
<ItemsControl>
<TextBlock Grid.Row="1" Foreground="Black" x:Name="tbIcerik" TextWrapping="Wrap" Text="{Binding Icerik}" Style="{StaticResource PhoneTextNormalStyle}">
</TextBlock>
</ItemsControl>
</ScrollViewer>
<!--ContentPanel - place additional content here-->
</Grid>
有人可以告诉我我做错了吗?
答案 0 :(得分:1)
请尝试在Textblock控件中添加边距
答案 1 :(得分:1)
穆罕默德,
如果您是Windows Mobility Designing的新手请点击此链接。它很容易理解 https://msdn.microsoft.com/en-us/library/windows/apps/jj207025%28v=vs.105%29.aspx
之后您也可以通过地铁设计指南。
由于
答案 2 :(得分:0)
文本块限制了可以打印的字符数。如果您获得的数据非常庞大,那么当您向下滚动时,数据的其他部分可能会被截断! 让我知道你得到的回应,以便我可以进一步帮助你
答案 3 :(得分:0)
将保证金添加到您的TextBlock名称tbIcerik,即保证金=&#34; 10,0,0,10和#34;。这将在正面和背面留下相等的空间。