每次运行时TextBlock与文本不同

时间:2017-04-09 02:11:11

标签: wpf xaml data-binding

如何为每个运行命令绑定不同的文本?

<TextBlock>
    <Run Text="Sententce1" Foreground="Blue" FontSize="36" />
    <LineBreak/><Run Text="Sententce2" Foreground="Red" FontSize="22"  FontStyle="Italic"/>
    <LineBreak/><Run Text="Sententce3" Foreground="Blue" FontSize="36"/>
    <LineBreak/><Run Text="Sententce4" Foreground="Green" FontSize="36" FontWeight="DemiBold"/>
</TextBlock>

1 个答案:

答案 0 :(得分:1)

从.NET Framework 4开始,您可以绑定import java.util.Scanner; public class Triangle { public static void main(String[ ] args){ Scanner scan = new Scanner(System.in); System.out.println("enter no.of line you need"); int n = scan.nextInt(); for(int i=1;i<=n;i++){ for(int j=5;j>=i;j--){ System.out.print(j); } System.out.println(" "); }}} 元素的Text属性,就像绑定Run的{​​{1}}属性一样。< / p>

这意味着您可以定义三种不同的源属性并像往常一样绑定到这些属性:

Text