如何为每个运行命令绑定不同的文本?
<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>
答案 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