Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/11/10 03:16:07 (14 years ago)
Author:
swagner
Message:

Implemented clipboard control (#965).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Core.Views/3.3/Clipboard.Designer.cs

    r3292 r3298  
    2121
    2222namespace HeuristicLab.Core.Views {
    23   partial class Clipboard {
     23  partial class Clipboard<T> {
    2424    /// <summary>
    2525    /// Required designer variable.
     
    3333    protected override void Dispose(bool disposing) {
    3434      if (disposing) {
     35        if (typeSelectorDialog != null) typeSelectorDialog.Dispose();
    3536        if (components != null) components.Dispose();
    3637      }
     
    4546    /// </summary>
    4647    private void InitializeComponent() {
     48      this.components = new System.ComponentModel.Container();
     49      this.listView = new System.Windows.Forms.ListView();
     50      this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
     51      this.imageList = new System.Windows.Forms.ImageList(this.components);
     52      this.infoPanel = new System.Windows.Forms.Panel();
     53      this.progressBar = new System.Windows.Forms.ProgressBar();
     54      this.infoLabel = new System.Windows.Forms.Label();
     55      this.sortDescendingButton = new System.Windows.Forms.Button();
     56      this.sortAscendingButton = new System.Windows.Forms.Button();
     57      this.removeButton = new System.Windows.Forms.Button();
     58      this.addButton = new System.Windows.Forms.Button();
     59      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
     60      this.saveButton = new System.Windows.Forms.Button();
     61      this.infoPanel.SuspendLayout();
    4762      this.SuspendLayout();
     63      //
     64      // listView
     65      //
     66      this.listView.AllowDrop = true;
     67      this.listView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     68                  | System.Windows.Forms.AnchorStyles.Left)
     69                  | System.Windows.Forms.AnchorStyles.Right)));
     70      this.listView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     71            this.columnHeader1});
     72      this.listView.FullRowSelect = true;
     73      this.listView.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
     74      this.listView.HideSelection = false;
     75      this.listView.Location = new System.Drawing.Point(0, 30);
     76      this.listView.Name = "listView";
     77      this.listView.ShowItemToolTips = true;
     78      this.listView.Size = new System.Drawing.Size(179, 432);
     79      this.listView.SmallImageList = this.imageList;
     80      this.listView.Sorting = System.Windows.Forms.SortOrder.Ascending;
     81      this.listView.TabIndex = 0;
     82      this.listView.UseCompatibleStateImageBehavior = false;
     83      this.listView.View = System.Windows.Forms.View.Details;
     84      this.listView.SelectedIndexChanged += new System.EventHandler(this.listView_SelectedIndexChanged);
     85      this.listView.SizeChanged += new System.EventHandler(this.listView_SizeChanged);
     86      this.listView.DoubleClick += new System.EventHandler(this.listView_DoubleClick);
     87      this.listView.DragDrop += new System.Windows.Forms.DragEventHandler(this.listView_DragDrop);
     88      this.listView.DragEnter += new System.Windows.Forms.DragEventHandler(this.listView_DragEnterOver);
     89      this.listView.KeyDown += new System.Windows.Forms.KeyEventHandler(this.listView_KeyDown);
     90      this.listView.ItemDrag += new System.Windows.Forms.ItemDragEventHandler(this.listView_ItemDrag);
     91      this.listView.DragOver += new System.Windows.Forms.DragEventHandler(this.listView_DragEnterOver);
     92      //
     93      // imageList
     94      //
     95      this.imageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
     96      this.imageList.ImageSize = new System.Drawing.Size(16, 16);
     97      this.imageList.TransparentColor = System.Drawing.Color.Transparent;
     98      //
     99      // infoPanel
     100      //
     101      this.infoPanel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
     102      this.infoPanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     103      this.infoPanel.Controls.Add(this.progressBar);
     104      this.infoPanel.Controls.Add(this.infoLabel);
     105      this.infoPanel.Enabled = false;
     106      this.infoPanel.Location = new System.Drawing.Point(13, 202);
     107      this.infoPanel.Name = "infoPanel";
     108      this.infoPanel.Size = new System.Drawing.Size(154, 59);
     109      this.infoPanel.TabIndex = 6;
     110      //
     111      // progressBar
     112      //
     113      this.progressBar.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
     114      this.progressBar.Location = new System.Drawing.Point(3, 30);
     115      this.progressBar.Name = "progressBar";
     116      this.progressBar.Size = new System.Drawing.Size(146, 23);
     117      this.progressBar.Step = 1;
     118      this.progressBar.TabIndex = 1;
     119      //
     120      // infoLabel
     121      //
     122      this.infoLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
     123      this.infoLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     124      this.infoLabel.Location = new System.Drawing.Point(3, 4);
     125      this.infoLabel.Name = "infoLabel";
     126      this.infoLabel.Size = new System.Drawing.Size(146, 23);
     127      this.infoLabel.TabIndex = 0;
     128      this.infoLabel.Text = "Loading ...";
     129      this.infoLabel.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
     130      //
     131      // sortDescendingButton
     132      //
     133      this.sortDescendingButton.Enabled = false;
     134      this.sortDescendingButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.SortUp;
     135      this.sortDescendingButton.Location = new System.Drawing.Point(30, 0);
     136      this.sortDescendingButton.Name = "sortDescendingButton";
     137      this.sortDescendingButton.Size = new System.Drawing.Size(24, 24);
     138      this.sortDescendingButton.TabIndex = 2;
     139      this.toolTip.SetToolTip(this.sortDescendingButton, "Sort Descending");
     140      this.sortDescendingButton.UseVisualStyleBackColor = true;
     141      this.sortDescendingButton.Click += new System.EventHandler(this.sortDescendingButton_Click);
     142      //
     143      // sortAscendingButton
     144      //
     145      this.sortAscendingButton.Enabled = false;
     146      this.sortAscendingButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Sort;
     147      this.sortAscendingButton.Location = new System.Drawing.Point(60, 0);
     148      this.sortAscendingButton.Name = "sortAscendingButton";
     149      this.sortAscendingButton.Size = new System.Drawing.Size(24, 24);
     150      this.sortAscendingButton.TabIndex = 3;
     151      this.toolTip.SetToolTip(this.sortAscendingButton, "Sort Ascending");
     152      this.sortAscendingButton.UseVisualStyleBackColor = true;
     153      this.sortAscendingButton.Click += new System.EventHandler(this.sortAscendingButton_Click);
     154      //
     155      // removeButton
     156      //
     157      this.removeButton.Enabled = false;
     158      this.removeButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Remove;
     159      this.removeButton.Location = new System.Drawing.Point(90, 0);
     160      this.removeButton.Name = "removeButton";
     161      this.removeButton.Size = new System.Drawing.Size(24, 24);
     162      this.removeButton.TabIndex = 4;
     163      this.toolTip.SetToolTip(this.removeButton, "Remove Item");
     164      this.removeButton.UseVisualStyleBackColor = true;
     165      this.removeButton.Click += new System.EventHandler(this.removeButton_Click);
     166      //
     167      // addButton
     168      //
     169      this.addButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Add;
     170      this.addButton.Location = new System.Drawing.Point(0, 0);
     171      this.addButton.Name = "addButton";
     172      this.addButton.Size = new System.Drawing.Size(24, 24);
     173      this.addButton.TabIndex = 1;
     174      this.toolTip.SetToolTip(this.addButton, "Add Item");
     175      this.addButton.UseVisualStyleBackColor = true;
     176      this.addButton.Click += new System.EventHandler(this.addButton_Click);
     177      //
     178      // saveButton
     179      //
     180      this.saveButton.Enabled = false;
     181      this.saveButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Save;
     182      this.saveButton.Location = new System.Drawing.Point(120, 0);
     183      this.saveButton.Name = "saveButton";
     184      this.saveButton.Size = new System.Drawing.Size(24, 24);
     185      this.saveButton.TabIndex = 5;
     186      this.toolTip.SetToolTip(this.saveButton, "Save All Items");
     187      this.saveButton.UseVisualStyleBackColor = true;
     188      this.saveButton.Click += new System.EventHandler(this.saveButton_Click);
    48189      //
    49190      // Clipboard
     
    52193      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
    53194      this.Caption = "Clipboard";
     195      this.Controls.Add(this.sortDescendingButton);
     196      this.Controls.Add(this.sortAscendingButton);
     197      this.Controls.Add(this.saveButton);
     198      this.Controls.Add(this.removeButton);
     199      this.Controls.Add(this.addButton);
     200      this.Controls.Add(this.infoPanel);
     201      this.Controls.Add(this.listView);
    54202      this.Name = "Clipboard";
    55       this.Size = new System.Drawing.Size(316, 296);
     203      this.Size = new System.Drawing.Size(179, 462);
     204      this.infoPanel.ResumeLayout(false);
    56205      this.ResumeLayout(false);
    57206
     
    59208
    60209    #endregion
     210
     211    private System.Windows.Forms.ListView listView;
     212    private System.Windows.Forms.Panel infoPanel;
     213    private System.Windows.Forms.ProgressBar progressBar;
     214    private System.Windows.Forms.Label infoLabel;
     215    private System.Windows.Forms.ImageList imageList;
     216    private System.Windows.Forms.Button sortDescendingButton;
     217    private System.Windows.Forms.Button sortAscendingButton;
     218    private System.Windows.Forms.Button removeButton;
     219    private System.Windows.Forms.Button addButton;
     220    private System.Windows.Forms.ColumnHeader columnHeader1;
     221    private System.Windows.Forms.ToolTip toolTip;
     222    private System.Windows.Forms.Button saveButton;
    61223
    62224  }
Note: See TracChangeset for help on using the changeset viewer.