public frmThematicDocContents(frmMapTitleGallery _frm) { InitializeComponent(); this.flowLayoutPanel_ThematicDoc.VerticalScroll.Visible = false; parentForm = _frm; parentForm.Visible = false; }
private void btn_Xianzhuang_Click(object sender, EventArgs e) { frmMapTitleGallery frmGallery = new frmMapTitleGallery(this); frmGallery.DataPath = clsConfig.PlanningMapXianzhuangFolder; frmGallery.GalleryTitle = "现 状 图"; frmGallery.Show(); }
private void btn_Fenxi_Click(object sender, EventArgs e) { frmMapTitleGallery frmGallery = new frmMapTitleGallery(this); frmGallery.DataPath = clsConfig.PlanningMapFenxiFolder; frmGallery.GalleryTitle = "分 析 图"; frmGallery.Show(); }
private void btn_Guihua_Click(object sender, EventArgs e) { frmMapTitleGallery frmGallery = new frmMapTitleGallery(this); frmGallery.DataPath = clsConfig.PlanningMapGuihuaFolder; frmGallery.IsShowPlanningDocs = true; frmGallery.GalleryTitle = "规 划 图"; frmGallery.Show(); }
public frmAtlasContents(frmMapTitleGallery _frm) { InitializeComponent(); this.flowLayoutPanel_Status.VerticalScroll.Visible = false; this.flowLayoutPanel_Planning.VerticalScroll.Visible = false; this.flowLayoutPanel_Analysis.VerticalScroll.Visible = false; parentForm = _frm; parentForm.Visible = false; }
public frmMapView(MainForm _rootForm, Form _frmGallery) { InitializeComponent(); rootForm = _rootForm; galleryForm = (frmMapTitleGallery)_frmGallery; galleryForm.Visible = false; clsGISTools.FullExtend(this.axMapControl1); }