Text="{Binding PlayletModel.characters,StringFormat=Cast : {0}}"
StringFormat=Cast : {0}
上面的意思就是将int类型数据[characters]前面加文本[Cast : ]
例如:
characters=50
输出:
Cast : 50
注意=号后面一定要有字符串,具体格式规则请在使用中尝试
2024-03-24 23:16:52
Text="{Binding PlayletModel.characters,StringFormat=Cast : {0}}"
StringFormat=Cast : {0}
上面的意思就是将int类型数据[characters]前面加文本[Cast : ]
例如:
characters=50
输出:
Cast : 50
注意=号后面一定要有字符串,具体格式规则请在使用中尝试