将Azure中的字符串格式应用于TextBlock

本文关键字:格式 应用于 TextBlock 字符串 Azure | 更新日期: 2023-09-27 18:17:44

我使用Azure移动服务在我的应用程序中存储数据。我的一个字段被设置为nvarchar (max),并且在该字段内将是一长串时间。

以前,当我的数据存储在应用程序本身时,我会这样格式化字符串:

"标题文本'n•项目'n•项目'n•项目'n标题'n•项目'n "

这将在遇到"'n"时跳转到新行。现在,当从Azure中提取数据并将其绑定到TextBlock时,它不会跳到新行。

我已经看了看是否有一个MultiLine属性的TextBlock,并没有。什么好主意吗?

将Azure中的字符串格式应用于TextBlock

如果您将<TextBox> XAML控件中的AcceptsReturn属性设置为true,则它将以多行显示文本。下面的示例应用程序就是这样做的:

MainPage.xaml

<Grid x:Name="LayoutRoot" Background="Transparent">
    <Grid.RowDefinitions>
        <RowDefinition Height="Auto"/>
        <RowDefinition Height="*"/>
    </Grid.RowDefinitions>
    <StackPanel x:Name="TitlePanel" Grid.Row="0" Margin="12,17,0,28">
        <TextBlock Text="MY APPLICATION" Style="{StaticResource PhoneTextNormalStyle}" Margin="12,0"/>
        <TextBlock Text="page name" Margin="9,-7,0,0" Style="{StaticResource PhoneTextTitle1Style}"/>
    </StackPanel>
    <Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0">
        <Grid.RowDefinitions>
            <RowDefinition Height="80" />
            <RowDefinition Height="*" />
        </Grid.RowDefinitions>
        <Button Name="btnStart" Content="Click me"
                Click="btnStart_Click" />
        <TextBox AcceptsReturn="True" Name="txtDebug"
                 Grid.Row="1" />
    </Grid>
</Grid>

MainPage.xaml.cs :

public partial class MainPage : PhoneApplicationPage
{
    public static MobileServiceClient MobileService = new MobileServiceClient(
        "https://YOUR-APP-NAME.azure-mobile.net/",
        "YOUR-APPLICATION-KEY"
    );
    // Constructor
    public MainPage()
    {
        InitializeComponent();
    }
    private async void btnStart_Click(object sender, RoutedEventArgs e)
    {
        try
        {
            var table = MobileService.GetTable<Test>();
            var item = new Test
            {
                name = "Header Text 'n• Item 'n• Item 'n• Item 'n Header 'n• Item"
            };
            await table.InsertAsync(item);
            var inserted = await table.LookupAsync(item.id);
            this.txtDebug.Text = inserted.name;
        }
        catch (Exception ex)
        {
            this.txtDebug.Text = ex.ToString();
        }
    }
}
public class Test
{
    public int id { get; set; }
    public string name { get; set; }
}

编辑后更新到原文章。使用<TextBlock>同样有效。只要将文本块设置为超过一行的高度(在下面的示例中,通过将其绑定到网格单元格),它将正确显示多行,而不需要任何额外的属性(如文本框上的AcceptsReturn)。如果用下面的XAML文件替换上面的控制面板网格声明,您将看到文本块上将显示多行。

    <Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0">
        <Grid.RowDefinitions>
            <RowDefinition Height="80" />
            <RowDefinition Height="*" />
        </Grid.RowDefinitions>
        <Button Name="btnStart" Content="Click me"
                Click="btnStart_Click" />
        <TextBlock Text="This will be replaced&#10;after the call to the Mobile Service" Grid.Row="1"
                   Margin="10" Name="txtDebug"/>
        <!--<TextBox AcceptsReturn="True" Name="txtDebug"
                 Grid.Row="1" />-->
    </Grid>

我无法通过应用程序代码完成这一点。相反,我构建了一个简单的应用程序来加载数据库中的数据。加载数据后,我应用必要的格式并保存数据。然后在客户端应用程序中反映出来。