forked from AdrianVeidt/Editor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWorkArea.Designer.cs
More file actions
91 lines (84 loc) · 4.33 KB
/
WorkArea.Designer.cs
File metadata and controls
91 lines (84 loc) · 4.33 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
namespace VectorEditor
{
partial class WorkArea
{
/// <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()
{
Crom.Controls.TabbedDocument.TopTabButtonRenderer topTabButtonRenderer1 = new Crom.Controls.TabbedDocument.TopTabButtonRenderer();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(WorkArea));
this.tabbedView = new Crom.Controls.TabbedDocument.TabbedView();
this.statusStrip1 = new System.Windows.Forms.StatusStrip();
this.SuspendLayout();
//
// tabbedView
//
this.tabbedView.BackGradient1 = System.Drawing.SystemColors.Control;
this.tabbedView.BackGradient2 = System.Drawing.SystemColors.ControlLightLight;
this.tabbedView.BackGradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
topTabButtonRenderer1.BackGradient1 = System.Drawing.Color.FromArgb(((int)(((byte)(240)))), ((int)(((byte)(240)))), ((int)(((byte)(240)))));
topTabButtonRenderer1.BackGradient2 = System.Drawing.Color.White;
topTabButtonRenderer1.BackGradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
topTabButtonRenderer1.Border1 = System.Drawing.Color.White;
topTabButtonRenderer1.Border2 = System.Drawing.Color.DarkGray;
topTabButtonRenderer1.SelectedBackGradient1 = System.Drawing.Color.White;
topTabButtonRenderer1.SelectedBackGradient2 = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(223)))), ((int)(((byte)(227)))));
topTabButtonRenderer1.SelectedBorder1 = System.Drawing.Color.White;
topTabButtonRenderer1.SelectedBorder2 = System.Drawing.Color.DarkGray;
topTabButtonRenderer1.TextColor = System.Drawing.Color.Black;
this.tabbedView.ButtonsRenderer = topTabButtonRenderer1;
this.tabbedView.Dock = System.Windows.Forms.DockStyle.Fill;
this.tabbedView.Location = new System.Drawing.Point(0, 0);
this.tabbedView.Name = "tabbedView";
this.tabbedView.SelectedIndex = -1;
this.tabbedView.ShowOneTabButton = true;
this.tabbedView.Size = new System.Drawing.Size(292, 244);
this.tabbedView.TabIndex = 1;
this.tabbedView.PageSelectionMade += new Crom.Controls.TabbedDocument.TabbedView.OnPageSelectionMade(this.TabbedViewPageSelectionMade);
//
// statusStrip1
//
this.statusStrip1.Location = new System.Drawing.Point(0, 244);
this.statusStrip1.Name = "statusStrip1";
this.statusStrip1.Size = new System.Drawing.Size(292, 22);
this.statusStrip1.TabIndex = 0;
this.statusStrip1.Text = "statusStrip1";
//
// WorkArea
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(292, 266);
this.Controls.Add(this.tabbedView);
this.Controls.Add(this.statusStrip1);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "WorkArea";
this.Text = "WorkArea";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private Crom.Controls.TabbedDocument.TabbedView tabbedView;
private System.Windows.Forms.StatusStrip statusStrip1;
}
}