avrdudess.Presets.setDataSource(System.Windows.Forms.ComboBox)

Here are the examples of the csharp api class avrdudess.Presets.setDataSource(System.Windows.Forms.ComboBox) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Example 7

1. Example

Project: AVRDUDESS
Source File: Presets.cs
public void setDataSource(ComboBox cb, EventHandler handler)
        {
            cb.SelectedIndexChanged -= handler;
            setDataSource(cb);
            cb.SelectedIndexChanged += handler;
        }