Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/30/10 15:13:48 (14 years ago)
Author:
gkronber
Message:

Implemented a list of review comments by swagner. #989 (Implement review comments in plugin infrastructure)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.PluginInfrastructure/Starter/StarterForm.Designer.cs

    r3112 r3573  
    5656      this.descriptionColumnHeader = new System.Windows.Forms.ColumnHeader();
    5757      this.smallImageList = new System.Windows.Forms.ImageList(this.components);
    58       this.detailsButton = new System.Windows.Forms.Button();
    59       this.listButton = new System.Windows.Forms.Button();
    60       this.largeIconsButton = new System.Windows.Forms.Button();
     58      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
     59      this.showListButton = new System.Windows.Forms.RadioButton();
     60      this.showDetailsButton = new System.Windows.Forms.RadioButton();
     61      this.groupBox = new System.Windows.Forms.GroupBox();
     62      this.groupBox.SuspendLayout();
    6163      this.SuspendLayout();
    6264      //
     
    6567      this.startButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
    6668      this.startButton.Enabled = false;
    67       this.startButton.Location = new System.Drawing.Point(579, 511);
     69      this.startButton.Location = new System.Drawing.Point(579, 507);
    6870      this.startButton.Name = "startButton";
    6971      this.startButton.Size = new System.Drawing.Size(75, 23);
    7072      this.startButton.TabIndex = 1;
    71       this.startButton.Text = "Start";
     73      this.startButton.Text = "&Start";
     74      this.toolTip.SetToolTip(this.startButton, "Start Selected Application");
    7275      this.startButton.UseVisualStyleBackColor = true;
    7376      this.startButton.Click += new System.EventHandler(this.applicationsListView_ItemActivate);
     
    100103      this.applicationsListView.Name = "applicationsListView";
    101104      this.applicationsListView.ShowItemToolTips = true;
    102       this.applicationsListView.Size = new System.Drawing.Size(642, 493);
     105      this.applicationsListView.Size = new System.Drawing.Size(642, 479);
    103106      this.applicationsListView.SmallImageList = this.smallImageList;
    104107      this.applicationsListView.TabIndex = 2;
    105108      this.applicationsListView.UseCompatibleStateImageBehavior = false;
    106109      this.applicationsListView.ItemActivate += new System.EventHandler(this.applicationsListView_ItemActivate);
    107       this.applicationsListView.ItemSelectionChanged += new System.Windows.Forms.ListViewItemSelectionChangedEventHandler(this.applicationsListBox_SelectedIndexChanged);
     110      this.applicationsListView.SelectedIndexChanged += new System.EventHandler(this.applicationsListView_SelectedIndexChanged);
    108111      //
    109112      // nameColumnHeader
     
    127130      this.smallImageList.Images.SetKeyName(0, "HeuristicLab.ico");
    128131      //
    129       // detailsButton
    130       //
    131       this.detailsButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
    132       this.detailsButton.AutoSize = true;
    133       this.detailsButton.Image = global::HeuristicLab.PluginInfrastructure.Properties.Resources.Details;
    134       this.detailsButton.Location = new System.Drawing.Point(68, 511);
    135       this.detailsButton.Name = "detailsButton";
    136       this.detailsButton.Size = new System.Drawing.Size(22, 23);
    137       this.detailsButton.TabIndex = 5;
    138       this.detailsButton.UseVisualStyleBackColor = true;
    139       this.detailsButton.Click += new System.EventHandler(this.detailsButton_Click);
    140       //
    141       // listButton
    142       //
    143       this.listButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
    144       this.listButton.AutoSize = true;
    145       this.listButton.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
    146       this.listButton.Image = global::HeuristicLab.PluginInfrastructure.Properties.Resources.List;
    147       this.listButton.Location = new System.Drawing.Point(40, 511);
    148       this.listButton.Name = "listButton";
    149       this.listButton.Size = new System.Drawing.Size(22, 22);
    150       this.listButton.TabIndex = 4;
    151       this.listButton.UseVisualStyleBackColor = true;
    152       this.listButton.Click += new System.EventHandler(this.listButton_Click);
    153       //
    154       // largeIconsButton
    155       //
    156       this.largeIconsButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
    157       this.largeIconsButton.AutoSize = true;
    158       this.largeIconsButton.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
    159       this.largeIconsButton.Image = global::HeuristicLab.PluginInfrastructure.Properties.Resources.LargeIcons;
    160       this.largeIconsButton.Location = new System.Drawing.Point(12, 511);
    161       this.largeIconsButton.Name = "largeIconsButton";
    162       this.largeIconsButton.Size = new System.Drawing.Size(22, 22);
    163       this.largeIconsButton.TabIndex = 3;
    164       this.largeIconsButton.UseVisualStyleBackColor = true;
    165       this.largeIconsButton.Click += new System.EventHandler(this.largeIconsButton_Click);
     132      // showListButton
     133      //
     134      this.showListButton.Appearance = System.Windows.Forms.Appearance.Button;
     135      this.showListButton.Image = global::HeuristicLab.PluginInfrastructure.Properties.Resources.show_icons;
     136      this.showListButton.Location = new System.Drawing.Point(6, 9);
     137      this.showListButton.Name = "showListButton";
     138      this.showListButton.Size = new System.Drawing.Size(25, 25);
     139      this.showListButton.TabIndex = 3;
     140      this.showListButton.TabStop = true;
     141      this.toolTip.SetToolTip(this.showListButton, "Show List");
     142      this.showListButton.UseVisualStyleBackColor = true;
     143      this.showListButton.Click += new System.EventHandler(this.largeIconsButton_Click);
     144      //
     145      // showDetailsButton
     146      //
     147      this.showDetailsButton.Appearance = System.Windows.Forms.Appearance.Button;
     148      this.showDetailsButton.Image = global::HeuristicLab.PluginInfrastructure.Properties.Resources.show_details;
     149      this.showDetailsButton.Location = new System.Drawing.Point(37, 9);
     150      this.showDetailsButton.Name = "showDetailsButton";
     151      this.showDetailsButton.Size = new System.Drawing.Size(25, 25);
     152      this.showDetailsButton.TabIndex = 4;
     153      this.showDetailsButton.TabStop = true;
     154      this.toolTip.SetToolTip(this.showDetailsButton, "Show Details");
     155      this.showDetailsButton.UseVisualStyleBackColor = true;
     156      this.showDetailsButton.Click += new System.EventHandler(this.detailsButton_Click);
     157      //
     158      // groupBox
     159      //
     160      this.groupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     161      this.groupBox.Controls.Add(this.showListButton);
     162      this.groupBox.Controls.Add(this.showDetailsButton);
     163      this.groupBox.Location = new System.Drawing.Point(12, 497);
     164      this.groupBox.Name = "groupBox";
     165      this.groupBox.Size = new System.Drawing.Size(68, 37);
     166      this.groupBox.TabIndex = 5;
     167      this.groupBox.TabStop = false;
    166168      //
    167169      // StarterForm
     
    170172      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
    171173      this.ClientSize = new System.Drawing.Size(666, 546);
    172       this.Controls.Add(this.detailsButton);
    173       this.Controls.Add(this.listButton);
    174       this.Controls.Add(this.largeIconsButton);
     174      this.Controls.Add(this.groupBox);
    175175      this.Controls.Add(this.applicationsListView);
    176176      this.Controls.Add(this.startButton);
     
    179179      this.Text = "HeuristicLab Starter";
    180180      this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
     181      this.groupBox.ResumeLayout(false);
    181182      this.ResumeLayout(false);
    182       this.PerformLayout();
    183183
    184184    }
     
    192192    private System.Windows.Forms.ColumnHeader versionColumnHeader;
    193193    private System.Windows.Forms.ColumnHeader descriptionColumnHeader;
    194     private System.Windows.Forms.Button largeIconsButton;
    195     private System.Windows.Forms.Button listButton;
    196     private System.Windows.Forms.Button detailsButton;
    197194    private System.Windows.Forms.ImageList smallImageList;
     195    private System.Windows.Forms.ToolTip toolTip;
     196    private System.Windows.Forms.RadioButton showListButton;
     197    private System.Windows.Forms.RadioButton showDetailsButton;
     198    private System.Windows.Forms.GroupBox groupBox;
    198199  }
    199200}
Note: See TracChangeset for help on using the changeset viewer.