wpf-core

Installer for .net core 3 wpf/winforms (non MSIX)?

↘锁芯ラ 提交于 2020-06-09 04:08:29
问题 So, we finished a few wpf conversions to .net core, and now we have a need to ship one to an external client as an installer. Previously we used ClickOnce, but that has been deprecated in .net core and will not be ported according to MS, with them recommending MSIX. However, as we understood from docs, even though we'll sideload a WPF application it will still run in a sandbox with a virtualized file system. And that is a no go for us, it has obviously been designed with UWP+Marketplace

DataGrid CellEditEnding event not firing on a cell editing inside DataGridTemplateColumn

↘锁芯ラ 提交于 2020-05-17 05:46:12
问题 In the MyDatagrid_CellEditEnding(...) event (shown below) I am capturing the edited value of a cell whenever a cell of one of the three columns is edited by a user. After editing cell in second or third column, when I move out of that cell, I can see the CellEditEnding event getting called. But the same is not true for the first column that is a DataGridTemplateColumn column. That is, when I change a date in any cell in the first DataGridTemplateColumn , and move the cursor out of the cell,