我有一个ListBox
包含 2 个元素:item and price
.
我像这样添加它们:
lbtest.Items.Add(new ListBoxItem()
{
Content = item + prijs,
FontSize = 14,
Foreground = Brushes.Red
});
现在当然这会导致:
--------------------
Fries€2,00 // btw they are from Belgium NOT from France lol
Ketchup€0,30
Burger€2,00
Onion€0,10
SomeFood€2,00
SomeSubItem€500
--------------------
我玩过.PadLeft
,.PadRight
但这些并没有给我我想要的条件:
--------------------
Fries €2,00
Ketchup €0,30
Burger €2,00
Onion €0,10
SomeFood €2,00
SomeSubItem €500
--------------------
我可以使用某种计算来实现这一目标吗?
我ListBox
有一个静态宽度,也许我可以用它做点什么?