Yves Goergen

Results 295 comments of Yves Goergen

I don't see what you really did and what data you have, or even where you call the msgpack code. I'd think that `slice(0)` is kind of a no-op. Maybe...

Isn't this a bug in DataView? Sorry, I don't know what to do here. After looking up what DataView.getUint32 does, I believe that there should be no difference between the...

Yes, we can! :-) This is the basic lazy loading pattern. You first add a dummy child under each tree node you want to expand. When the node is expanded...

I'll look into it. But in the meantime, what keeps you from accessing the current SelectedItems property in your event handler? I'm not sure whether it can be easily determined...

Ehm, to my knowledge, according to the MVVM pattern, event handlers belong in the code behind and not in the view model. View and view model are practically only connected...

I probably never needed such a method. It's been a while, but I guess I looked at .NET's `Queue` class and its methods when I created this API. So there's...

Sorry, no work is going on here at the moment or in the foreseeable future. I might take a look at a pull request if you could provide one. Not...

You can bind this view property to your view-model class and react on the property changed. That's how I do it, also for implementing lazy loading of child items. Does...

I use that in my TxEditor application, you can [view its source code here](https://github.com/ygoe/TxTranslation/blob/master/TxEditor/ViewModels/TreeViewItemViewModel.cs). The `TreeViewItemViewModel` class is a base class for all view models that are used as tree...

@xyrus02 Isn't a focused control in an inactive window still "focused"? This is an issue with a lot of UI controls that just don't regard the top-level window state like...