This event is fired every time the value of a control changes.

Namespace: NMixerProNET
Assembly: MixerProNET (in MixerProNET.dll) Version: 2.1.0.27196 (2.1.0)

Syntax

C#
public event CMixerPro..::..ChangedEventHandler Changed
Visual Basic
Public Event Changed As CMixerPro..::..ChangedEventHandler
Visual C++
public:
 event CMixerPro..::..ChangedEventHandler^ Changed {
	void add (CMixerPro..::..ChangedEventHandler^ value);
	void remove (CMixerPro..::..ChangedEventHandler^ value);
}

Remarks

This event will also be fired when a control item changes its valuebut because Windows does not provide any means to detect which control item changed, the event will only report the parent control and it is up to the host application to try to identify which control item triggered the event.

For control items that are bound, MixerProNET will correctly update the bound controls but just because it will actually update all the bound control items for the control that triggered the event.

See Also