/// <summary> /// 显示邻居小区信息 /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void 邻居小区ToolStripMenuItem_Click(object sender, EventArgs e) { if (Neighborfrm == null || Neighborfrm.IsDisposed) { Neighborfrm = new Neighbor_Zone(); } Neighborfrm.MdiParent = this; Neighborfrm.Show(); Neighborfrm.Bounds = new Rectangle(0, 340, 540, 280); }