AboutView not registered?
/// App.xaml.cs
Trying to load the AboutView but seem to forgot how with DI going.
Thank you for your help.

85 Replies
@Temporal Nightmare you registered it as the interface, but are asking for the concrete type.
But also, why the interfaces?
What do you mean ?
Because I want to follow the same patterns as DI
@leowest and others mentioned it, or someone did, maybe not them
you did in your setup, but your View is doing
The DI container knows how to fulfill IAboutViewViewModel, it does not know how to fulfill AboutViewViewModel.
(Also, that really should be named AboutViewModel, not AboutViewViewModel)
@Temporal Nightmare
ok sorry:(
sec
Okay, renamed them.
So how does one call a Window via [RelayCommand] if using DI?
I never said to not use DI.
I said you were requesting the wrong type from the container.
You registered the interface, but asked the DI container for the concrete type, you just need to ask for the interface instead.
public void ShowAbout()
{
var view = _serviceProvider.GetRequiredService<IAboutViewModel>();
} closer? I stil lcant do view.ShowDialog() or whatever it is. XD @jcotton42 can you save me? I feel like an idiot, I've been trying š¦ I appreciate your time
} closer? I stil lcant do view.ShowDialog() or whatever it is. XD @jcotton42 can you save me? I feel like an idiot, I've been trying š¦ I appreciate your time
Fetch the class, not the interface
What? I did both ways and both were wrong.
I tried just the normal Class AboutViewModel too
There's no need for an interface for every single view model you make
That's not what interfaces are for
Then what are they for?
I've seen 2 documents and some YT'ers use them for every VM
Then:


Seems okay? Or am I this blind š¦
interface keyword - C# reference
Use the
interface
keyword to define contracts that any implementing type must support. Interfaces provide the means to create common behavior among a set of unrelated types.well this confuses me
but either way, I did whatyou posted
but once I do var view ... what do i do after?
you here are fetching the implementation (concrete type) of the service, not the service itself
The service is registered as
IAboutViewModel
, and its concrete implementation is specified as AboutViewModel
So when you fetch a service called AboutViewModel
, it is not found
You instead need to register the class itself as a servicedo I even need to? I don't see how a About window with some product info and a OK button needs it.
If your interface has the required properties and methods for that
then yes
I hate this shit, all I want to do is MAKE MY APP
you will see them
not make a OS or a Government program š
but I don't know when to use interfaces or not, I keep getting confused š¦
Well I wouldn't use an interface for every single view model I make. An interface is like a common contract for multiple classes to adhere to... so something like
IViewModelBase
with common methods and functions that a group of view models must have, will make more sensebut what is a contract?
I hate buzzwords XD
An agreement between two or more parties
Well yes
That's the dictionary's definition and it fits here
The parties being classes, or other interfaces
and the agreement being methods, properties, etc...

I'm gonna upload to Github I guess
Because I'm going in circles
If I didn't need to impress people, I'd skip DI and just get the app done
But no, I need to do it so I can get work
Why are you fetching the class when you have registered the interface?
Of course the error is popping up
CAN ONE OF YOU MAKE UP YOUR MIND

^^^
Which is it š
.
That was in reply to the code I sent you, which registers the class
But you did not update that
Use an interface if you need to abstract the implementation from the contract consumers will use.
ILogger
is a great example. You have loggers that go to files, console, external sources, etc. Consumers likely don't care which specific implementation they are using, they just need to access the basic functionality of ILogger
I would not make interfaces for a view model (like delegate said)ok so no interfaces?
just for services like ILogger, IFileDialog etc
got it
App.xaml.cs
MainWindow.xaml.cs
Better? š
I deleted the 2 viewmodel interface files too
seems fine to me, assuming it runs
i don't work with wpf lol
so how do i call the window now? XD
apparently, can't use using on WPF windows, it's not WinForms
fair
I am going to assume this closes the
AboutView
?#region Commands
[RelayCommand]
public void ShowAbout()
{
var viewModel = _serviceProvider.GetRequiredService<AboutViewModel>();
var aboutWindow = new AboutView { DataContext = viewModel };
aboutWindow.ShowDialog();
}
#endregion
sorrt i had the wrong damn viewmodel
i want to SEE the view!
from MainWindow using MainWindowViewModel

I am going insane
I just want to see a Window, it's a goddamn modding app, no modder cares about Interfaces, DI, etc.
But I'm trying to keep the structure as it helps reenforce it
can you, like, give a rundown on what is / isn't working right now?
MainWindow shows up fine, DI and all.
I go to Help => About, and expect it to open AboutView using MainViewModel
That's where my issue is at the moment
I'm trying š¦
I still need to do Velopack, which I will do once I get this part done. XD
Do you get any errors when you try to show the about view?

Yes
you shouldn't be requesting
AboutViewModel
from the service provider, you should be requesting AboutView
Because using Using (var view = new AboutView())
look at your constructors
doesn't work
ok so i dont even need var viewModel
i also don't see the point of including a
using
block for what you're doing[RelayCommand]
public void ShowAbout()
{
var aboutWindow = new AboutView { DataContext = viewModel };
aboutWindow.ShowDialog();
}
ok now we're down to 2 lines and stilll nothing
AboutViewModel.cs
i would expect this to break something
there's no need to explicitly set the
DataContext
with an object initializerI'm sure of it, because I have 0 idea of the proper way, even AI messed up
you're DI-ing the view model
true
and in this case
viewModel
could refer to a different type entirelyI would upload this to Github but it's not meant to be public, it's a special case project.
Can I just send you my solution / project? I don't want the entire world having or or AI to steal it. XD
struggle bus is part of the learning process
No thanks, I struggle enough
I just want a damn WINDOW to show up
God, even in VISUAL BASIC, its easy
but noooo, let's use DI and WPF and be confusing for idiots with autism and adhd like me!
my first suggestion is to try and isolate the problem; ignore your commands and stuff for now. use a codebehind handler and try displaying the window within your
MainWindow
class
likeI'm almost 50, I give 2 shits if I'm hired, which I won't be as I'm a ex-felon and have no future and AI will take all our jobs anyway
So let me have this one moment
That's a horrible decision, according to big youtubers who are also coders.
I said isolate the problem, not stick with that solution forever
ĀÆ\_(ć)_/ĀÆ
Fair enough, I'll try it that way.
The end user doesn't even give a damn anyway, they're not coders.
DI, Services, Interfaces, etc is a job / team thing
Not a end user requirement anyway
I'm only doing it to keep up with it and I can't even do that it seems š

finally!
Well it works anyway!
sweats
:Blob:
I appreciate your time ded, delegate, leo, jcotton, I just wish I could tell the difference better when it comes to when to use interfaces/services. I get it right half the time anyway. And I do love WPF since leo and others got me finally to figure it out and eventually I'll toy with Avalonia once I get WPF under mybelt more.
avalonia is heavily inspired by wpf so some of the stuff you learn will translate over well enough
Yep, was watching Kevin (Keboo) and it looks pretty similar besidess being cross platform of course.
I did told u to learn DI and lifecycles etc, never said anything specific about interfaces etc, just want to clear that out.
Yeah, DI isn't bad at all, not sure where I got the Interfaces from, could of been an article I read too.
https://medium.com/@shalahuddinshanto/dependency-injection-in-wpf-a-complete-implementation-guide-468abcf95337 I think this is what confused me and I used Interfaces for everything then XD
yeah I dont recall even giving u any article either heh well glad u sorted out... I just got home do u still have any issue?
well now I have one with TreeView with Matertial design, which worked before w.o Material Design so not sure lol

nm it works if I hard code the colors in, will try to find the compatable Material ones
Do you use Material Design or Fluent or roll your own?
Style="{StaticResource MaterialDesignWindow}" Oh, forgot this. š
depends on the requirement honestly, if its an internal tool I usually barely add anything
if its something facing outside I will evaluate based on delivery time, demand, etc
Ah
wpfui, material design are my fav for wpf thou
I like Material Design a lot now, it has more controls, more ways to do stuff.
I can't figure out how to change the colors of the buttons yet with it but it's a start
Since I don't wanna break the "Theme"
they have a wiki in their github u can look at but u have for example
Oh, yeah forgot, that's in App.xaml
Now I know where to look, thanks š
Any class is already an abstraction, you don't need an interface. DI is for passing it its private dependencies automatically.