Example #1
0
 void control_ControllerSelectionChanged(object sender, ControllerSelectionEventArgs e)
 {
     if (_currentPatchingControl != null)
     {
         _currentPatchingControl.UpdateControllerSelection(e.ControllersAndOutputs);
     }
 }
Example #2
0
        public void OnControllerSelectionChanged()
        {
            if (ControllerSelectionChanged == null)
                return;

            ControllerSelectionEventArgs e = new ControllerSelectionEventArgs(SelectedControllersAndOutputs);
            ControllerSelectionChanged(this, e);
        }
Example #3
0
		void control_ControllerSelectionChanged(object sender, ControllerSelectionEventArgs e)
		{
			if (_currentPatchingControl != null) {
				_currentPatchingControl.UpdateControllerSelection(e.ControllersAndOutputs);
			}
		}