Example #1
0
        public CIRCeAppItem(MDIChild childWindow)
            : base(childWindow)
        {
            this.childWindow = childWindow;

            this.childWindow.InputKeyDown  += communicationWindow_InputKeyDown;
            this.childWindow.InputKeyPress += communicationWindow_InputKeyPress;
        }
Example #2
0
 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;
 }
Example #3
0
 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);
 }
 private void ShowNewForm(object sender, EventArgs e)
 {
     currentActiveChild = new Form2();
     load_form(currentActiveChild);
 }