Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Core.Views/3.3/MovieView.Designer.cs @ 4681

Last change on this file since 4681 was 4641, checked in by swagner, 14 years ago

Worked on allele frequency analysis (#1234)

File size: 10.8 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22using System.Windows.Forms;
23
24namespace HeuristicLab.Core.Views {
25  partial class MovieView<T> {
26    /// <summary>
27    /// Required designer variable.
28    /// </summary>
29    private System.ComponentModel.IContainer components = null;
30
31    /// <summary>
32    /// Clean up any resources being used.
33    /// </summary>
34    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
35    protected override void Dispose(bool disposing) {
36      if (disposing) {
37        if (components != null) components.Dispose();
38      }
39      base.Dispose(disposing);
40    }
41
42    #region Windows Form Designer generated code
43
44    /// <summary>
45    /// Required method for Designer support - do not modify
46    /// the contents of this method with the code editor.
47    /// </summary>
48    private void InitializeComponent() {
49      this.components = new System.ComponentModel.Container();
50      this.itemsGroupBox = new System.Windows.Forms.GroupBox();
51      this.stopButton = new System.Windows.Forms.Button();
52      this.lastButton = new System.Windows.Forms.Button();
53      this.playButton = new System.Windows.Forms.Button();
54      this.firstButton = new System.Windows.Forms.Button();
55      this.maximumLabel = new System.Windows.Forms.Label();
56      this.indexLabel = new System.Windows.Forms.Label();
57      this.minimumLabel = new System.Windows.Forms.Label();
58      this.trackBar = new System.Windows.Forms.TrackBar();
59      this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
60      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
61      this.backgroundWorker = new System.ComponentModel.BackgroundWorker();
62      this.itemsGroupBox.SuspendLayout();
63      ((System.ComponentModel.ISupportInitialize)(this.trackBar)).BeginInit();
64      this.SuspendLayout();
65      //
66      // itemsGroupBox
67      //
68      this.itemsGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
69                  | System.Windows.Forms.AnchorStyles.Left)
70                  | System.Windows.Forms.AnchorStyles.Right)));
71      this.itemsGroupBox.Controls.Add(this.stopButton);
72      this.itemsGroupBox.Controls.Add(this.lastButton);
73      this.itemsGroupBox.Controls.Add(this.playButton);
74      this.itemsGroupBox.Controls.Add(this.firstButton);
75      this.itemsGroupBox.Controls.Add(this.maximumLabel);
76      this.itemsGroupBox.Controls.Add(this.indexLabel);
77      this.itemsGroupBox.Controls.Add(this.minimumLabel);
78      this.itemsGroupBox.Controls.Add(this.trackBar);
79      this.itemsGroupBox.Controls.Add(this.viewHost);
80      this.itemsGroupBox.Location = new System.Drawing.Point(0, 0);
81      this.itemsGroupBox.Name = "itemsGroupBox";
82      this.itemsGroupBox.Size = new System.Drawing.Size(532, 383);
83      this.itemsGroupBox.TabIndex = 0;
84      this.itemsGroupBox.TabStop = false;
85      this.itemsGroupBox.Text = "Items";
86      //
87      // stopButton
88      //
89      this.stopButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
90      this.stopButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Stop;
91      this.stopButton.Location = new System.Drawing.Point(502, 355);
92      this.stopButton.Name = "stopButton";
93      this.stopButton.Size = new System.Drawing.Size(24, 24);
94      this.stopButton.TabIndex = 5;
95      this.toolTip.SetToolTip(this.stopButton, "Stop");
96      this.stopButton.UseVisualStyleBackColor = true;
97      this.stopButton.Click += new System.EventHandler(this.stopButton_Click);
98      //
99      // lastButton
100      //
101      this.lastButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
102      this.lastButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.MoveLast;
103      this.lastButton.Location = new System.Drawing.Point(502, 325);
104      this.lastButton.Name = "lastButton";
105      this.lastButton.Size = new System.Drawing.Size(24, 24);
106      this.lastButton.TabIndex = 3;
107      this.toolTip.SetToolTip(this.lastButton, "Move to Last");
108      this.lastButton.UseVisualStyleBackColor = true;
109      this.lastButton.Click += new System.EventHandler(this.lastButton_Click);
110      //
111      // playButton
112      //
113      this.playButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
114      this.playButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Play;
115      this.playButton.Location = new System.Drawing.Point(6, 355);
116      this.playButton.Name = "playButton";
117      this.playButton.Size = new System.Drawing.Size(24, 24);
118      this.playButton.TabIndex = 4;
119      this.toolTip.SetToolTip(this.playButton, "Play");
120      this.playButton.UseVisualStyleBackColor = true;
121      this.playButton.Click += new System.EventHandler(this.playButton_Click);
122      //
123      // firstButton
124      //
125      this.firstButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
126      this.firstButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.MoveFirst;
127      this.firstButton.Location = new System.Drawing.Point(6, 325);
128      this.firstButton.Name = "firstButton";
129      this.firstButton.Size = new System.Drawing.Size(24, 24);
130      this.firstButton.TabIndex = 1;
131      this.toolTip.SetToolTip(this.firstButton, "Move to First");
132      this.firstButton.UseVisualStyleBackColor = true;
133      this.firstButton.Click += new System.EventHandler(this.firstButton_Click);
134      //
135      // maximumLabel
136      //
137      this.maximumLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
138      this.maximumLabel.Location = new System.Drawing.Point(388, 364);
139      this.maximumLabel.Name = "maximumLabel";
140      this.maximumLabel.Size = new System.Drawing.Size(108, 13);
141      this.maximumLabel.TabIndex = 8;
142      this.maximumLabel.Text = "10";
143      this.maximumLabel.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
144      //
145      // indexLabel
146      //
147      this.indexLabel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
148                  | System.Windows.Forms.AnchorStyles.Right)));
149      this.indexLabel.Location = new System.Drawing.Point(173, 364);
150      this.indexLabel.Name = "indexLabel";
151      this.indexLabel.Size = new System.Drawing.Size(186, 13);
152      this.indexLabel.TabIndex = 7;
153      this.indexLabel.Text = "0";
154      this.indexLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
155      //
156      // minimumLabel
157      //
158      this.minimumLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
159      this.minimumLabel.Location = new System.Drawing.Point(36, 364);
160      this.minimumLabel.Name = "minimumLabel";
161      this.minimumLabel.Size = new System.Drawing.Size(38, 13);
162      this.minimumLabel.TabIndex = 6;
163      this.minimumLabel.Text = "0";
164      this.minimumLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
165      //
166      // trackBar
167      //
168      this.trackBar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
169                  | System.Windows.Forms.AnchorStyles.Right)));
170      this.trackBar.LargeChange = 1;
171      this.trackBar.Location = new System.Drawing.Point(36, 316);
172      this.trackBar.Name = "trackBar";
173      this.trackBar.Size = new System.Drawing.Size(460, 45);
174      this.trackBar.TabIndex = 2;
175      this.trackBar.TickStyle = System.Windows.Forms.TickStyle.Both;
176      this.trackBar.ValueChanged += new System.EventHandler(this.trackBar_ValueChanged);
177      //
178      // viewHost
179      //
180      this.viewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
181                  | System.Windows.Forms.AnchorStyles.Left)
182                  | System.Windows.Forms.AnchorStyles.Right)));
183      this.viewHost.Caption = "View";
184      this.viewHost.Content = null;
185      this.viewHost.Enabled = false;
186      this.viewHost.Location = new System.Drawing.Point(6, 19);
187      this.viewHost.Name = "viewHost";
188      this.viewHost.ReadOnly = false;
189      this.viewHost.Size = new System.Drawing.Size(520, 291);
190      this.viewHost.TabIndex = 0;
191      this.viewHost.ViewType = null;
192      //
193      // backgroundWorker
194      //
195      this.backgroundWorker.WorkerSupportsCancellation = true;
196      this.backgroundWorker.DoWork += new System.ComponentModel.DoWorkEventHandler(this.backgroundWorker_DoWork);
197      this.backgroundWorker.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.backgroundWorker_RunWorkerCompleted);
198      //
199      // MovieView
200      //
201      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
202      this.Controls.Add(this.itemsGroupBox);
203      this.Name = "MovieView";
204      this.Size = new System.Drawing.Size(532, 383);
205      this.itemsGroupBox.ResumeLayout(false);
206      this.itemsGroupBox.PerformLayout();
207      ((System.ComponentModel.ISupportInitialize)(this.trackBar)).EndInit();
208      this.ResumeLayout(false);
209
210    }
211
212    #endregion
213
214    protected GroupBox itemsGroupBox;
215    protected ToolTip toolTip;
216    protected MainForm.WindowsForms.ViewHost viewHost;
217    protected TrackBar trackBar;
218    protected Button stopButton;
219    protected Button lastButton;
220    protected Button playButton;
221    protected Button firstButton;
222    protected Label maximumLabel;
223    protected Label indexLabel;
224    protected Label minimumLabel;
225    protected System.ComponentModel.BackgroundWorker backgroundWorker;
226  }
227}
Note: See TracBrowser for help on using the repository browser.