OSDN Git Service

FavoriteTweet/UnfavoriteTweetを使用したFav追加・削除に対応
[opentween/open-tween.git] / OpenTween / AuthDialog.Designer.cs
1 namespace OpenTween
2 {
3     partial class AuthDialog
4     {
5         /// <summary>
6         /// Required designer variable.
7         /// </summary>
8         private System.ComponentModel.IContainer components = null;
9
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)
15         {
16             if (disposing && (components != null))
17             {
18                 components.Dispose();
19             }
20             base.Dispose(disposing);
21         }
22
23         #region Windows Form Designer generated code
24
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()
30         {
31             this.components = new System.ComponentModel.Container();
32             System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AuthDialog));
33             this.label1 = new System.Windows.Forms.Label();
34             this.AuthLinkLabel = new System.Windows.Forms.LinkLabel();
35             this.contextMenuLinkLabel = new System.Windows.Forms.ContextMenuStrip(this.components);
36             this.MenuItemCopyURL = new System.Windows.Forms.ToolStripMenuItem();
37             this.label2 = new System.Windows.Forms.Label();
38             this.PinTextBox = new System.Windows.Forms.TextBox();
39             this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
40             this.CancelBtn = new System.Windows.Forms.Button();
41             this.OKBtn = new System.Windows.Forms.Button();
42             this.contextMenuLinkLabel.SuspendLayout();
43             this.tableLayoutPanel1.SuspendLayout();
44             this.SuspendLayout();
45             // 
46             // label1
47             // 
48             resources.ApplyResources(this.label1, "label1");
49             this.label1.Name = "label1";
50             // 
51             // AuthLinkLabel
52             // 
53             this.AuthLinkLabel.AutoEllipsis = true;
54             this.AuthLinkLabel.ContextMenuStrip = this.contextMenuLinkLabel;
55             resources.ApplyResources(this.AuthLinkLabel, "AuthLinkLabel");
56             this.AuthLinkLabel.Name = "AuthLinkLabel";
57             this.AuthLinkLabel.TabStop = true;
58             this.AuthLinkLabel.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.AuthLinkLabel_LinkClicked);
59             // 
60             // contextMenuLinkLabel
61             // 
62             this.contextMenuLinkLabel.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
63             this.MenuItemCopyURL});
64             this.contextMenuLinkLabel.Name = "contextMenuLinkLabel";
65             resources.ApplyResources(this.contextMenuLinkLabel, "contextMenuLinkLabel");
66             // 
67             // MenuItemCopyURL
68             // 
69             this.MenuItemCopyURL.Name = "MenuItemCopyURL";
70             resources.ApplyResources(this.MenuItemCopyURL, "MenuItemCopyURL");
71             this.MenuItemCopyURL.Click += new System.EventHandler(this.MenuItemCopyURL_Click);
72             // 
73             // label2
74             // 
75             resources.ApplyResources(this.label2, "label2");
76             this.label2.Name = "label2";
77             // 
78             // PinTextBox
79             // 
80             resources.ApplyResources(this.PinTextBox, "PinTextBox");
81             this.PinTextBox.Name = "PinTextBox";
82             // 
83             // tableLayoutPanel1
84             // 
85             resources.ApplyResources(this.tableLayoutPanel1, "tableLayoutPanel1");
86             this.tableLayoutPanel1.Controls.Add(this.CancelBtn, 1, 0);
87             this.tableLayoutPanel1.Controls.Add(this.OKBtn, 0, 0);
88             this.tableLayoutPanel1.Name = "tableLayoutPanel1";
89             // 
90             // CancelBtn
91             // 
92             resources.ApplyResources(this.CancelBtn, "CancelBtn");
93             this.CancelBtn.DialogResult = System.Windows.Forms.DialogResult.Cancel;
94             this.CancelBtn.Name = "CancelBtn";
95             this.CancelBtn.UseVisualStyleBackColor = true;
96             // 
97             // OKBtn
98             // 
99             resources.ApplyResources(this.OKBtn, "OKBtn");
100             this.OKBtn.DialogResult = System.Windows.Forms.DialogResult.OK;
101             this.OKBtn.Name = "OKBtn";
102             this.OKBtn.UseVisualStyleBackColor = true;
103             // 
104             // AuthDialog
105             // 
106             this.AcceptButton = this.OKBtn;
107             resources.ApplyResources(this, "$this");
108             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
109             this.CancelButton = this.CancelBtn;
110             this.Controls.Add(this.tableLayoutPanel1);
111             this.Controls.Add(this.PinTextBox);
112             this.Controls.Add(this.label2);
113             this.Controls.Add(this.AuthLinkLabel);
114             this.Controls.Add(this.label1);
115             this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
116             this.MaximizeBox = false;
117             this.Name = "AuthDialog";
118             this.ShowIcon = false;
119             this.ShowInTaskbar = false;
120             this.contextMenuLinkLabel.ResumeLayout(false);
121             this.tableLayoutPanel1.ResumeLayout(false);
122             this.tableLayoutPanel1.PerformLayout();
123             this.ResumeLayout(false);
124             this.PerformLayout();
125
126         }
127
128         #endregion
129
130         private System.Windows.Forms.Label label1;
131         private System.Windows.Forms.LinkLabel AuthLinkLabel;
132         private System.Windows.Forms.Label label2;
133         private System.Windows.Forms.TextBox PinTextBox;
134         private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
135         private System.Windows.Forms.Button CancelBtn;
136         private System.Windows.Forms.Button OKBtn;
137         private System.Windows.Forms.ContextMenuStrip contextMenuLinkLabel;
138         private System.Windows.Forms.ToolStripMenuItem MenuItemCopyURL;
139     }
140 }