-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAddStory.Designer.cs
109 lines (103 loc) · 4.84 KB
/
AddStory.Designer.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
namespace Instagram
{
partial class AddStory
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AddStory));
this.storyBox = new System.Windows.Forms.PictureBox();
this.uploadBtn = new Instagram.CustomButton();
this.albumBtn = new Instagram.CustomButton();
((System.ComponentModel.ISupportInitialize)(this.storyBox)).BeginInit();
this.SuspendLayout();
//
// storyBox
//
this.storyBox.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.storyBox.Location = new System.Drawing.Point(1, 12);
this.storyBox.Name = "storyBox";
this.storyBox.Size = new System.Drawing.Size(712, 299);
this.storyBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
this.storyBox.TabIndex = 0;
this.storyBox.TabStop = false;
//
// uploadBtn
//
this.uploadBtn.BackColor = System.Drawing.Color.DodgerBlue;
this.uploadBtn.BackgroundColor = System.Drawing.Color.DodgerBlue;
this.uploadBtn.BorderColor = System.Drawing.Color.PaleVioletRed;
this.uploadBtn.BorderRadius = 35;
this.uploadBtn.BorderSize = 0;
this.uploadBtn.FlatAppearance.BorderSize = 0;
this.uploadBtn.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.uploadBtn.ForeColor = System.Drawing.Color.White;
this.uploadBtn.Image = ((System.Drawing.Image)(resources.GetObject("uploadBtn.Image")));
this.uploadBtn.Location = new System.Drawing.Point(364, 331);
this.uploadBtn.Name = "uploadBtn";
this.uploadBtn.Size = new System.Drawing.Size(77, 75);
this.uploadBtn.TabIndex = 3;
this.uploadBtn.TextColor = System.Drawing.Color.White;
this.uploadBtn.UseVisualStyleBackColor = false;
this.uploadBtn.Click += new System.EventHandler(this.upload_Click);
//
// albumBtn
//
this.albumBtn.BackColor = System.Drawing.SystemColors.ControlLight;
this.albumBtn.BackgroundColor = System.Drawing.SystemColors.ControlLight;
this.albumBtn.BorderColor = System.Drawing.Color.PaleVioletRed;
this.albumBtn.BorderRadius = 26;
this.albumBtn.BorderSize = 0;
this.albumBtn.FlatAppearance.BorderSize = 0;
this.albumBtn.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.albumBtn.ForeColor = System.Drawing.Color.White;
this.albumBtn.Image = ((System.Drawing.Image)(resources.GetObject("albumBtn.Image")));
this.albumBtn.Location = new System.Drawing.Point(301, 350);
this.albumBtn.Name = "albumBtn";
this.albumBtn.Size = new System.Drawing.Size(57, 56);
this.albumBtn.TabIndex = 4;
this.albumBtn.TextColor = System.Drawing.Color.White;
this.albumBtn.UseVisualStyleBackColor = false;
this.albumBtn.Click += new System.EventHandler(this.album_Click);
//
// AddStory
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(717, 430);
this.Controls.Add(this.albumBtn);
this.Controls.Add(this.uploadBtn);
this.Controls.Add(this.storyBox);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.Name = "AddStory";
this.Text = "Form1";
this.TopMost = true;
((System.ComponentModel.ISupportInitialize)(this.storyBox)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.PictureBox storyBox;
private CustomButton uploadBtn;
private CustomButton albumBtn;
}
}