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
}