I have an ALPHA application which allows you grab an obfuscated font from and XPS file and store the .odttf file for use in Silverlight. The application "works" as in it does what it says on the tin, albeit in a very rough sort of way.

In the process of cleaning this tool up to create the BETA I can across an issue. I want the application to be laid out in a wizard style which would gather data from the user, like which font to use, where to save the extracted file, etc.

In the current implementation this is all done in the code behind (Actually it calls a helper class). But implementing a wizard means that each piece of the data is gathered on a different "page". I did not want to simple pass the data around using the page constructors as I am trying to implement MVVM which aims to keep the code behind clean.

I suppose what I am looking for is a data storage in code that persists windows. that way I can grab the data in my window (view), pass it to my viewmodel via binding and sent it down to the windows model(data class) to be stored somewhere.

I could use a database or XML file but that seems like overpowered storage for the few pieces of information I need.

So in summary, is there a way to have an in memory object that persists window calls and can be referenced by multiple models (classes).

Thanks!

link|improve this question

feedback

2 Answers

up vote 0 down vote accepted

Best way would be using the same ViewModel for all pages and then serializing it if you want to use it later.

public class MyViewModel
{
    // Properties to be serialized
    public string MyViewModelProperty1 = "";
    public string MyViewModelProperty2 = "";

    // Save to file.
    public virtual bool Save(string viewmodelFilePath)
    {
        try
        {
            Directory.CreateDirectory(Path.GetDirectoryName(viewmodelFilePath));
            StreamWriter write = new StreamWriter(viewmodelFilePath);
            XmlSerializer xml = new XmlSerializer(GetType());
            xml.Serialize(write, this);
            write.Close();
        }
        catch
        {
            return false;
        }
        return true;
    }

    // Load from file.
    public static object Load(Type type, string viewmodelFilePath)
    {
        StreamReader reader;
        object settings;
        XmlSerializer xml = new XmlSerializer(type);

        try
        {
            reader = new StreamReader(viewmodelFilePath);
            viewmodel = xml.Deserialize(reader);
            reader.Close();
        }
        catch
        {
            viewmodel = 
                type.GetConstructor(System.Type.EmptyTypes).Invoke(null);
        }
        return viewmodel;
    }
}

Original code from Petzold book

link|improve this answer
I had thought of that but that is not being true to the MVVM model, if I went ahead with this I may as well not use MVVM. Surely there must be a way of creating an object before the first window opens that can be accessed by other classes in the implementation. Thanks for your input though! – deanvmc Jan 6 '10 at 13:32
Why do you say is not true MVVM? MVVM does not restrict you to use the same viewModel in different views... – Eduardo Molteni Jan 6 '10 at 13:41
Sorry true is the wrong word, but given my understanding of MVVM I would prefer to have 1 model view per model. I see what your doing though and it is a good suggestion for singular models, thanks for sharing! – deanvmc Jan 6 '10 at 15:26
While I will actually try to implement an in memory data store your method is essentially what I am looking for if taken in context so I have marked your reply as the answer! Cheers! – deanvmc Jan 6 '10 at 17:34
don't you think that serialization for sharing in memory data between a few classes is a little overkill? – AZ. Jan 7 '10 at 9:08
show 1 more comment
feedback

Static class or singleton to store your data and access it from all your views?

link|improve this answer
Is it possible to write to such a class? – deanvmc Jan 6 '10 at 15:24
feedback

Your Answer

 
or
required, but never shown

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