| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- 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 Core.StlMes.Client.PlnSaleOrd.炼钢计划.control
- {
- public partial class FrmBuFurnShow : Form
- {
- private string txt = "";
- public FrmBuFurnShow(string text)
- {
- txt = text;
- InitializeComponent();
- }
- private string falg = "";
- public string Falg
- {
- get { return falg; }
- set { falg = value; }
- }
- private void button1_Click(object sender, EventArgs e)
- {
- falg = "1";
- this.Close();
- }
- private void button2_Click(object sender, EventArgs e)
- {
- falg = "2";
- this.Close();
- }
- private void button3_Click(object sender, EventArgs e)
- {
- falg = "3";
- this.Close();
- }
- private void FrmBuFurnShow_Load(object sender, EventArgs e)
- {
- label1.Text = txt;
- }
- }
- }
|