-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathForm1.Designer.cs
84 lines (74 loc) · 3.18 KB
/
Form1.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
using Syncfusion.WinForms.DataGrid;
using Syncfusion.WinForms.DataGrid.Enums;
using System.Windows.Forms;
namespace GettingStarted
{
/// <summary>
/// Summary description for Form1.
/// </summary>
partial class Form1
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.Container 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.sfDataGrid = new Syncfusion.WinForms.DataGrid.SfDataGrid();
((System.ComponentModel.ISupportInitialize)(this.sfDataGrid)).BeginInit();
this.SuspendLayout();
//
// sfDataGrid
//
this.sfDataGrid.AccessibleName = "Table";
this.sfDataGrid.AllowDraggingColumns = true;
this.sfDataGrid.AllowFiltering = true;
this.sfDataGrid.AllowResizingColumns = true;
this.sfDataGrid.AllowResizingHiddenColumns = true;
this.sfDataGrid.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.sfDataGrid.AutoSizeColumnsMode = Syncfusion.WinForms.DataGrid.Enums.AutoSizeColumnsMode.Fill;
this.sfDataGrid.BackColor = System.Drawing.SystemColors.Window;
this.sfDataGrid.Location = new System.Drawing.Point(10, 5);
this.sfDataGrid.Name = "sfDataGrid";
this.sfDataGrid.ShowGroupDropArea = true;
this.sfDataGrid.Size = new System.Drawing.Size(990, 590);
this.sfDataGrid.TabIndex = 1;
//
// Form1
//
this.BackColor = System.Drawing.SystemColors.Window;
this.ClientSize = new System.Drawing.Size(1006, 593);
this.Controls.Add(this.sfDataGrid);
this.Margin = new System.Windows.Forms.Padding(5);
this.MinimumSize = new System.Drawing.Size(500, 400);
this.Name = "Form1";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Getting Started";
((System.ComponentModel.ISupportInitialize)(this.sfDataGrid)).EndInit();
this.ResumeLayout(false);
}
#endregion
#region API Definition
private SfDataGrid sfDataGrid;
#endregion
}
}