SchemaFactor.Vst.MidiMapperX.OptionsUI.OptionsUI_Load C# (CSharp) Method

OptionsUI_Load() private method

private OptionsUI_Load ( object sender, EventArgs e ) : void
sender object
e EventArgs
return void
        private void OptionsUI_Load(object sender, EventArgs e)
        {
            ToolTip toolTip1 = new ToolTip();
            toolTip1.UseAnimation = true;
            toolTip1.IsBalloon = true;
            toolTip1.SetToolTip(ThruCheckbox,    "When checked, all non-mapped note on/off events are passed through normally.");
            toolTip1.SetToolTip(AllThruCheckbox, "When checked, all note on/off events are passed through normally, in addition to the new mappings.");
            toolTip1.SetToolTip(SysExCheckbox,   "When checked, all output is sent internally though simulated SysEx messages.\n" +
                                                 "When unchecked, all output is converted into regular 3-byte MIDI messages.");
        }