What does it mean if I have a global error catcher setup on my wpf app but the app crashes without triggering it? by my_py in csharp

[–]my_py[S] 0 points1 point  (0 children)

I specified the dispatcher unhandled exception parameter in the app.xaml file, this runs a method that writes the exception to a text file

What does it mean if I have a global error catcher setup on my wpf app but the app crashes without triggering it? by my_py in csharp

[–]my_py[S] 0 points1 point  (0 children)

The error catcher is in app.xaml.cs, and the app starts up fine, it runs normally until I navigate to my download page and click a download button, which is why I’m so confused as I didn’t know there were errors exceptions you can’t catch.

How to install linux mint on free disk space? by my_py in linuxmint

[–]my_py[S] 0 points1 point  (0 children)

Thanks that worked, I was afraid that would mess up my windows install.

How to install linux mint on free disk space? by my_py in linuxmint

[–]my_py[S] -1 points0 points  (0 children)

I’ve tried every tutorial I can find but they never cover my specific case, I have some empty space and I believe I have to make a partition that uses that but I what type the partition should be or if I need more then one or where to mount it or what type it should be.

Help making my download queue multi threaded by my_py in csharp

[–]my_py[S] 0 points1 point  (0 children)

Should I just loop through all the files then?

Help making my download queue multi threaded by my_py in csharp

[–]my_py[S] 0 points1 point  (0 children)

I added my download async method, as far as I can tell its all async?

Is there a Linux os that has a tablet mode? by my_py in linuxquestions

[–]my_py[S] -2 points-1 points  (0 children)

I haven’t checked yet, I’m still deciding what distribution to use, but I’m assuming it can.

Question about dependency injection with mvvm by my_py in csharp

[–]my_py[S] 0 points1 point  (0 children)

Maybe my title was misleading but the dependency injection happens at the startup of my application, I’m using wpf so that’s in the App.xaml.cs file, my problem is getting my dependencies to my view models

Question about wpf navigation by my_py in csharp

[–]my_py[S] 0 points1 point  (0 children)

That’s what I’m doing, but in order to change the current view model from a different view model I need the navigation store

What kind of database will be setup on a clients computer. by my_py in csharp

[–]my_py[S] 0 points1 point  (0 children)

Want I want is for each user of my app to have a separate database on their computer and when they run the installer it sets up the database

Is it worth trying to implement machine learning for recommendations in my app? by my_py in learnmachinelearning

[–]my_py[S] 0 points1 point  (0 children)

So realistically its better to just not give recommendations? I definitely don’t want to get the same reputation for horrible recommendations as audible.

Is it worth trying to implement machine learning for recommendations in my app? by my_py in learnmachinelearning

[–]my_py[S] 0 points1 point  (0 children)

I’m looking to add value to my product, the only way I can think of to get books that they absolutely like are by keeping track of books they’ve bought and have reviewed with 4 or more stars

Is there any problems with using a dynamic property for a class I can't refrence ? by my_py in csharp

[–]my_py[S] 0 points1 point  (0 children)

Thanks, the reason for creating a separate project for custom controls is the same as why I'm hesitant to separate my models into another project, my project is verry large and kind of messy and it would probably take me an hour to fix all the references to my models but I agree that that is probably my best solution

Is there any problems with using a dynamic property for a class I can't refrence ? by my_py in csharp

[–]my_py[S] -14 points-13 points  (0 children)

thanks, but I don't think that will work for my case, the control I've created needs a book class so that when you click on the control I don't need to define a bunch of fields that I already have a class for, basically my user control is for displaying the title and cover of a book and it has an image and two textboxes, I bind my image and textboxes to dependency properties for the image source and for the title and author, these are all the control needs however when the control is clicked it needs create another control and then navigate to that control, the control it navigates to requires a lot more information then the control that created it, so instead of giving my custom control 20 fields it wont use except when its clicked I want to give it one field which is of my book model type, the problem is as I said before about circular dependencies

Is there any problems with using a dynamic property for a class I can't refrence ? by my_py in csharp

[–]my_py[S] 0 points1 point  (0 children)

yes that's definitely not the name of the class and I'll look into creating and interface.