Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/15/08 10:48:49 (15 years ago)
Author:
gkronber
Message:

Added basic design for ProblemView #419 (Refactor CEDMA plugins)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/CEDMA-Refactoring-Ticket419/HeuristicLab.CEDMA.Core/DataSetListView.Designer.cs

    r989 r992  
    4848    /// </summary>
    4949    private void InitializeComponent() {
     50      this.refreshButton = new System.Windows.Forms.Button();
     51      this.addButton = new System.Windows.Forms.Button();
    5052      this.splitContainer1 = new System.Windows.Forms.SplitContainer();
    5153      this.dataSetsGroupBox = new System.Windows.Forms.GroupBox();
    52       this.dataSetsTreeView = new System.Windows.Forms.TreeView();
     54      this.dataSetsListView = new System.Windows.Forms.ListView();
    5355      this.detailsGroupBox = new System.Windows.Forms.GroupBox();
    54       this.addButton = new System.Windows.Forms.Button();
    55       this.refreshButton = new System.Windows.Forms.Button();
    5656      this.splitContainer1.Panel1.SuspendLayout();
    5757      this.splitContainer1.Panel2.SuspendLayout();
     
    5959      this.dataSetsGroupBox.SuspendLayout();
    6060      this.SuspendLayout();
     61      //
     62      // refreshButton
     63      //
     64      this.refreshButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     65      this.refreshButton.Location = new System.Drawing.Point(81, 161);
     66      this.refreshButton.Name = "refreshButton";
     67      this.refreshButton.Size = new System.Drawing.Size(75, 23);
     68      this.refreshButton.TabIndex = 2;
     69      this.refreshButton.Text = "&Refresh";
     70      this.refreshButton.UseVisualStyleBackColor = true;
     71      this.refreshButton.Click += new System.EventHandler(this.refreshButton_Click);
     72      //
     73      // addButton
     74      //
     75      this.addButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     76      this.addButton.Location = new System.Drawing.Point(0, 161);
     77      this.addButton.Name = "addButton";
     78      this.addButton.Size = new System.Drawing.Size(75, 23);
     79      this.addButton.TabIndex = 1;
     80      this.addButton.Text = "&Add...";
     81      this.addButton.UseVisualStyleBackColor = true;
     82      this.addButton.Click += new System.EventHandler(this.addButton_Click);
    6183      //
    6284      // splitContainer1
     
    82104      // dataSetsGroupBox
    83105      //
    84       this.dataSetsGroupBox.Controls.Add(this.dataSetsTreeView);
     106      this.dataSetsGroupBox.Controls.Add(this.dataSetsListView);
    85107      this.dataSetsGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
    86108      this.dataSetsGroupBox.Location = new System.Drawing.Point(0, 0);
     
    91113      this.dataSetsGroupBox.Text = "&Data Sets";
    92114      //
    93       // agentTreeView
     115      // dataSetsListView
    94116      //
    95       this.dataSetsTreeView.Dock = System.Windows.Forms.DockStyle.Fill;
    96       this.dataSetsTreeView.Location = new System.Drawing.Point(3, 16);
    97       this.dataSetsTreeView.Name = "agentTreeView";
    98       this.dataSetsTreeView.Size = new System.Drawing.Size(129, 136);
    99       this.dataSetsTreeView.TabIndex = 0;
    100       this.dataSetsTreeView.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.dataSetsTreeView_AfterSelect);
     117      this.dataSetsListView.Dock = System.Windows.Forms.DockStyle.Fill;
     118      this.dataSetsListView.Location = new System.Drawing.Point(3, 16);
     119      this.dataSetsListView.MultiSelect = false;
     120      this.dataSetsListView.Name = "dataSetsListView";
     121      this.dataSetsListView.Size = new System.Drawing.Size(129, 136);
     122      this.dataSetsListView.TabIndex = 0;
     123      this.dataSetsListView.UseCompatibleStateImageBehavior = false;
     124      this.dataSetsListView.View = System.Windows.Forms.View.List;
     125      this.dataSetsListView.SelectedIndexChanged += new System.EventHandler(this.dataSetsListView_SelectedIndexChanged);
    101126      //
    102127      // detailsGroupBox
     
    109134      this.detailsGroupBox.TabStop = false;
    110135      this.detailsGroupBox.Text = "&Details";
    111       //
    112       // addButton
    113       //
    114       this.addButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
    115       this.addButton.Location = new System.Drawing.Point(0, 161);
    116       this.addButton.Name = "addButton";
    117       this.addButton.Size = new System.Drawing.Size(75, 23);
    118       this.addButton.TabIndex = 1;
    119       this.addButton.Text = "&Add...";
    120       this.addButton.UseVisualStyleBackColor = true;
    121       this.addButton.Click += new System.EventHandler(this.addButton_Click);
    122       //
    123       // refreshButton
    124       //
    125       this.refreshButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
    126       this.refreshButton.Location = new System.Drawing.Point(81, 161);
    127       this.refreshButton.Name = "refreshButton";
    128       this.refreshButton.Size = new System.Drawing.Size(75, 23);
    129       this.refreshButton.TabIndex = 2;
    130       this.refreshButton.Text = "&Refresh";
    131       this.refreshButton.UseVisualStyleBackColor = true;
    132       this.refreshButton.Click += new System.EventHandler(this.refreshButton_Click);
    133136      //
    134137      // DataSetListView
     
    154157    private System.Windows.Forms.GroupBox detailsGroupBox;
    155158    private System.Windows.Forms.Button addButton;
    156     private TreeView dataSetsTreeView;
    157159    private Button refreshButton;
     160    private ListView dataSetsListView;
    158161  }
    159162}
Note: See TracChangeset for help on using the changeset viewer.