1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Windows.Forms;
- namespace LYFZ.Software.MainBusiness.ReportPrint.SuperSmallForm
- {
- public partial class PrintVersionSelectSuperSmallForm : LYFZ.Software.UI.ReportPrint.SuperSmallForm.PrintVersionSelectSuperSmallForm
- {
- public PrintVersionSelectSuperSmallForm()
- {
- }
- private string _loadtype = "";
- public string LoadType
- {
- set { _loadtype = value; }
- get { return _loadtype; }
- }
- private string _englishname = "";
- public string EnglishName
- {
- set { _englishname = value; }
- get { return _englishname; }
- }
- /// <summary>
- /// 窗体加载事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected override void PrintVersionSelect_Load(object sender, EventArgs e)
- {
- if (LoadType != "")
- {
- DataTable tbl = new LYFZ.BLL.BLL_ErpReportModel().GetList("Rmd_ChineseName='" + LoadType + "'").Tables[0];
- for (int i = 0; i < tbl.Rows.Count; i++)
- {
- DataGridViewRow dgvr = new DataGridViewRow();
- DataGridViewCell cell = null;
- cell = new DataGridViewTextBoxCell();
- cell.Value = tbl.Rows[i]["Rmd_ChineseName"].ToString().Trim() + "_" + tbl.Rows[i]["Rmd_VersionName"].ToString().Trim();
- dgvr.Cells.Add(cell);
- cell = new DataGridViewTextBoxCell();
- cell.Value = tbl.Rows[i]["Rmd_EnglishName"].ToString().Trim();
- dgvr.Cells.Add(cell);
- this.dgvData.Rows.Add(dgvr);
- }
- }
- }
- /// <summary>
- /// 数据列表双击事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected override void dgvData_DoubleClick(object sender, EventArgs e)
- {
- if (this.dgvData.Rows.Count > 0)
- {
- if (this.dgvData.CurrentRow.Index >= 0)
- {
- if (MessageBoxCustom.Show("你选择了" + this.dgvData.Rows[this.dgvData.CurrentRow.Index].Cells["Column1"].Value.ToString().Trim() + "做打印,\r\n 是否确定", "温馨提示", MessageBoxButtons.YesNo) == DialogResult.Yes)
- {
- EnglishName = this.dgvData.Rows[this.dgvData.CurrentRow.Index].Cells["Column2"].Value.ToString().Trim(); this.Close();
- }
- }
- }
- }
- /// <summary>
- /// 确定
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected override void btnOK_Click(object sender, EventArgs e)
- {
- if (this.dgvData.Rows.Count > 0)
- {
- if (this.dgvData.CurrentRow.Index > 0)
- { EnglishName = this.dgvData.Rows[this.dgvData.CurrentRow.Index].Cells["Column2"].Value.ToString().Trim(); this.Close(); }
- }
- }
- /// <summary>
- /// 取消
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected override void btnCancel_Click(object sender, EventArgs e)
- {
- this.Close();
- }
- }
- }
|