コード例 #1
0
 public DecisionNodeControl(ExperimentNode node, ApplicationContext applicationContext) 
     : base(node, applicationContext, s_waitForAnyAllHandleXLocation, s_waitForAnyAllHandleYLocation)
 {
     PaddingLeft = 30.0;
     PaddingTop = 7.0;
     PaddingRight = 40.0;
     PaddingBottom = 7.0;
     m_controlButtons = new NodeControlButtons (this, applicationContext);
     m_controlButtons.InfoButton.Toggled += OnInfoToggled;
 }
コード例 #2
0
 public DecisionNodeControl(ExperimentNode node, ApplicationContext applicationContext)
     : base(node, applicationContext, s_waitForAnyAllHandleXLocation, s_waitForAnyAllHandleYLocation)
 {
     PaddingLeft      = 30.0;
     PaddingTop       = 7.0;
     PaddingRight     = 40.0;
     PaddingBottom    = 7.0;
     m_controlButtons = new NodeControlButtons(this, applicationContext);
     m_controlButtons.InfoButton.Toggled += OnInfoToggled;
 }
コード例 #3
0
        // END HERZUM SPRINT 5.1: TLAB-249

        private void InitControlButtons(ApplicationContext applicationContext)
        {
            m_controlButtons = new NodeControlButtons(this, applicationContext);
            m_controlButtons.InfoButton.Toggled += OnInfoToggled;
        }
コード例 #4
0
ファイル: ComponentControl.cs プロジェクト: thbin/TraceLab
 public ComponentControl(ExperimentNode node, ApplicationContext applicationContext) : base(node, applicationContext)
 {
     m_controlButtons = new NodeControlButtons(this, applicationContext);
     m_controlButtons.InfoButton.Toggled += OnInfoToggled;
 }
コード例 #5
0
ファイル: ComponentControl.cs プロジェクト: CoEST/TraceLab
        // END HERZUM SPRINT 5.1: TLAB-249

        private void InitControlButtons(ApplicationContext applicationContext)
        {
            m_controlButtons = new NodeControlButtons (this, applicationContext);
            m_controlButtons.InfoButton.Toggled += OnInfoToggled;
        }
コード例 #6
0
 public ComponentControl(ExperimentNode node, ApplicationContext applicationContext) : base(node, applicationContext)
 {
     m_controlButtons = new NodeControlButtons (this, applicationContext);
     m_controlButtons.InfoButton.Toggled += OnInfoToggled;
 }