i have a listView and i want a specific column has a thousand separator
i use this code but it doesnt work
<GridViewColumn x:Name="Fpricecolumn" DisplayMemberBinding="{Binding price, StringFormat={}{0:N0}$}" Header="price" Width="180"/>
but its look like this
id      price
1       2000$
2       20000$
3       1000$
(i want it like this)
id      price
1       2,000$
2       20,000$
3       1,000$
i think its becuse price column in my database (which my listView bind with that) is nvarchar(string)