0
votes

I am having a User Control which contains only one textbox and save button. I am showing this user control as Dialog window. After user enter comments in textbox and click on save button, I am closing the dialog window.

I am succesful doing this. My issue is I want to pass the textbox value to the main window. How can I pass this ? Here is my Code

//Showing the Window

 var window = new RadWindow
           {
              Owner = Application.Current.MainWindow,
              WindowStartupLocation = WindowStartupLocation.CenterOwner
           };          
        window.Content = control;
        window.SizeToContent = true;
        window.Header = header;  
        window.ShowDialog()

Closing the Window in ViewModel using ICommand

private void SaveCommentExecute()
    {
        var window = Application.Current.Windows.OfType<Window>().SingleOrDefault(x => x.IsActive);
        if (window != null)
        {
            window.Close();
        }
        // get comments and pass back to main window
    }
2
There are multiple ways of doing this and NUMEROUS resources on the internet on this topic. What makes your case special??walther
@walther I haven't seen examples with User controlChatra
Hint : you need a dialog service if you are serious about MVVM. The model then uses the service to create the dialog and to catch the return code from showing it.Philip Stuyck

2 Answers

2
votes

Just expose the value through a property on your control:

public string TheValue
{
    get { return theTextBox.Text; }
}

And read it from where you show the dialog:

window.ShowDialog();
string value = control.TheValue;

(not sure why you tagged your question "MVVM", because the code you posted doesn't seem to follow the MVVM pattern)

0
votes

You are using ShowDialog, but not any of the wonderful features it has...

In the class that shows the dialog:

if (window.ShowDialog() && window.DialogResult.Value == true)
{
    //Access the properties on the window that hold your data.
}

And then in the dialog itself:

if (window != null)
{
    this.DialogResult = true;
    //Set the properties to the data you want to pass back.
    window.Close();
}