1 | namespace HeuristicLab.DatastreamAnalysis.Views {
|
---|
2 | partial class TopicSelectorDialog {
|
---|
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 Windows Form 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.okButton = new System.Windows.Forms.Button();
|
---|
28 | this.cancelButton = new System.Windows.Forms.Button();
|
---|
29 | this.toolTip = new System.Windows.Forms.ToolTip(this.components);
|
---|
30 | this.errorProvider = new System.Windows.Forms.ErrorProvider(this.components);
|
---|
31 | this.SuspendLayout();
|
---|
32 | //
|
---|
33 | // okButton
|
---|
34 | //
|
---|
35 | this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
---|
36 | this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
|
---|
37 | this.okButton.Enabled = false;
|
---|
38 | this.okButton.Location = new System.Drawing.Point(429, 365);
|
---|
39 | this.okButton.Name = "okButton";
|
---|
40 | this.okButton.Size = new System.Drawing.Size(75, 23);
|
---|
41 | this.okButton.TabIndex = 1;
|
---|
42 | this.okButton.Text = "&OK";
|
---|
43 | this.okButton.UseVisualStyleBackColor = true;
|
---|
44 | this.errorProvider.SetIconAlignment(this.okButton, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
|
---|
45 | this.errorProvider.SetIconPadding(this.okButton, 2);
|
---|
46 | //
|
---|
47 | // cancelButton
|
---|
48 | //
|
---|
49 | this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
---|
50 | this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
---|
51 | this.cancelButton.Location = new System.Drawing.Point(510, 365);
|
---|
52 | this.cancelButton.Name = "cancelButton";
|
---|
53 | this.cancelButton.Size = new System.Drawing.Size(75, 23);
|
---|
54 | this.cancelButton.TabIndex = 2;
|
---|
55 | this.cancelButton.Text = "&Cancel";
|
---|
56 | this.cancelButton.UseVisualStyleBackColor = true;
|
---|
57 | //
|
---|
58 | // errorProvider
|
---|
59 | //
|
---|
60 | this.errorProvider.BlinkStyle = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
|
---|
61 | this.errorProvider.ContainerControl = this;
|
---|
62 | //
|
---|
63 | // TopicSelectorDialog
|
---|
64 | //
|
---|
65 | this.AcceptButton = this.okButton;
|
---|
66 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
|
---|
67 | this.CancelButton = this.cancelButton;
|
---|
68 | this.ClientSize = new System.Drawing.Size(600, 400);
|
---|
69 | //this.Controls.Add(this.refreshButton);
|
---|
70 | //this.Controls.Add(this.hiveResourceSelector);
|
---|
71 | this.Controls.Add(this.cancelButton);
|
---|
72 | this.Controls.Add(this.okButton);
|
---|
73 | this.MaximizeBox = false;
|
---|
74 | this.MinimizeBox = false;
|
---|
75 | this.Name = "TopicSelectorDialog";
|
---|
76 | this.ShowIcon = false;
|
---|
77 | this.ShowInTaskbar = false;
|
---|
78 | this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
---|
79 | this.Text = "Select Topics";
|
---|
80 | //this.Load += new System.EventHandler(this.HiveResourceSelectorDialog_Load);
|
---|
81 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
|
---|
82 | this.ResumeLayout(false);
|
---|
83 | }
|
---|
84 |
|
---|
85 | #endregion
|
---|
86 |
|
---|
87 |
|
---|
88 | protected System.Windows.Forms.Button okButton;
|
---|
89 | protected System.Windows.Forms.Button cancelButton;
|
---|
90 | protected System.Windows.Forms.ToolTip toolTip;
|
---|
91 | protected System.Windows.Forms.ErrorProvider errorProvider;
|
---|
92 | }
|
---|
93 | } |
---|