| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- 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;
- using Core.Mes.Client.Comm.Tool;
- namespace Pur.Pop_upWindow
- {
- public partial class frmGetBID_OPEN_ADDR : Form
- {
- /** 开标地点 */
- private string bidOpenAddr;
- /// <summary>
- /// 开标地点
- /// </summary>
- public string BidOpenAddr
- {
- get { return bidOpenAddr; }
- set { bidOpenAddr = value; }
- }
- public frmGetBID_OPEN_ADDR()
- {
- InitializeComponent();
- }
- private void button1_Click(object sender, EventArgs e)
- {
- if (textBox1.Text.Trim() != "")
- {
- bidOpenAddr = textBox1.Text.Trim();
- this.Close();
- }
- else
- {
- MessageUtil.ShowTips("请输入开标地点");
- return;
- }
- }
- private void button2_Click(object sender, EventArgs e)
- {
- bidOpenAddr = null;
- this.Close();
- }
- private void frmGetBID_OPEN_ADDR_Load(object sender, EventArgs e)
- {
- }
- }
- }
|