private TextBox[] txtOut = null; //전체 #endregion Fields #region Constructors public FormUserAnalysis(FormUserOutput FormUserOutput) { InitializeComponent(); //더블 버퍼 this.SetStyle(ControlStyles.DoubleBuffer, true); this.SetStyle(ControlStyles.AllPaintingInWmPaint, true); this.SetStyle(ControlStyles.UserPaint, true); mFormUserOutput = FormUserOutput; }
/// <summary> /// 결과 /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void toolStripButton5_Click(object sender, EventArgs e) { if (!outOfFormUserInput_Click(sender, e)) return; outOfFormUserAnalysis_Click(sender, e); FormUserOutput frm = new FormUserOutput(); panelSet(frm); }
private void FormUserInfo_Load(object sender, EventArgs e) { mFormUserOutput = new FormUserOutput(this); mFormUserSimulateInput = new FormUserSimulateInput(this); mFormUserSimulate = new FormUserSimulate(this); //mFormAdmin = new FormAdmin(this); mFormUserAnalysis = new FormUserAnalysis(this); }