-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathForm1.cs
185 lines (178 loc) · 6.51 KB
/
Form1.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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
// Developer Express Code Central Example:
// How to implement CRUD operations using XtraGrid and LinqServeModeSource
//
// This example demonstrates how to implement create, update and delete operations
// using XtraGrid and LinqServeModeSource.
// This example works with the standard
// SQL Northwind database.
//
// You can find sample updates and versions for different programming languages here:
// http://www.devexpress.com/example=E4498
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using DevExpress.Skins;
using DevExpress.LookAndFeel;
using DevExpress.UserSkins;
using DevExpress.XtraEditors;
using System.Data.Linq;
using System.Linq;
using DevExpress.Data.Linq;
namespace LinqServerModeSource
{
public partial class Form1 : XtraForm
{
public Form1()
{
InitializeComponent();
linqServerModeSource1.QueryableSource = nwdContext.Customers;
gridControl.DataSource = linqServerModeSource1;
}
NorthwindDataContext nwdContext = new NorthwindDataContext();
Customer customerToEdit;
EditForm f1;
private void button1_Click(object sender, EventArgs e)
{
customerToEdit = CreateCustomer();
EditCustomer(customerToEdit, "NewCustomer", CloseNewCustomerHandler);
}
private Customer CreateCustomer()
{
string idString;
var newCustomer = new Customer();
while (true)
{
idString = GenerateCustomerID();
if (!String.IsNullOrEmpty(idString))
{
newCustomer.CustomerID = idString;
break;
}
}
return newCustomer;
}
private string GenerateCustomerID()
{
const int IDLength = 5;
var result = String.Empty;
var rnd = new Random();
bool collisionFlag = false;
for (var i = 0; i < IDLength; i++)
{
result += Convert.ToChar(rnd.Next(65, 90));
}
for (int i = 0; i <gridView1.DataRowCount; i++)
{
if (result == gridView1.GetRowCellValue(i, gridView1.Columns["CustomerID"]).ToString())
{
collisionFlag = true;
break;
}
}
if (collisionFlag)
{
return String.Empty;
}
else
return result;
}
private void button2_Click(object sender, EventArgs e)
{
var query = nwdContext.Customers.Where<Customer>(customer => customer.CustomerID == GetCustomerIDByRowHandle(gridView1.FocusedRowHandle));
customerToEdit = query.ToList()[0];
EditCustomer(customerToEdit, "EditInfo", CloseEditCustomerHandler);
}
private void EditCustomer(Customer customer, string windowTitle, FormClosingEventHandler closedDelegate)
{
f1 = new EditForm(customer) { Text = windowTitle };
f1.FormClosing += closedDelegate;
f1.ShowDialog();
}
private string GetCustomerIDByRowHandle(int rowHandle)
{
return (string)gridView1.GetRowCellValue(rowHandle, "CustomerID");
}
private void CloseEditCustomerHandler(object sender, EventArgs e)
{
if (((EditForm)sender).DialogResult == DialogResult.OK)
{
try
{
nwdContext.SubmitChanges();
nwdContext.Refresh(RefreshMode.OverwriteCurrentValues, nwdContext.Customers);
gridView1.RefreshRow(gridView1.FocusedRowHandle);
}
catch (Exception ex)
{
HandleExcepton(ex);
}
}
customerToEdit = null;
}
private void CloseNewCustomerHandler(object sender, FormClosingEventArgs e)
{
if (((EditForm)sender).DialogResult == DialogResult.OK)
{
try
{
nwdContext.Customers.InsertOnSubmit(customerToEdit);
nwdContext.SubmitChanges();
gridControl.BeginInvoke(new MethodInvoker(delegate
{
nwdContext.Refresh(RefreshMode.OverwriteCurrentValues, nwdContext.Customers);
gridView1.LayoutChanged();
}));
}
catch (Exception ex)
{
HandleExcepton(ex);
}
linqServerModeSource1.Reload();
for (int i = 0; i < gridView1.DataRowCount; i++)
{
if (customerToEdit.CustomerID == gridView1.GetRowCellValue(i, gridView1.Columns["CustomerID"]).ToString())
{
gridView1.FocusedRowHandle = i;
break;
}
}
}
customerToEdit = null;
}
private void HandleExcepton(Exception ex)
{
MessageBox.Show(ex.Message);
}
private void button3_Click(object sender, EventArgs e)
{
DeleteCustomer(gridView1.FocusedRowHandle);
}
private void DeleteCustomer(int focusedRowHandle)
{
if (focusedRowHandle < 0)
return;
if (MessageBox.Show("Do you really want to delete the selected customer?", "Delete Customer", MessageBoxButtons.OKCancel) != DialogResult.OK)
{
return;
}
var query = nwdContext.Customers.Where<Customer>(customer => customer.CustomerID == GetCustomerIDByRowHandle(focusedRowHandle));
nwdContext.Customers.DeleteOnSubmit(query.ToList()[0]);
try
{
nwdContext.SubmitChanges();
nwdContext.Refresh(RefreshMode.OverwriteCurrentValues, nwdContext.Customers);
}
catch (Exception ex)
{
HandleExcepton(ex);
}
linqServerModeSource1.Reload();
gridView1.FocusedRowHandle = focusedRowHandle;
customerToEdit = null;
}
}
}