GetTagList: Do not include an empty string in the list
[TortoiseGit.git] / contrib / issue-tracker-plugins / ExampleCsPlugin / MyIssuesForm.Designer.cs
blobe0576f416681bdcd9eba41d0abcc7e7410d856df
1 namespace ExampleCsPlugin
3 partial class MyIssuesForm
5 /// <summary>
6 /// Required designer variable.
7 /// </summary>
8 private System.ComponentModel.IContainer components = null;
10 /// <summary>
11 /// Clean up any resources being used.
12 /// </summary>
13 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14 protected override void Dispose(bool disposing)
16 if (disposing && (components != null))
18 components.Dispose();
20 base.Dispose(disposing);
23 #region Windows Form Designer generated code
25 /// <summary>
26 /// Required method for Designer support - do not modify
27 /// the contents of this method with the code editor.
28 /// </summary>
29 private void InitializeComponent()
31 this.okButton = new System.Windows.Forms.Button();
32 this.cancelButton = new System.Windows.Forms.Button();
33 this.listView1 = new System.Windows.Forms.ListView();
34 this.SuspendLayout();
35 //
36 // okButton
37 //
38 this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
39 this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
40 this.okButton.FlatStyle = System.Windows.Forms.FlatStyle.System;
41 this.okButton.Location = new System.Drawing.Point(215, 200);
42 this.okButton.Name = "okButton";
43 this.okButton.Size = new System.Drawing.Size(75, 23);
44 this.okButton.TabIndex = 0;
45 this.okButton.Text = "OK";
46 this.okButton.UseVisualStyleBackColor = true;
47 this.okButton.Click += new System.EventHandler(this.okButton_Click);
48 //
49 // cancelButton
50 //
51 this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
52 this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
53 this.cancelButton.FlatStyle = System.Windows.Forms.FlatStyle.System;
54 this.cancelButton.Location = new System.Drawing.Point(296, 200);
55 this.cancelButton.Name = "cancelButton";
56 this.cancelButton.Size = new System.Drawing.Size(75, 23);
57 this.cancelButton.TabIndex = 1;
58 this.cancelButton.Text = "Cancel";
59 this.cancelButton.UseVisualStyleBackColor = true;
60 //
61 // listView1
62 //
63 this.listView1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
64 | System.Windows.Forms.AnchorStyles.Left)
65 | System.Windows.Forms.AnchorStyles.Right)));
66 this.listView1.CheckBoxes = true;
67 this.listView1.FullRowSelect = true;
68 this.listView1.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
69 this.listView1.Location = new System.Drawing.Point(12, 12);
70 this.listView1.Name = "listView1";
71 this.listView1.Size = new System.Drawing.Size(359, 182);
72 this.listView1.TabIndex = 2;
73 this.listView1.UseCompatibleStateImageBehavior = false;
74 this.listView1.View = System.Windows.Forms.View.Details;
75 //
76 // MyIssuesForm
77 //
78 this.AcceptButton = this.okButton;
79 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
80 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
81 this.CancelButton = this.cancelButton;
82 this.ClientSize = new System.Drawing.Size(383, 235);
83 this.Controls.Add(this.listView1);
84 this.Controls.Add(this.cancelButton);
85 this.Controls.Add(this.okButton);
86 this.MaximizeBox = false;
87 this.MinimizeBox = false;
88 this.Name = "MyIssuesForm";
89 this.ShowIcon = false;
90 this.ShowInTaskbar = false;
91 this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
92 this.Text = "MyIssuesForm";
93 this.Load += new System.EventHandler(this.MyIssuesForm_Load);
94 this.ResumeLayout(false);
98 #endregion
100 private System.Windows.Forms.Button okButton;
101 private System.Windows.Forms.Button cancelButton;
102 private System.Windows.Forms.ListView listView1;