Комментарии:
Thanks!
ОтветитьAs always, this is another awesome tutorial. Thank you very much for the great explanation 👍
Ответитьthanks! perfect lesson
Ответитьexplains a lot, thanks
ОтветитьHow is it possible to make a new DataGrid and show how many for example Doctor is in list?
Ответитьanother perfect lesson.
ОтветитьI want to make filtering to datagrid with datatable or dataview not observable collection.i try it but the datagrid didn't updated anywhere
ОтветитьGreat work 👏
ОтветитьHi thank u so much for your time&efforts here but I have a qst : List<Room> and every single Room have some Desktop so my List is a list of a list of Desktop how i could visualize all of this in a listBox with the template of subItem that mean that i see something like this:
Room a
Desktop 101
Desktop 104
Room b
Desktop 234
Desktop 123
Desktop 453
Desktop 498
Room c
Desktop 365
Desktop 908
Desktop 187
Room d
Desktop 007
Room n
Desktop 980
Desktop 1001
As we know in the list they re already grouped by a room ;)
I am using json for import the list<Room>
In a Wpf desktop app
Thank u in advice
Thanks Sean!
ОтветитьThanks SingletonSean for this video, could you please activate subtitles? please please.
ОтветитьCan I dowoad the source code?
ОтветитьHow to use this CollectionView if I bind to the Model in the code-behind like this:
var newBinding = new Binding(string.Format("[{0}]", i));
var currentColumn = new DataGridTextColumn
{
Binding = newBinding,
Header = header
};
MyDataGrid.Columns.Add(currentColumn);
Sean, your videos are always extremely helpful and I've learned a lot from them. I have one question: What happens if the ObservableCollection is loaded async into an async ViewModel, like in your MVVM full stack episode #4 ? Having tried this, the ObservableCollection gets hydrated after the view model is returned, so placing the CollectionViewSource initialization in the ViewModel constructor or the static "factory" method you create in that episode results in the CollectionView never getting populated. What would be an elegant solution for this ?
ОтветитьThanks for the video. Just a heads up that filtering can now be done using the DataGridExtensions NuGet package
ОтветитьMy application views are eventually bound to a database search query collection which is a subset of the entire db as filtered by the query. This can still be a lot of data. The resulting query has many more useful column elements than I want to display at first. What I actually would actually like to be able to do is selectively enable a subset of those data columns making them visible then have a user control which can dynamically enable/disable the visibility of other columns having useful data by using some sort of column enable/disable visibility selector mechanism.
ОтветитьI was wondering if you can apply the same concept on Treeview?
ОтветитьMuch needed tutorial thank you !
Ответитьlove your contribute and learnt a lot...first time I have spended thru paypal @lalji Goti ....Thanks
ОтветитьReally nice!! I did something very similar in my application. But how to highlight the search text? Maybe a style inside the xaml listview?
ОтветитьVery nice video, have you found a good solution for sorting groups? The best way I've got is making sure to populate the collection in the right order. But that's not dynamic or often even possible.
ОтветитьThank you so much for making this video. :)
Ответить