-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathForm1.Designer.cs
More file actions
155 lines (148 loc) · 7 KB
/
Form1.Designer.cs
File metadata and controls
155 lines (148 loc) · 7 KB
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
namespace tx_watermark
{
partial class Form1
{
/// <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()
{
this.textControl1 = new TXTextControl.TextControl();
this.buttonBar1 = new TXTextControl.ButtonBar();
this.statusBar1 = new TXTextControl.StatusBar();
this.rulerBar1 = new TXTextControl.RulerBar();
this.rulerBar2 = new TXTextControl.RulerBar();
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
this.watermarkToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.insertToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.menuStrip1.SuspendLayout();
this.SuspendLayout();
//
// textControl1
//
this.textControl1.ButtonBar = this.buttonBar1;
this.textControl1.Dock = System.Windows.Forms.DockStyle.Fill;
this.textControl1.Font = new System.Drawing.Font("Arial", 10F);
this.textControl1.Location = new System.Drawing.Point(25, 77);
this.textControl1.Name = "textControl1";
this.textControl1.RulerBar = this.rulerBar2;
this.textControl1.Size = new System.Drawing.Size(895, 626);
this.textControl1.StatusBar = this.statusBar1;
this.textControl1.TabIndex = 0;
this.textControl1.VerticalRulerBar = this.rulerBar1;
this.textControl1.Changed += new System.EventHandler(this.textControl1_Changed);
this.textControl1.ImageSelected += new TXTextControl.ImageEventHandler(this.textControl1_ImageSelected);
this.textControl1.ImageDeselected += new TXTextControl.ImageEventHandler(this.textControl1_ImageDeselected);
//
// buttonBar1
//
this.buttonBar1.BackColor = System.Drawing.SystemColors.Control;
this.buttonBar1.Dock = System.Windows.Forms.DockStyle.Top;
this.buttonBar1.Location = new System.Drawing.Point(0, 24);
this.buttonBar1.Name = "buttonBar1";
this.buttonBar1.Size = new System.Drawing.Size(920, 28);
this.buttonBar1.TabIndex = 1;
this.buttonBar1.Text = "buttonBar1";
//
// statusBar1
//
this.statusBar1.BackColor = System.Drawing.SystemColors.Control;
this.statusBar1.Dock = System.Windows.Forms.DockStyle.Bottom;
this.statusBar1.Location = new System.Drawing.Point(0, 703);
this.statusBar1.Name = "statusBar1";
this.statusBar1.Size = new System.Drawing.Size(920, 22);
this.statusBar1.TabIndex = 2;
//
// rulerBar1
//
this.rulerBar1.Alignment = TXTextControl.RulerBarAlignment.Left;
this.rulerBar1.Dock = System.Windows.Forms.DockStyle.Left;
this.rulerBar1.Location = new System.Drawing.Point(0, 77);
this.rulerBar1.Name = "rulerBar1";
this.rulerBar1.Size = new System.Drawing.Size(25, 626);
this.rulerBar1.TabIndex = 3;
this.rulerBar1.Text = "rulerBar1";
//
// rulerBar2
//
this.rulerBar2.Dock = System.Windows.Forms.DockStyle.Top;
this.rulerBar2.Location = new System.Drawing.Point(0, 52);
this.rulerBar2.Name = "rulerBar2";
this.rulerBar2.Size = new System.Drawing.Size(920, 25);
this.rulerBar2.TabIndex = 4;
this.rulerBar2.Text = "rulerBar2";
//
// menuStrip1
//
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.watermarkToolStripMenuItem});
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
this.menuStrip1.Name = "menuStrip1";
this.menuStrip1.Size = new System.Drawing.Size(920, 24);
this.menuStrip1.TabIndex = 5;
this.menuStrip1.Text = "menuStrip1";
//
// watermarkToolStripMenuItem
//
this.watermarkToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.insertToolStripMenuItem});
this.watermarkToolStripMenuItem.Name = "watermarkToolStripMenuItem";
this.watermarkToolStripMenuItem.Size = new System.Drawing.Size(77, 20);
this.watermarkToolStripMenuItem.Text = "Watermark";
//
// insertToolStripMenuItem
//
this.insertToolStripMenuItem.Name = "insertToolStripMenuItem";
this.insertToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.insertToolStripMenuItem.Text = "Insert";
this.insertToolStripMenuItem.Click += new System.EventHandler(this.insertToolStripMenuItem_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(920, 725);
this.Controls.Add(this.textControl1);
this.Controls.Add(this.rulerBar1);
this.Controls.Add(this.rulerBar2);
this.Controls.Add(this.buttonBar1);
this.Controls.Add(this.statusBar1);
this.Controls.Add(this.menuStrip1);
this.MainMenuStrip = this.menuStrip1;
this.Name = "Form1";
this.Text = "TX Text Control: Watermark Images";
this.Load += new System.EventHandler(this.Form1_Load);
this.menuStrip1.ResumeLayout(false);
this.menuStrip1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private TXTextControl.TextControl textControl1;
private TXTextControl.ButtonBar buttonBar1;
private TXTextControl.RulerBar rulerBar2;
private TXTextControl.StatusBar statusBar1;
private TXTextControl.RulerBar rulerBar1;
private System.Windows.Forms.MenuStrip menuStrip1;
private System.Windows.Forms.ToolStripMenuItem watermarkToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem insertToolStripMenuItem;
}
}