[7128] | 1 | namespace HeuristicLab.Analysis.FitnessLandscape.BoxChart {
|
---|
| 2 | partial class BitmapItemView {
|
---|
| 3 | /// <summary>
|
---|
| 4 | /// Required designer variable.
|
---|
| 5 | /// </summary>
|
---|
| 6 | private System.ComponentModel.IContainer components = null;
|
---|
| 7 |
|
---|
| 8 | /// <summary>
|
---|
| 9 | /// Clean up any resources being used.
|
---|
| 10 | /// </summary>
|
---|
| 11 | /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
---|
| 12 | protected override void Dispose(bool disposing) {
|
---|
| 13 | if (disposing && (components != null)) {
|
---|
| 14 | components.Dispose();
|
---|
| 15 | }
|
---|
| 16 | base.Dispose(disposing);
|
---|
| 17 | }
|
---|
| 18 |
|
---|
| 19 | #region Component Designer generated code
|
---|
| 20 |
|
---|
| 21 | /// <summary>
|
---|
| 22 | /// Required method for Designer support - do not modify
|
---|
| 23 | /// the contents of this method with the code editor.
|
---|
| 24 | /// </summary>
|
---|
| 25 | private void InitializeComponent() {
|
---|
| 26 | this.components = new System.ComponentModel.Container();
|
---|
| 27 | this.pictureBox = new System.Windows.Forms.PictureBox();
|
---|
| 28 | this.contextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
|
---|
| 29 | this.saveToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
---|
| 30 | this.saveFileDialog = new System.Windows.Forms.SaveFileDialog();
|
---|
| 31 | ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).BeginInit();
|
---|
| 32 | this.contextMenuStrip.SuspendLayout();
|
---|
| 33 | this.SuspendLayout();
|
---|
| 34 | //
|
---|
| 35 | // pictureBox
|
---|
| 36 | //
|
---|
| 37 | this.pictureBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 38 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 39 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 40 | this.pictureBox.ContextMenuStrip = this.contextMenuStrip;
|
---|
| 41 | this.pictureBox.Location = new System.Drawing.Point(3, 3);
|
---|
| 42 | this.pictureBox.Name = "pictureBox";
|
---|
| 43 | this.pictureBox.Size = new System.Drawing.Size(144, 144);
|
---|
| 44 | this.pictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
|
---|
| 45 | this.pictureBox.TabIndex = 0;
|
---|
| 46 | this.pictureBox.TabStop = false;
|
---|
| 47 | //
|
---|
| 48 | // contextMenuStrip
|
---|
| 49 | //
|
---|
| 50 | this.contextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
---|
| 51 | this.saveToolStripMenuItem});
|
---|
| 52 | this.contextMenuStrip.Name = "contextMenuStrip";
|
---|
| 53 | this.contextMenuStrip.Size = new System.Drawing.Size(108, 26);
|
---|
| 54 | //
|
---|
| 55 | // saveToolStripMenuItem
|
---|
| 56 | //
|
---|
| 57 | this.saveToolStripMenuItem.Name = "saveToolStripMenuItem";
|
---|
| 58 | this.saveToolStripMenuItem.Size = new System.Drawing.Size(107, 22);
|
---|
| 59 | this.saveToolStripMenuItem.Text = "Save...";
|
---|
| 60 | this.saveToolStripMenuItem.Click += new System.EventHandler(this.saveToolStripMenuItem_Click);
|
---|
| 61 | //
|
---|
| 62 | // saveFileDialog
|
---|
| 63 | //
|
---|
| 64 | this.saveFileDialog.FileName = "bitmap.png";
|
---|
| 65 | this.saveFileDialog.Filter = "PNG Files|*.png|EMF Files|*.emf|GIF Files|*.gif|TIFF Files|*.tif|JPEG Files|*.jpg" +
|
---|
| 66 | "|All Files|*.*";
|
---|
| 67 | //
|
---|
| 68 | // BitmapItemView
|
---|
| 69 | //
|
---|
| 70 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 71 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
| 72 | this.Controls.Add(this.pictureBox);
|
---|
| 73 | this.Name = "BitmapItemView";
|
---|
| 74 | ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).EndInit();
|
---|
| 75 | this.contextMenuStrip.ResumeLayout(false);
|
---|
| 76 | this.ResumeLayout(false);
|
---|
| 77 |
|
---|
| 78 | }
|
---|
| 79 |
|
---|
| 80 | #endregion
|
---|
| 81 |
|
---|
| 82 | private System.Windows.Forms.PictureBox pictureBox;
|
---|
| 83 | private System.Windows.Forms.ContextMenuStrip contextMenuStrip;
|
---|
| 84 | private System.Windows.Forms.ToolStripMenuItem saveToolStripMenuItem;
|
---|
| 85 | private System.Windows.Forms.SaveFileDialog saveFileDialog;
|
---|
| 86 | }
|
---|
| 87 | }
|
---|