6

在 Windows 应用商店应用程序中,有什么方法可以对 TextBlock 的内容应用 StrikeThrough 效果?如果没有,RichTextBlock 或任何类似的控件都可以。它是通过 XAML 还是以编程方式 (C#) 都没有关系,但我更喜欢通过 XAML,这样它就会显示在设计器中。

我在微软的文档中找到了这个,但我不知道如何使用它:http: //msdn.microsoft.com/en-us/library/windows/apps/windows.ui.text.itextcharacterformat.strikethrough.aspx

4

2 回答 2

15

Windows 应用商店应用拥有自己的控件命名空间 (System.Ui.Xaml.Controls)。您会看到适用于 Windows 应用商店应用的 TextBlock 没有 TextDecoration 属性:TextBlock 文档

“完整”的 .Net 4.5 TextBlock 确实具有 TextDecoration 属性:.Net 4.5 WPF TextBlock Documentation

您可以像这样以“hacky”方式执行此操作:

    <Grid Height="30">
        <TextBlock Text="This is a test" FontSize="22" Height="34" HorizontalAlignment="Center" Foreground="White"   />
        <Line Stretch="Fill" Stroke="white" StrokeThickness="2 " X1="1" Width="120" VerticalAlignment="Center"  HorizontalAlignment="Center"   />
    </Grid>
于 2012-10-07T21:03:43.080 回答
3

看来这毕竟是不可能的:

“我们将无法为 Windows 8 的 XAML 框架的最终实现包含 TextDecoration 类。这意味着您将无法使用删除线功能,但您仍然可以通过 Underline 类为文本添加下划线。 "

http://social.msdn.microsoft.com/Forums/en-CA/winappswithcsharp/thread/cba0c363-60da-4e4e-9fc1-93f7c3658aff

但是,微软正在努力解决这个问题:

“这是 Windows 8 开发人员预览版中 XAML 文本故事的一个已知限制。从好的方面来说,这是一个计划在不久之后进行改进的领域,我们希望解决这个问题。”

http://social.msdn.microsoft.com/Forums/en-US/winappswithcsharp/thread/d5362fe2-48f6-448d-92ae-25216345c46d

于 2012-10-07T20:43:47.350 回答