我在我的xaml中有以下綁定,我可以看到顯示的double值,但StringFormat
完全被忽略。StringFormat似乎沒有反應
<Label Content="{Binding ByteCount, StringFormat=n}"/>
ByteCount
屬性是double類型的。我甚至改變它甚至串起來,它仍然不起作用。
請問可能是什麼原因?
更新:
public double ByteCount
{
get
{
return CloneHelper.GetSize(this);
}
}
public static class CloneHelper
{
public static double GetSize(BookSetViewModel book)
{
.....
return total;
}
}
其中是綁定? –
也許你可以在你的問題中包含實際的綁定? (順便說一句:一個ByteCount屬性表示爲double !?) –
如果'ByteCount'是一個'int',則可能缺少一個轉換器。 –