-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAddBooks.cs
419 lines (323 loc) · 14.3 KB
/
AddBooks.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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.IO;
using System.Xml;
using System.Collections;
using System.Threading;
namespace BookStoreProject
{
public partial class AddBooks : Form
{
public AddBooks()
{
InitializeComponent();
}
List<Book> books = new List<Book>(); // listing books
private int sortColumn = -1;
class ListViewItemComparer : IComparer
{
private int col;
private SortOrder order;
public ListViewItemComparer()
{
col = 0;
order = SortOrder.Ascending;
}
public ListViewItemComparer(int column, SortOrder order)
{
col = column;
this.order = order;
}
public int Compare(object x, object y)
{
int returnVal = -1;
returnVal = String.Compare(((ListViewItem)x).SubItems[col].Text,
((ListViewItem)y).SubItems[col].Text);
// Determine whether the sort order is descending.
if (order == SortOrder.Descending)
// Invert the value returned by String.Compare.
returnVal *= -1;
return returnVal;
}
}
private void textBox1_TextChanged(object sender, EventArgs e)
{
}
void repeat()
{
try
{
XmlDocument xDoc = new XmlDocument();
xDoc.Load("\\BookStore\\books.xml");
XmlNode xn = xDoc.SelectSingleNode("Books");
xn.RemoveAll();
foreach (Book b in books)
{
XmlNode xTop = xDoc.CreateElement("Book");
XmlNode xTitle = xDoc.CreateElement("Title");
XmlNode xAuthor = xDoc.CreateElement("Author");
XmlNode xGenre = xDoc.CreateElement("Genre");
XmlNode xISBN = xDoc.CreateElement("ISBN");
XmlNode xCopies = xDoc.CreateElement("Copies");
xTitle.InnerText = b.Title;
xAuthor.InnerText = b.Author;
xGenre.InnerText = b.Genre;
xISBN.InnerText = b.ISBN;
xCopies.InnerText = b.Copies.ToString();
xTop.AppendChild(xTitle);
xTop.AppendChild(xAuthor);
xTop.AppendChild(xGenre);
xTop.AppendChild(xISBN);
xTop.AppendChild(xCopies);
xDoc.DocumentElement.AppendChild(xTop);
xDoc.Save("\\BookStore\\books.xml");
}
}
catch { }
}
private void button2_Click(object sender, EventArgs e)
{
try
{
// this button changes the values from the book which already exist.
books[listView1.SelectedItems[0].Index].Title = textBox1.Text;
books[listView1.SelectedItems[0].Index].Author = textBox2.Text;
books[listView1.SelectedItems[0].Index].Genre = comboBox1.Text;
books[listView1.SelectedItems[0].Index].ISBN = textBox4.Text;
books[listView1.SelectedItems[0].Index].Copies = int.Parse(comboBox2.Text.ToString());
repeat();
XmlDocument xDoc2 = new XmlDocument();
xDoc2.Load("\\BookStore\\books.xml");
foreach (XmlNode xn1 in xDoc2.SelectNodes("Books/book"))
{
Book w = new Book();
w.Title = xn1.SelectSingleNode("Title").InnerText;
w.Author = xn1.SelectSingleNode("Author").InnerText;
w.Genre = xn1.SelectSingleNode("Genre").InnerText;
w.ISBN = xn1.SelectSingleNode("ISBN").InnerText;
w.Copies = int.Parse(xn1.SelectSingleNode("Copies").InnerText);
books.Add(w);
ListViewItem list1 = new ListViewItem(w.Title);
list1.SubItems.Add(w.Author);
list1.SubItems.Add(w.Genre);
list1.SubItems.Add(w.ISBN);
list1.SubItems.Add(w.Copies.ToString());
listView1.Items.Add(list1);
}
}
catch { }
}
private void button1_Click(object sender, EventArgs e)
{
//This button adds text into list view then xml files takes it from list view and text boxes.
Book b = new Book();
b.Title = textBox1.Text;
b.Author = textBox2.Text;
b.Genre = comboBox1.Text;
b.ISBN = textBox4.Text;
b.Copies = int.Parse(comboBox2.Text.ToString());
books.Add(b);
ListViewItem list = new ListViewItem(b.Title);
list.SubItems.Add(b.Author);
list.SubItems.Add(b.Genre);
list.SubItems.Add(b.ISBN);
list.SubItems.Add(b.Copies.ToString());
listView1.Items.Add(list);
repeat();
textBox1.Text = "";
textBox2.Text = "";
textBox4.Text = "";
comboBox1.SelectedIndex = 0;
comboBox2.SelectedIndex = 0;
}
void Remove()
{
// this function deletes the information just for the event not for the storage. I couldnt make a full function for both(i mean xml and right away)
try
{
listView1.Items.Remove(listView1.SelectedItems[0]);
books.RemoveAt(listView1.SelectedItems[0].Index);
}
catch { }
}
private void button3_Click(object sender, EventArgs e)
{
DialogResult result = MessageBox.Show("Do you really want to delete this ?", string.Empty, MessageBoxButtons.YesNo);
if (result == DialogResult.Yes)
{
Remove();
}
else
{
return;
}
{
try
{
XmlDocument xdoc = new XmlDocument();
xdoc.Load("\\BookStore\\books.xml");
foreach (XmlNode node in xdoc.SelectNodes("Books/Book"))
{
if (node.SelectSingleNode("Title").InnerText == textBox1.Text)
{
node.ParentNode.RemoveChild(node);
}
}
xdoc.Save("\\BookStore\\books.xml");
}
catch { }
textBox1.Text = "";
textBox2.Text = "";
comboBox1.SelectedIndex = 0;
textBox4.Text = "";
comboBox2.SelectedIndex = 0;
}
}
private void AddBooks_Load(object sender, EventArgs e)
{
// when we click manage people in main program, add people loads and start with creating xml file then fill it with information which come from class Book and textboxes.
comboBox1.SelectedIndex = 0;
comboBox2.SelectedIndex = 0;
comboBox3.SelectedIndex = 0;
if (!Directory.Exists("\\BookStore"))
Directory.CreateDirectory("\\BookStore");
if (!File.Exists("\\BookStore\\books.xml"))
{
XmlTextWriter xW = new XmlTextWriter("\\BookStore\\books.xml", Encoding.UTF8);
xW.WriteStartElement("Books");
xW.WriteEndElement();
xW.Close();
}
XmlDocument xDoc = new XmlDocument();
xDoc.Load("\\BookStore\\books.xml");
foreach (XmlNode xn in xDoc.SelectNodes("Books/Book"))
{
Book b = new Book();
b.Title = xn.SelectSingleNode("Title").InnerText;
b.Author = xn.SelectSingleNode("Author").InnerText;
b.Genre = xn.SelectSingleNode("Genre").InnerText;
b.ISBN = xn.SelectSingleNode("ISBN").InnerText;
b.Copies = int.Parse(xn.SelectSingleNode("Copies").InnerText);
books.Add(b);
ListViewItem list = new ListViewItem(b.Title);
list.SubItems.Add(b.Author);
list.SubItems.Add(b.Genre);
list.SubItems.Add(b.ISBN);
list.SubItems.Add(b.Copies.ToString());
listView1.Items.Add(list);
}
}
private void AddBooks_FormClosing(object sender, FormClosingEventArgs e)
{
}
private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
{
}
private void groupBox2_Enter(object sender, EventArgs e)
{
}
private void listView1_SelectedIndexChanged_1(object sender, EventArgs e)
{
// this is list of books and their information which keep in the list. List only shows title, when you click on the title you will see the full details of the book.
try
{
textBox1.Text = listView1.SelectedItems[0].SubItems[0].Text;
textBox2.Text = listView1.SelectedItems[0].SubItems[1].Text;
comboBox1.Text = listView1.SelectedItems[0].SubItems[2].Text;
textBox4.Text = listView1.SelectedItems[0].SubItems[3].Text;
comboBox2.Text = listView1.SelectedItems[0].SubItems[4].Text;
}
catch { }
}
private void listView1_ColumnClick(object sender, ColumnClickEventArgs e)
{
// Determine whether the column is the same as the last column clicked.
if (e.Column != sortColumn)
{
// Set the sort column to the new column.
sortColumn = e.Column;
// Set the sort order to ascending by default.
listView1.Sorting = SortOrder.Ascending;
}
else
{
// Determine what the last sort order was and change it.
if (listView1.Sorting == SortOrder.Ascending)
listView1.Sorting = SortOrder.Descending;
else
listView1.Sorting = SortOrder.Ascending;
}
// Call the sort method to manually sort.
listView1.Sort();
// Set the ListViewItemSorter property to a new ListViewItemComparer
// object.
this.listView1.ListViewItemSorter = new ListViewItemComparer(e.Column,
listView1.Sorting);
}
private void button5_Click(object sender, EventArgs e)
{
listView1.Items.Clear();//clear list
// when we click manage people in main program, add books loads and start with creating xml file then fill it with information which come from class person and textboxes.
//comboBox1.SelectedIndex = 0;
foreach (Book b in books)//instead of loading XML file again and again, loop for each book and Add to ListView
{
ListViewItem list = new ListViewItem(b.Title);
list.SubItems.Add(b.Author);
list.SubItems.Add(b.Genre);
list.SubItems.Add(b.ISBN);
list.SubItems.Add(b.Copies.ToString());
listView1.Items.Add(list);
}
}
private void button6_Click(object sender, EventArgs e)
{
}
private void textBox5_TextChanged(object sender, EventArgs e)
{
try
{
if (textBox5.TextLength ==0)
{
listView1.Items.Clear();//clear list
// when we click manage people in main program, add books loads and start with creating xml file then fill it with information which come from class person and textboxes.
//comboBox1.SelectedIndex = 0;
foreach (Book b in books)//instead of loading XML file again and again, loop for each book and Add to ListView
{
ListViewItem list = new ListViewItem(b.Title);
list.SubItems.Add(b.Author);
list.SubItems.Add(b.Genre);
list.SubItems.Add(b.ISBN);
list.SubItems.Add(b.Copies.ToString());
listView1.Items.Add(list);
}
}
else
{
int selection = comboBox3.SelectedIndex;//comboBox3 is drop down with Author, genre, etc...
ArrayList results = new ArrayList();//initialize arraylist
for (int i = 0; i < listView1.Items.Count; i++)//loops rows of ListView1
{
string a = listView1.Items[i].SubItems[selection].Text;//creates a string based on row i, column 'selection'
if (a.IndexOf(textBox5.Text, StringComparison.OrdinalIgnoreCase) != -1)//compares user types in textBox5 (search) ignores case
{
results.Add(listView1.Items[i]);
}
}
listView1.Items.Clear();
for (int i = 0; i < results.Count; i++)
{
listView1.Items.Add((ListViewItem)results[i]);
}
}
}
catch { }
}
}
}