コード例 #1
0
        public CIRCeAppItem(MDIChild childWindow)
            : base(childWindow)
        {
            this.childWindow = childWindow;

            this.childWindow.InputKeyDown  += communicationWindow_InputKeyDown;
            this.childWindow.InputKeyPress += communicationWindow_InputKeyPress;
        }
コード例 #2
0
ファイル: DelegateAction.cs プロジェクト: zjyu1/ASCAN
 public DelegateGateLine(int gateNum, MDIChild mDIChild, double delay, double width, double threshold)
 {
     this.gateNum   = gateNum;
     this.mDIChild  = mDIChild;
     this.delay     = delay;
     this.width     = width;
     this.threshold = threshold;
 }
コード例 #3
0
ファイル: DelegateAction.cs プロジェクト: zjyu1/ASCAN
 public void drawGateLine(int gateNum, MDIChild mDIChild, double delay, double width, double threshold)
 {
     mDIChild.tChart.Series[gateNum].Clear();
     mDIChild.tChart.Series[gateNum].Add(delay, threshold);
     mDIChild.tChart.Series[gateNum].Add(delay + width, threshold);
 }
コード例 #4
0
 private void ShowNewForm(object sender, EventArgs e)
 {
     currentActiveChild = new Form2();
     load_form(currentActiveChild);
 }