示例#1
0
        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;
        }
示例#2
0
文件: FormMaster.cs 项目: wanbok/kiwi
 /// <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);
 }
示例#3
0
 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);
 }