public static void EditBottomElevation(RiverSimulationProfile profile, string title, int type, int index) { TableInputForm form = new TableInputForm(); form.SetFormMode(title, profile.inputGrid.GetJ, profile.inputGrid.GetI, "", "", "", TableInputForm.InputFormType.BottomElevationForm, 90, 120, true, false, false, profile.inputGrid.inputCoor); form.SetFormModeExtraData(GetStructureSet(profile, type, index)); DialogResult r = form.ShowDialog(); if (DialogResult.OK == r) { //p.levelProportion = (double[])form.SeparateData().Clone(); //ShowGridMap(PicBoxType.Sprate); //DrawPreview(); } }