Robert Brenckman

Results 123 comments of Robert Brenckman

I have created a pull request to resolve the suggestion about the API. I still request the display on the web interface though, since I don't know how to do...

I have a 2021/22 model WR147 (with the radial dial for menu navigation), and I am also interested in this project. I also have the ACS unit installed, so support...

OK, so essentially this library ALWAYS needs to specify some owner, so the default owner should be the main ViewModel of the application. In essence, you cannot spawn a standalone...

I have a followup question here. My application is a desktop app that will require some initialization before the main window opens up. During that initialization, various crashes/errors may occur....

Yea, that is actually what I'm ending up doing. I've reworked my initializing method to accept the viewmodel as a parameter to update the splash, then once its complete I...

I am using Visual Studio 2019. The project is a VSIX project, writing to Framework 4.7.2 and outputting to a class DLL. My source code is located here: https://github.com/RFBomb/XSDexeCustomTool For...

For now, I'm reverting to using DTE. Here is my working code: ``` EnvDTE.DTE dte = (EnvDTE.DTE)(Package.GetGlobalService(typeof(EnvDTE.DTE))); var rootDocumentItem = dte.Solution.FindProjectItem(ParentItem.FullName); rootDocumentItem.ProjectItems.AddFromFile(ItemToAdd.FullName); ``` As far as this issue is concerned,...

I'm actually currently testing a variation of the `ImmutableList` object that I had linked. Thus far, its passing all its tests as far as what would be expected of a...

I would like to say that (I Believe) the problem this post brought up is now resolved in my PR. I have bound a ListView control to the `ConcurrentList.ReadOnlyList` property,...

Not really close at all. I'm still setting my application up. Once I get it working, I'll double check all this with the test app. May be a while.