Silverlight学习笔记四(父窗体取得子窗体返回的值) - 大气象学习园地 ...
这里比较类似WinForm的对话框,与WebForm开发xx不一回事了。
新建Silverlight子窗口
大气象
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;

namespace SilverlightXML
{
    
public partial class ChildWindow1 : ChildWindow
    {
        
public string resultVal = "";//子窗体中设置public
        public ChildWindow1()
        {
            InitializeComponent();
        }

        
private void OKButton_Click(object sender, RoutedEventArgs e)
        {
            resultVal 
= txtInput.Text;//前台放个输入框
            txtInput.Text = "";
            
this.DialogResult = true;
        }

        
private void CancelButton_Click(object sender, RoutedEventArgs e)
        {
            
this.DialogResult = false;
        }
    }
}

父窗体中调用

大气象
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;

namespace SilverlightXML
{
    
public partial class TestPage3 : UserControl
    {
        ChildWindow1 child 
= new ChildWindow1();
        
public TestPage3()
        {
            InitializeComponent();
            child.Closed 
+= new EventHandler(Child_Close);  //在父窗体注册子窗体的关闭事件
        }
        
private void Child_Close(object sender, EventArgs e)
        {
            
bool? result = child.DialogResult;

            
if (result.HasValue && result.Value)
            {
                MessageBox.Show(
"子窗体返回:" + child.resultVal);
            }
        }
        
private void btnChild_Click(object sender, RoutedEventArgs e)
        {
            child.Show();
        }
    }
}

 

 

郑重声明:资讯 【Silverlight学习笔记四(父窗体取得子窗体返回的值) - 大气象学习园地 ...】由 发布,版权归原作者及其所在单位,其原创性以及文中陈述文字和内容未经(企业库qiyeku.com)证实,请读者仅作参考,并请自行核实相关内容。若本文有侵犯到您的版权, 请你提供相关证明及申请并与我们联系(qiyeku # qq.com)或【在线投诉】,我们审核后将会尽快处理。
—— 相关资讯 ——