-8
WPF DataGrid
無法保存十進制值。帶有十進制值的WPF數據格式
Binding="{Binding requiredQty,StringFormat={}{0:N2}}"
我需要更新與十進制值的單元格。
如何使保存十進制值成爲可能?
WPF DataGrid
無法保存十進制值。帶有十進制值的WPF數據格式
Binding="{Binding requiredQty,StringFormat={}{0:N2}}"
我需要更新與十進制值的單元格。
如何使保存十進制值成爲可能?
問題出在您的StringFormat
。在WPF中,您需要指定如下:
Binding="{Binding requiredQty, StringFormat='\{0:N2\}'}"
您可以在SO上找到關於此問題的大量信息。你應該使用搜索功能。我想這就是爲什麼你會爲這個問題得到很多贊成票。 –
[C#WPF DataGrid不顯示從SQLite 3數據庫的小數]的可能重複(https://stackoverflow.com/questions/39979343/c-sharp-wpf-datagrid-doesnt-show-decimal-from-sqlite-3 -數據庫) – Fiffe