9
我有十二個字符這樣一個隨機字符串的輸入:我希望他們能夠顯示這樣WPF字符串格式問題
ABABABABABAB
:
ABAB,ABAB,ABAB
如何以這種方式格式化字符串。我試圖使用StringFormat,但它似乎是錯誤的方法。
<TextBlock>
<TextBlock.Text>
<Binding Path="Key" Mode="OneWay" StringFormat="???" />
</TextBlock.Text>
</TextBlock>