| 123456789101112131415161718192021222324252627282930313233343536373839 |
- 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.Mcp.Control.Base
- {
- public partial class FrmSubCon : Form
- {
- public FrmSubCon()
- {
- InitializeComponent();
- }
- //委外说明
- private string remark = "";
- public string Remark
- {
- get { return remark; }
- set { remark = value; }
- }
- private void ultraButton1_Click(object sender, EventArgs e)
- {
- remark = this.txt_Rmark.Text.Trim();
- this.DialogResult = System.Windows.Forms.DialogResult.OK;
- }
- private void ultraButton2_Click(object sender, EventArgs e)
- {
- this.Close();
- }
- }
- }
|