private void fishId_DoubleClick(object sender, EventArgs e) { if (string.IsNullOrEmpty(txtdataForm.Text)) { MessageBox.Show("请选择数据来源"); return; } if (txtdataForm.Text.Equals("自制仓库")) { FormNewSelfcontrolWare form = new FormNewSelfcontrolWare( );//FormSelfcontrolWare if (form.ShowDialog( ) == DialogResult.OK) { FishEntity.BatchSheetsEntity _model = form.getModel; fishId.Text = _model.fishId; price.Text = _model.price.ToString( ); tvn.Text = _model.tvn; protein.Text = _model.protein; ash.Text = _model.ash; histamine.Text = _model.histamine; salt.Text = _model.salt; las.Text = _model.las; das.Text = _model.das; country.Text = _model.country; qualitySpe.Text = _model.qualitySpe; brand.Text = _model.brand; } } else if (txtdataForm.Text.Equals("自营仓库")) { FormNewPriWarehouse form = new FormNewPriWarehouse();// if (form.ShowDialog() == DialogResult.OK) { FishEntity.ProductQuoteVo _model = form.getModel; fishId.Text = _model.code; price.Text = _model.confirmrmb.ToString(); tvn.Text = _model.sgs_tvn.ToString(); protein.Text = _model.sgs_protein.ToString(); ash.Text = _model.sgs_graypart.ToString(); histamine.Text = _model.sgs_amine.ToString(); FFA.Text = _model.sgs_ffa.ToString();; salt.Text = _model.domestic_sandsalt.ToString(); las.Text = _model.domestic_lysine.ToString(); das.Text = _model.domestic_methionine.ToString(); qualitySpe.Text = _model.specification; country.Text = _model.nature; brand.Text = _model.brand; } } else if (txtdataForm.Text.Equals("报盘")) { FormQuote form = new FormQuote();// if (form.ShowDialog() == DialogResult.OK) { FishEntity.ProductQuoteVo _model = form.getModel; fishId.Text = _model.code; tvn.Text = _model.quote_tvn.ToString(); protein.Text = _model.quote_protein.ToString(); ash.Text = _model.quote_graypart.ToString(); histamine.Text = _model.quote_amine.ToString(); FFA.Text = _model.quote_ffa.ToString();; salt.Text = _model.quote_sandsalt.ToString(); qualitySpe.Text = _model.specification; brand.Text = _model.brand; country.Text = _model.nature; } } else if (txtdataForm.Text.Equals("现货")) { FormSpot form = new FormSpot();// if (form.ShowDialog() == DialogResult.OK) { FishEntity.ProductQuoteVo _model = form.getModel; fishId.Text = _model.code; price.Text = _model.quotermb.ToString(); tvn.Text = _model.sgs_tvn.ToString(); protein.Text = _model.sgs_protein.ToString(); ash.Text = _model.sgs_graypart.ToString(); histamine.Text = _model.sgs_amine.ToString(); FFA.Text = _model.sgs_ffa.ToString();; salt.Text = _model.sgs_sandsalt.ToString(); qualitySpe.Text = _model.specification; brand.Text = _model.brand; country.Text = _model.nature; } } else if (txtdataForm.Text.Equals("确盘")) { FormConfirm form = new FormConfirm();// if (form.ShowDialog() == DialogResult.OK) { FishEntity.ProductQuoteVo _model = form.getModel; fishId.Text = _model.code; price.Text = _model.quotermb.ToString(); tvn.Text = _model.quote_tvn.ToString(); protein.Text = _model.quote_protein.ToString(); ash.Text = _model.quote_graypart.ToString(); histamine.Text = _model.quote_amine.ToString(); FFA.Text = _model.quote_ffa.ToString();; salt.Text = _model.quote_sandsalt.ToString(); qualitySpe.Text = _model.specification; brand.Text = _model.brand; country.Text = _model.nature; } } }
private void buttom_Click(object sender, EventArgs e) { UIControls.ButtonEx currentBtn = sender as UIControls.ButtonEx; if (currentBtn == null) { return; } currentBtn.Image = ImageUtil.ButtomLeftImageSelected; foreach (UILibrary.PushPanel.PushPanelItem item in pushPanel1.Items) { foreach (Control ctl in item.Controls) { UILibrary.SkinButtom btn = ctl as UILibrary.SkinButtom; if (btn == null) { continue; } if (btn.Equals(currentBtn)) { continue; } btn.Image = ImageUtil.ButtonLeftImageNormal; } } if (currentBtn.Form == null) { return; } if (currentBtn.Form is FormFish) { FormFish form = currentBtn.Form as FormFish; form.ClickGBEvent += form_ClickGBEvent; } else if (currentBtn.Form is FormQuote) { FormQuote form = currentBtn.Form as FormQuote; form.ClickFishEvent += form_ClickFishEvent; } else if (currentBtn.Form is FormConfirm) { FormConfirm form = currentBtn.Form as FormConfirm; form.ClickFishEvent += form_ClickFishEvent; } else if (currentBtn.Form is FormSpot) { FormSpot form = currentBtn.Form as FormSpot; form.ClickFishEvent += form_ClickFishEvent; } else if (currentBtn.Form is FormSelfSale) { FormSelfSale form = currentBtn.Form as FormSelfSale; form.ClickFishEvent += form_ClickFishEvent; } else if (currentBtn.Form is FormSelfMake) { FormSelfMake form = currentBtn.Form as FormSelfMake; form.ClickFishEvent += form_ClickFishEvent; } else if (currentBtn.Form is FormRemindMessage) { FormRemindMessage form = currentBtn.Form as FormRemindMessage; form.ClickRemindEvent += form_ClickRemindEvent; } ///父窗口 //currentBtn.Form.MdiParent = this; currentBtn.Form.Show(); currentBtn.Form.BringToFront(); }