Ejemplo n.º 1
0
 private IEnumerable<ToolStripButton> GetPanelSelectorButtons(bool includePlugins)
 {
     ToolStripButton[] first = new ToolStripButton[] { this.btnResults, this.btnLambda, this.btnSql, this.btnIL };
     if (!includePlugins)
     {
         return first;
     }
     return first.Concat<ToolStripButton>(this._pluginWinButtons);
 }