-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Get started with WPF #2535
Get started with WPF #2535
Conversation
@dotnet/efcore does anyone else want to review before I squash and merge? |
// this forces the grid to refresh to latest values | ||
categoryDataGrid.Items.Refresh(); | ||
productsDataGrid.Items.Refresh(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't need to call these if you implement INotifyPropertyChanged
. Unless we set the fields directly by default, in which case, you should configure EF to set via properties for the best experience.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I added a section to explain property change notification.
samples/core/WPF/GetStartedWPF/GetStartedWPF/MainWindow.xaml.cs
Outdated
Show resolved
Hide resolved
@bricelam all changes are implemented and pushed, just waiting confirmation before I squash/merge |
LGTM |
Initial draft for review