Pass value to Child Window form Parent Page
问题 I Need pass the Value to child Window.In child window there is two Text boxes.I need to show the value in child window Text box while while its getting opened. I tried the following way,My Child window class as follows, public partial class ChildWindow:ChildWindow { public int abc {get;set;} public string value{get;set;} public ChildWindow() { InitializeComponent(); this.txtbox1.Text = abc ; this.txtbox2.Text = value; } private void OKButton_Click(object sender, RoutedEventArgs e) { this