public Form1()
        {
            InitializeComponent();
            fm2 = new Form2();
            fm2.Owner = this;
            fm3 = new Form3();
            fm3.Owner = this;
            fm4 = new Form4();
            fm4.Owner = this;
            richTextBoxtext = textBox1.Text;
            this.toolStripStatusLabel1.Text = "文件目录:现在还没保存请尽快保存,以免丢失数据!";///////在状态栏上显示文件的当前地址!
        }中的.Owner属性的意思。"获取和设置拥有此窗体的窗体."这句话什么意思啊.类实例副职给fm4.Owner是什么意思啊.