Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/08/14 19:03:36 (10 years ago)
Author:
mkommend
Message:

#1758: Merged r10173:10176 and r10540, r10541, r10543, r10545 and r11031 into stable.

Location:
stable
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • stable

  • stable/HeuristicLab.Problems.DataAnalysis.Views

  • stable/HeuristicLab.Problems.DataAnalysis.Views/3.4/Solution Views/DataAnalysisSolutionView.Designer.cs

    r9999 r11144  
    1919 */
    2020#endregion
     21
    2122namespace HeuristicLab.Problems.DataAnalysis.Views {
    2223  partial class DataAnalysisSolutionView {
     
    4445    /// </summary>
    4546    private void InitializeComponent() {
    46       this.exportButton = new System.Windows.Forms.Button();
    47       this.exportFileDialog = new System.Windows.Forms.SaveFileDialog();
     47      this.flowLayoutPanel = new System.Windows.Forms.FlowLayoutPanel();
     48      this.loadProblemDataButton = new System.Windows.Forms.Button();
     49      this.loadProblemDataFileDialog = new System.Windows.Forms.OpenFileDialog();
    4850      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
    4951      this.splitContainer.Panel1.SuspendLayout();
     
    5355      this.detailsGroupBox.SuspendLayout();
    5456      this.SuspendLayout();
     57      //
     58      // itemslistView
     59      //
     60      this.itemsListView.Location = new System.Drawing.Point(this.itemsListView.Location.X, this.itemsListView.Location.Y + 3);
     61      //
     62      // detailsGroupBox
     63      //
     64      this.detailsGroupBox.Location = new System.Drawing.Point(this.detailsGroupBox.Location.X, this.detailsGroupBox.Location.Y + 3);
     65      //
    5566      //
    5667      // splitContainer
     
    5970      // splitContainer.Panel2
    6071      //
    61       this.splitContainer.Panel2.Controls.Add(this.exportButton);
     72      this.splitContainer.Panel2.Controls.Add(this.flowLayoutPanel);
    6273      //
    6374      // itemsGroupBox
    6475      //
    6576      this.itemsGroupBox.Text = "Data Analysis Solution";
     77      //
     78      // flowLayoutPanel
     79      //
     80      this.flowLayoutPanel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
     81      this.flowLayoutPanel.FlowDirection = System.Windows.Forms.FlowDirection.LeftToRight;
     82      this.flowLayoutPanel.Location = new System.Drawing.Point(0, 0);
     83      this.flowLayoutPanel.Padding = new System.Windows.Forms.Padding(3, 0, 3, 0);
     84      this.flowLayoutPanel.Size = new System.Drawing.Size(266, 30);
     85      this.flowLayoutPanel.Controls.Add(this.loadProblemDataButton);
     86      //
     87      // loadProblemDataButton
     88      //
     89      this.loadProblemDataButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)));
     90      this.loadProblemDataButton.AutoSize = true;
     91      this.loadProblemDataButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Open;
     92      this.loadProblemDataButton.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     93      this.loadProblemDataButton.Name = "loadProblemDataButton";
     94      this.loadProblemDataButton.Size = new System.Drawing.Size(105, 24);
     95      this.loadProblemDataButton.TabIndex = 6;
     96      this.loadProblemDataButton.Text = "Load new Data";
     97      this.loadProblemDataButton.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     98      this.loadProblemDataButton.UseVisualStyleBackColor = true;
     99      this.loadProblemDataButton.Click += new System.EventHandler(this.loadProblemDataButton_Click);
     100      this.toolTip.SetToolTip(this.loadProblemDataButton, "Creates a new data analysis solution with the same model and the loaded problem data.");
    66101      //
    67       // addButton
     102      // openFileDialog
    68103      //
    69       this.toolTip.SetToolTip(this.addButton, "Add");
    70       //
    71       // removeButton
    72       //
    73       this.toolTip.SetToolTip(this.removeButton, "Remove");
    74       //
    75       // exportButton
    76       //
    77       this.exportButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
    78       this.exportButton.Location = new System.Drawing.Point(215, 4);
    79       this.exportButton.Name = "exportButton";
    80       this.exportButton.Size = new System.Drawing.Size(54, 23);
    81       this.exportButton.TabIndex = 6;
    82       this.exportButton.Text = "Export";
    83       this.exportButton.UseVisualStyleBackColor = true;
    84       this.exportButton.Click += new System.EventHandler(this.exportButton_Click);
     104      this.loadProblemDataFileDialog.Filter = "HL files|*.hl";
     105      this.loadProblemDataFileDialog.Title = "Load new ProblemData or Problem...";
    85106      //
    86107      // DataAnalysisSolutionView
     
    100121    #endregion
    101122
    102     private System.Windows.Forms.SaveFileDialog exportFileDialog;
    103     protected System.Windows.Forms.Button exportButton;
     123    protected System.Windows.Forms.Button loadProblemDataButton;
     124    protected System.Windows.Forms.OpenFileDialog loadProblemDataFileDialog;
     125    protected System.Windows.Forms.FlowLayoutPanel flowLayoutPanel;
    104126
    105127  }
Note: See TracChangeset for help on using the changeset viewer.