forked from Blackfrosch/VAGEDCSuite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ctrlReleaseNotes.Designer.cs
160 lines (154 loc) · 7.27 KB
/
ctrlReleaseNotes.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
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
155
156
157
158
159
160
namespace VAGSuite
{
partial class ctrlReleaseNotes
{
/// <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 Component 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.components = new System.ComponentModel.Container();
this.gridControl1 = new DevExpress.XtraGrid.GridControl();
this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
this.gcVersion = new DevExpress.XtraGrid.Columns.GridColumn();
this.gcDescription = new DevExpress.XtraGrid.Columns.GridColumn();
this.gcTitle = new DevExpress.XtraGrid.Columns.GridColumn();
this.gcDate = new DevExpress.XtraGrid.Columns.GridColumn();
this.gcLink = new DevExpress.XtraGrid.Columns.GridColumn();
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.printPreviewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
this.contextMenuStrip1.SuspendLayout();
this.SuspendLayout();
//
// gridControl1
//
this.gridControl1.ContextMenuStrip = this.contextMenuStrip1;
this.gridControl1.Dock = System.Windows.Forms.DockStyle.Fill;
this.gridControl1.Location = new System.Drawing.Point(0, 0);
this.gridControl1.MainView = this.gridView1;
this.gridControl1.Name = "gridControl1";
this.gridControl1.Size = new System.Drawing.Size(587, 384);
this.gridControl1.TabIndex = 0;
this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
this.gridView1});
//
// gridView1
//
this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
this.gcVersion,
this.gcDescription,
this.gcTitle,
this.gcDate,
this.gcLink});
this.gridView1.GridControl = this.gridControl1;
this.gridView1.GroupCount = 1;
this.gridView1.GroupSummary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Count, "Version", null, " ({0} entries)")});
this.gridView1.Name = "gridView1";
this.gridView1.OptionsBehavior.Editable = false;
this.gridView1.OptionsView.GroupDrawMode = DevExpress.XtraGrid.Views.Grid.GroupDrawMode.Office2003;
this.gridView1.OptionsView.ShowAutoFilterRow = true;
this.gridView1.OptionsView.ShowGroupedColumns = true;
this.gridView1.OptionsView.ShowGroupPanel = false;
this.gridView1.OptionsView.ShowIndicator = false;
this.gridView1.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gcVersion, DevExpress.Data.ColumnSortOrder.Descending)});
//
// gcVersion
//
this.gcVersion.Caption = "Version";
this.gcVersion.FieldName = "version";
this.gcVersion.GroupFormat.FormatString = "\"{0}: [#image]{1} {2}\"";
this.gcVersion.Name = "gcVersion";
//
// gcDescription
//
this.gcDescription.Caption = "Description";
this.gcDescription.FieldName = "description";
this.gcDescription.Name = "gcDescription";
this.gcDescription.Visible = true;
this.gcDescription.VisibleIndex = 2;
this.gcDescription.Width = 138;
//
// gcTitle
//
this.gcTitle.Caption = "Title";
this.gcTitle.FieldName = "title";
this.gcTitle.Name = "gcTitle";
this.gcTitle.Visible = true;
this.gcTitle.VisibleIndex = 0;
this.gcTitle.Width = 347;
//
// gcDate
//
this.gcDate.Caption = "Date";
this.gcDate.FieldName = "Date";
this.gcDate.Name = "gcDate";
this.gcDate.Visible = true;
this.gcDate.VisibleIndex = 1;
this.gcDate.Width = 81;
//
// gcLink
//
this.gcLink.Caption = "Link";
this.gcLink.FieldName = "link";
this.gcLink.Name = "gcLink";
//
// contextMenuStrip1
//
this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.printPreviewToolStripMenuItem});
this.contextMenuStrip1.Name = "contextMenuStrip1";
this.contextMenuStrip1.Size = new System.Drawing.Size(153, 48);
//
// printPreviewToolStripMenuItem
//
this.printPreviewToolStripMenuItem.Name = "printPreviewToolStripMenuItem";
this.printPreviewToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.printPreviewToolStripMenuItem.Text = "Print preview";
this.printPreviewToolStripMenuItem.Click += new System.EventHandler(this.printPreviewToolStripMenuItem_Click);
//
// ctrlReleaseNotes
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.gridControl1);
this.Name = "ctrlReleaseNotes";
this.Size = new System.Drawing.Size(587, 384);
((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
this.contextMenuStrip1.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private DevExpress.XtraGrid.GridControl gridControl1;
private DevExpress.XtraGrid.Views.Grid.GridView gridView1;
private DevExpress.XtraGrid.Columns.GridColumn gcVersion;
private DevExpress.XtraGrid.Columns.GridColumn gcDescription;
private DevExpress.XtraGrid.Columns.GridColumn gcTitle;
private DevExpress.XtraGrid.Columns.GridColumn gcDate;
private DevExpress.XtraGrid.Columns.GridColumn gcLink;
private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
private System.Windows.Forms.ToolStripMenuItem printPreviewToolStripMenuItem;
}
}