Exemple #1
0
    private void InitializePerlInstallSelect()
    {
        this.perlInstallSelect = new System.Windows.Forms.ComboBox();
        this.perlInstallSelect.DropDownStyle = ComboBoxStyle.DropDownList;

        this.perlInstallSelect.FormattingEnabled = true;
        this.perlInstallSelect.Location          = new System.Drawing.Point(10, 65);
        this.perlInstallSelect.Name     = "perlSwitchSelect";
        this.perlInstallSelect.Size     = new System.Drawing.Size(121, 30);
        this.perlInstallSelect.TabIndex = 0;

        foreach (string perlName in bb.AvailableList())
        {
            this.perlInstallSelect.Items.Add(perlName);
        }
    }