Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm developping a descktop application based en WPF (MVVM pattern) And i'm using MVVMLight-Toolkit, In my application there is a system of user authentication. The problem is: let's say that i have a ViewA, its dataContext is defined by a ViewModelA. Suppose tha User1 is logged to the application and navigates to the viewA, he does some stuff and after that he disconnects. when another user or the same user logon again and navigates to the same ViewA, he finds the lastest context of the previous user. I want to kill the instance of the ViewModel Created and create a new one for the new user. I tried to add a registration method to the ViewModelLocator

public static void RegisterViewModel<T>() where T : ViewModelBase
    {

        if (SimpleIoc.Default.IsRegistered<T>()
            SimpleIoc.Default.Unregister<T>();
        SimpleIoc.Default.Register<T>();
    }

but it doesn't work, the context is stayed. can you help me to solve this problem ? thx

share|improve this question

1 Answer

I found the solution I have to free the view that is using the instance of ViewModel as a datacontext And when i call

SimpleIoc.Default.Unregister();

all ViewModel instance created for the type T will be removed automatically

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.