CommunityToolkit – Problem centering Image inside in a SettingsCard
(note – reposting from CommunityToolkit github repo which doesn’t seem very active – see https://github.com/CommunityToolkit/Windows/discussions/459 for original)
UpdateSourceTrigger=PropertyChanged not working until the DataGridTextColumn loses focus?
I’m trying to apply a binding for my datagrid so that I can capture the change to the cells as it happens (as the user types), but for some reason, I can only get to trigger the PropertyChanged event after the cell loses its focus. The same works flawlessly with a regular Textbox, meaning that the OnNameChanged and OnNameChanging events are triggered as soon as the key is down. I was also able to properly make it work with the datagrid by adding a custom column with a Textbox in it, however everything regarding tab navigation among all the cells in the DataGrid became really cumbersome after taking that approach.