From a3b41bd0cc6325193ef70ceb855b28e103e6d90f Mon Sep 17 00:00:00 2001 From: Fionn Date: Mon, 16 Jan 2023 21:42:17 +0100 Subject: [PATCH] wip --- .../AppointmentsLib/Models/Appointment.cs | 28 +- .../AppointmentsLib/Models/Contact.cs | 63 +++- .../AppointmentsUi/MainForm.cs | 4 +- .../Views/ContactView.Designer.cs | 299 ++++++++++++++++++ .../AppointmentsUi/Views/ContactView.cs | 96 ++++++ .../AppointmentsUi/Views/ContactView.resx | 60 ++++ .../Views/ContactsList.Designer.cs | 95 ++++++ .../AppointmentsUi/Views/ContactsList.cs | 56 ++++ .../AppointmentsUi/Views/ContactsList.resx | 60 ++++ 9 files changed, 754 insertions(+), 7 deletions(-) create mode 100644 AppointmentsManager/AppointmentsUi/Views/ContactView.Designer.cs create mode 100644 AppointmentsManager/AppointmentsUi/Views/ContactView.cs create mode 100644 AppointmentsManager/AppointmentsUi/Views/ContactView.resx create mode 100644 AppointmentsManager/AppointmentsUi/Views/ContactsList.Designer.cs create mode 100644 AppointmentsManager/AppointmentsUi/Views/ContactsList.cs create mode 100644 AppointmentsManager/AppointmentsUi/Views/ContactsList.resx diff --git a/AppointmentsManager/AppointmentsLib/Models/Appointment.cs b/AppointmentsManager/AppointmentsLib/Models/Appointment.cs index a610d88..cbc36c9 100644 --- a/AppointmentsManager/AppointmentsLib/Models/Appointment.cs +++ b/AppointmentsManager/AppointmentsLib/Models/Appointment.cs @@ -25,14 +25,27 @@ namespace AppointmentsLib.Models { var reader = Database.Execute("SELECT appointmentId, contactId, time, description FROM Appointment;").ExecuteReader(); + List data = new(); List appointments = new(); while (reader.Read()) { - appointments.Add(new Appointment(reader.GetInt32(0), reader.GetInt32(1), reader.GetString(2), reader.GetString(3))); + data.Add(new AppointmentData() + { + AppointmentId = reader.GetInt32(0), + ContactId = reader.GetInt32(1), + Time = reader.GetString(2), + Description = reader.GetString(3) + }); } reader.Close(); + + foreach (AppointmentData ad in data) + { + appointments.Add(ad.Finalize()); + } + return appointments; } @@ -91,4 +104,17 @@ namespace AppointmentsLib.Models cmd.ExecuteNonQuery(); } } + + internal class AppointmentData + { + public int AppointmentId; + public int ContactId; + public string Time; + public string Description; + + public Appointment Finalize() + { + return new Appointment(AppointmentId, ContactId, Time.ToString(), Description); + } + } } diff --git a/AppointmentsManager/AppointmentsLib/Models/Contact.cs b/AppointmentsManager/AppointmentsLib/Models/Contact.cs index 1bea7be..dfb0326 100644 --- a/AppointmentsManager/AppointmentsLib/Models/Contact.cs +++ b/AppointmentsManager/AppointmentsLib/Models/Contact.cs @@ -52,14 +52,34 @@ namespace AppointmentsLib.Models { var reader = Database.Execute($"SELECT {primaryKey}, {string.Join(", ", fields.ToArray())} FROM Contact;").ExecuteReader(); + List data = new(); List contacts = new(); - while (reader.Read()) + while(reader.Read()) { - contacts.Add(new Contact(reader.GetInt32(0), reader.GetInt32(1), reader.GetString(2), reader.GetString(3), reader.GetString(4), reader.GetInt32(4), reader.GetString(5), reader.GetInt32(6), reader.GetString(7), reader.GetInt32(8), reader.GetString(9))); + data.Add(new ContactData() + { + ContactId = reader.GetInt32(0), + SalutationId = reader.GetInt32(1), + FirstName = reader.GetString(2), + LastName = reader.GetString(3), + Street = reader.GetString(4), + PostalId = reader.GetInt32(5), + Phone = reader.GetString(6), + PhoneTypeId = reader.GetInt32(7), + Mobil = reader.GetString(8), + CompanyId = reader.GetInt32(9), + Department = reader.GetString(10) + }); } reader.Close(); + + foreach (ContactData cd in data) + { + contacts.Add(cd.Finalize()); + } + return contacts; } @@ -73,9 +93,24 @@ namespace AppointmentsLib.Models while (reader.Read()) { - var contact = new Contact(reader.GetInt32(0), reader.GetInt32(1), reader.GetString(2), reader.GetString(3), reader.GetString(4), reader.GetInt32(4), reader.GetString(5), reader.GetInt32(6), reader.GetString(7), reader.GetInt32(8), reader.GetString(9)); + var data = new ContactData() + { + ContactId = reader.GetInt32(0), + SalutationId = reader.GetInt32(1), + FirstName = reader.GetString(2), + LastName = reader.GetString(3), + Street = reader.GetString(4), + PostalId = reader.GetInt32(5), + Phone = reader.GetString(6), + PhoneTypeId = reader.GetInt32(7), + Mobil = reader.GetString(8), + CompanyId = reader.GetInt32(9), + Department = reader.GetString(10) + }; + reader.Close(); - return contact; + + return data.Finalize(); } throw new Exception("contact does not exist"); @@ -131,4 +166,24 @@ namespace AppointmentsLib.Models cmd.ExecuteNonQuery(); } } + + internal class ContactData + { + public int ContactId; + public int SalutationId; + public string FirstName; + public string LastName; + public string Street; + public int PostalId; + public string Phone; + public int PhoneTypeId; + public string Mobil; + public int CompanyId; + public string Department; + + public Contact Finalize() + { + return new Contact(ContactId, SalutationId, FirstName, LastName, Street, PostalId, Phone, PhoneTypeId, Mobil, CompanyId, Department); + } + } } diff --git a/AppointmentsManager/AppointmentsUi/MainForm.cs b/AppointmentsManager/AppointmentsUi/MainForm.cs index 4c62fcb..b36487b 100644 --- a/AppointmentsManager/AppointmentsUi/MainForm.cs +++ b/AppointmentsManager/AppointmentsUi/MainForm.cs @@ -46,12 +46,12 @@ namespace AppointmentsUi private void toolstripContactsButton_ButtonClick(object sender, EventArgs e) { - MessageBox.Show("contacts button click"); + EmbedForm(); } private void toolstripContactsAddNewButton_Click(object sender, EventArgs e) { - MessageBox.Show("contacts add button click"); + EmbedForm().addContact(); } private void toolstripCompaniesButton_ButtonClick(object sender, EventArgs e) diff --git a/AppointmentsManager/AppointmentsUi/Views/ContactView.Designer.cs b/AppointmentsManager/AppointmentsUi/Views/ContactView.Designer.cs new file mode 100644 index 0000000..7b046ea --- /dev/null +++ b/AppointmentsManager/AppointmentsUi/Views/ContactView.Designer.cs @@ -0,0 +1,299 @@ +namespace AppointmentsUi.Views +{ + partial class ContactView + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.buttonApplyCreate = new System.Windows.Forms.Button(); + this.buttonDelete = new System.Windows.Forms.Button(); + this.labelFirstName = new System.Windows.Forms.Label(); + this.textBoxFirstName = new System.Windows.Forms.TextBox(); + this.textBoxLastName = new System.Windows.Forms.TextBox(); + this.labelLastName = new System.Windows.Forms.Label(); + this.textBoxStreet = new System.Windows.Forms.TextBox(); + this.labelStreet = new System.Windows.Forms.Label(); + this.textBoxDepartment = new System.Windows.Forms.TextBox(); + this.labelDepartment = new System.Windows.Forms.Label(); + this.textBoxMobil = new System.Windows.Forms.TextBox(); + this.labelMobil = new System.Windows.Forms.Label(); + this.textBoxPhone = new System.Windows.Forms.TextBox(); + this.labelPhone = new System.Windows.Forms.Label(); + this.labelSalutation = new System.Windows.Forms.Label(); + this.comboBoxSalutation = new System.Windows.Forms.ComboBox(); + this.comboBoxPostal = new System.Windows.Forms.ComboBox(); + this.labelPostal = new System.Windows.Forms.Label(); + this.comboBoxPhoneType = new System.Windows.Forms.ComboBox(); + this.labelPhoneType = new System.Windows.Forms.Label(); + this.comboBoxCompany = new System.Windows.Forms.ComboBox(); + this.labelCompany = new System.Windows.Forms.Label(); + this.SuspendLayout(); + // + // buttonApplyCreate + // + this.buttonApplyCreate.Location = new System.Drawing.Point(12, 314); + this.buttonApplyCreate.Name = "buttonApplyCreate"; + this.buttonApplyCreate.Size = new System.Drawing.Size(164, 23); + this.buttonApplyCreate.TabIndex = 0; + this.buttonApplyCreate.Text = "Apply"; + this.buttonApplyCreate.UseVisualStyleBackColor = true; + // + // buttonDelete + // + this.buttonDelete.Location = new System.Drawing.Point(190, 314); + this.buttonDelete.Name = "buttonDelete"; + this.buttonDelete.Size = new System.Drawing.Size(164, 23); + this.buttonDelete.TabIndex = 1; + this.buttonDelete.Text = "Delete"; + this.buttonDelete.UseVisualStyleBackColor = true; + // + // labelFirstName + // + this.labelFirstName.AutoSize = true; + this.labelFirstName.Location = new System.Drawing.Point(12, 44); + this.labelFirstName.Name = "labelFirstName"; + this.labelFirstName.Size = new System.Drawing.Size(62, 15); + this.labelFirstName.TabIndex = 2; + this.labelFirstName.Text = "First name"; + // + // textBoxFirstName + // + this.textBoxFirstName.Location = new System.Drawing.Point(142, 41); + this.textBoxFirstName.Name = "textBoxFirstName"; + this.textBoxFirstName.Size = new System.Drawing.Size(212, 23); + this.textBoxFirstName.TabIndex = 3; + // + // textBoxLastName + // + this.textBoxLastName.Location = new System.Drawing.Point(142, 70); + this.textBoxLastName.Name = "textBoxLastName"; + this.textBoxLastName.Size = new System.Drawing.Size(212, 23); + this.textBoxLastName.TabIndex = 5; + // + // labelLastName + // + this.labelLastName.AutoSize = true; + this.labelLastName.Location = new System.Drawing.Point(12, 73); + this.labelLastName.Name = "labelLastName"; + this.labelLastName.Size = new System.Drawing.Size(61, 15); + this.labelLastName.TabIndex = 4; + this.labelLastName.Text = "Last name"; + // + // textBoxStreet + // + this.textBoxStreet.Location = new System.Drawing.Point(142, 99); + this.textBoxStreet.Name = "textBoxStreet"; + this.textBoxStreet.Size = new System.Drawing.Size(212, 23); + this.textBoxStreet.TabIndex = 7; + // + // labelStreet + // + this.labelStreet.AutoSize = true; + this.labelStreet.Location = new System.Drawing.Point(12, 102); + this.labelStreet.Name = "labelStreet"; + this.labelStreet.Size = new System.Drawing.Size(37, 15); + this.labelStreet.TabIndex = 6; + this.labelStreet.Text = "Street"; + // + // textBoxDepartment + // + this.textBoxDepartment.Location = new System.Drawing.Point(142, 244); + this.textBoxDepartment.Name = "textBoxDepartment"; + this.textBoxDepartment.Size = new System.Drawing.Size(212, 23); + this.textBoxDepartment.TabIndex = 13; + // + // labelDepartment + // + this.labelDepartment.AutoSize = true; + this.labelDepartment.Location = new System.Drawing.Point(12, 247); + this.labelDepartment.Name = "labelDepartment"; + this.labelDepartment.Size = new System.Drawing.Size(70, 15); + this.labelDepartment.TabIndex = 12; + this.labelDepartment.Text = "Department"; + // + // textBoxMobil + // + this.textBoxMobil.Location = new System.Drawing.Point(142, 215); + this.textBoxMobil.Name = "textBoxMobil"; + this.textBoxMobil.Size = new System.Drawing.Size(212, 23); + this.textBoxMobil.TabIndex = 11; + // + // labelMobil + // + this.labelMobil.AutoSize = true; + this.labelMobil.Location = new System.Drawing.Point(12, 218); + this.labelMobil.Name = "labelMobil"; + this.labelMobil.Size = new System.Drawing.Size(38, 15); + this.labelMobil.TabIndex = 10; + this.labelMobil.Text = "Mobil"; + // + // textBoxPhone + // + this.textBoxPhone.Location = new System.Drawing.Point(142, 157); + this.textBoxPhone.Name = "textBoxPhone"; + this.textBoxPhone.Size = new System.Drawing.Size(212, 23); + this.textBoxPhone.TabIndex = 9; + // + // labelPhone + // + this.labelPhone.AutoSize = true; + this.labelPhone.Location = new System.Drawing.Point(12, 160); + this.labelPhone.Name = "labelPhone"; + this.labelPhone.Size = new System.Drawing.Size(41, 15); + this.labelPhone.TabIndex = 8; + this.labelPhone.Text = "Phone"; + // + // labelSalutation + // + this.labelSalutation.AutoSize = true; + this.labelSalutation.Location = new System.Drawing.Point(12, 15); + this.labelSalutation.Name = "labelSalutation"; + this.labelSalutation.Size = new System.Drawing.Size(60, 15); + this.labelSalutation.TabIndex = 14; + this.labelSalutation.Text = "Salutation"; + // + // comboBoxSalutation + // + this.comboBoxSalutation.FormattingEnabled = true; + this.comboBoxSalutation.Location = new System.Drawing.Point(142, 12); + this.comboBoxSalutation.Name = "comboBoxSalutation"; + this.comboBoxSalutation.Size = new System.Drawing.Size(212, 23); + this.comboBoxSalutation.TabIndex = 15; + // + // comboBoxPostal + // + this.comboBoxPostal.FormattingEnabled = true; + this.comboBoxPostal.Location = new System.Drawing.Point(142, 128); + this.comboBoxPostal.Name = "comboBoxPostal"; + this.comboBoxPostal.Size = new System.Drawing.Size(212, 23); + this.comboBoxPostal.TabIndex = 17; + // + // labelPostal + // + this.labelPostal.AutoSize = true; + this.labelPostal.Location = new System.Drawing.Point(12, 131); + this.labelPostal.Name = "labelPostal"; + this.labelPostal.Size = new System.Drawing.Size(39, 15); + this.labelPostal.TabIndex = 16; + this.labelPostal.Text = "Postal"; + // + // comboBoxPhoneType + // + this.comboBoxPhoneType.FormattingEnabled = true; + this.comboBoxPhoneType.Location = new System.Drawing.Point(142, 186); + this.comboBoxPhoneType.Name = "comboBoxPhoneType"; + this.comboBoxPhoneType.Size = new System.Drawing.Size(212, 23); + this.comboBoxPhoneType.TabIndex = 19; + // + // labelPhoneType + // + this.labelPhoneType.AutoSize = true; + this.labelPhoneType.Location = new System.Drawing.Point(12, 189); + this.labelPhoneType.Name = "labelPhoneType"; + this.labelPhoneType.Size = new System.Drawing.Size(65, 15); + this.labelPhoneType.TabIndex = 18; + this.labelPhoneType.Text = "PhoneType"; + // + // comboBoxCompany + // + this.comboBoxCompany.FormattingEnabled = true; + this.comboBoxCompany.Location = new System.Drawing.Point(142, 273); + this.comboBoxCompany.Name = "comboBoxCompany"; + this.comboBoxCompany.Size = new System.Drawing.Size(212, 23); + this.comboBoxCompany.TabIndex = 21; + // + // labelCompany + // + this.labelCompany.AutoSize = true; + this.labelCompany.Location = new System.Drawing.Point(12, 276); + this.labelCompany.Name = "labelCompany"; + this.labelCompany.Size = new System.Drawing.Size(59, 15); + this.labelCompany.TabIndex = 20; + this.labelCompany.Text = "Company"; + // + // ContactView + // + this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(366, 349); + this.Controls.Add(this.comboBoxCompany); + this.Controls.Add(this.labelCompany); + this.Controls.Add(this.comboBoxPhoneType); + this.Controls.Add(this.labelPhoneType); + this.Controls.Add(this.comboBoxPostal); + this.Controls.Add(this.labelPostal); + this.Controls.Add(this.comboBoxSalutation); + this.Controls.Add(this.labelSalutation); + this.Controls.Add(this.textBoxDepartment); + this.Controls.Add(this.labelDepartment); + this.Controls.Add(this.textBoxMobil); + this.Controls.Add(this.labelMobil); + this.Controls.Add(this.textBoxPhone); + this.Controls.Add(this.labelPhone); + this.Controls.Add(this.textBoxStreet); + this.Controls.Add(this.labelStreet); + this.Controls.Add(this.textBoxLastName); + this.Controls.Add(this.labelLastName); + this.Controls.Add(this.textBoxFirstName); + this.Controls.Add(this.labelFirstName); + this.Controls.Add(this.buttonDelete); + this.Controls.Add(this.buttonApplyCreate); + this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; + this.MaximizeBox = false; + this.MinimizeBox = false; + this.Name = "ContactView"; + this.Text = "ContactView"; + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + + private System.Windows.Forms.Button buttonApplyCreate; + private System.Windows.Forms.Button buttonDelete; + private System.Windows.Forms.Label labelFirstName; + private System.Windows.Forms.TextBox textBoxFirstName; + private System.Windows.Forms.TextBox textBoxLastName; + private System.Windows.Forms.Label labelLastName; + private System.Windows.Forms.TextBox textBoxStreet; + private System.Windows.Forms.Label labelStreet; + private System.Windows.Forms.TextBox textBoxDepartment; + private System.Windows.Forms.Label labelDepartment; + private System.Windows.Forms.TextBox textBoxMobil; + private System.Windows.Forms.Label labelMobil; + private System.Windows.Forms.TextBox textBoxPhone; + private System.Windows.Forms.Label labelPhone; + private System.Windows.Forms.Label labelSalutation; + private System.Windows.Forms.ComboBox comboBoxSalutation; + private System.Windows.Forms.ComboBox comboBoxPostal; + private System.Windows.Forms.Label labelPostal; + private System.Windows.Forms.ComboBox comboBoxPhoneType; + private System.Windows.Forms.Label labelPhoneType; + private System.Windows.Forms.ComboBox comboBoxCompany; + private System.Windows.Forms.Label labelCompany; + } +} \ No newline at end of file diff --git a/AppointmentsManager/AppointmentsUi/Views/ContactView.cs b/AppointmentsManager/AppointmentsUi/Views/ContactView.cs new file mode 100644 index 0000000..861a910 --- /dev/null +++ b/AppointmentsManager/AppointmentsUi/Views/ContactView.cs @@ -0,0 +1,96 @@ +using AppointmentsLib.Models; +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; + +namespace AppointmentsUi.Views +{ + public partial class ContactView : Form + { + Contact? contact; + + IEnumerable salutations; + IEnumerable postals; + IEnumerable phoneTypes; + IEnumerable companies; + + public ContactView(Contact? contact) + { + InitializeComponent(); + + this.contact = contact; + + salutations = Salutation.GetSalutations(); + postals = Postal.GetPostals(); + phoneTypes = PhoneType.GetPhoneTypes(); + companies = Company.GetCompanies(); + + comboBoxSalutation.Items.AddRange(salutations.Select(sal => $"{sal.SalutationId}: {sal.Label}").ToArray()); + comboBoxPostal.Items.AddRange(postals.Select(sal => $"{sal.PostalId}: {sal.Label}").ToArray()); + comboBoxPhoneType.Items.AddRange(phoneTypes.Select(sal => $"{sal.PhoneTypeId}: {sal.Label}").ToArray()); + comboBoxCompany.Items.AddRange(companies.Select(sal => $"{sal.CompanyId}: {sal.Label}").ToArray()); + + if (contact == null) + { + // create new contact + buttonApplyCreate.Text = "Create"; + + buttonApplyCreate.Click += new EventHandler(delegate (object sender, EventArgs e) + { + var salutationId = Int32.Parse(comboBoxSalutation.SelectedItem.ToString().Split(":").First()); + var postalId = Int32.Parse(comboBoxPostal.SelectedItem.ToString().Split(":").First()); + var phoneTypeId = Int32.Parse(comboBoxPhoneType.SelectedItem.ToString().Split(":").First()); + var companyId = Int32.Parse(comboBoxCompany.SelectedItem.ToString().Split(":").First()); + + Contact.Create(salutationId, textBoxFirstName.Text, textBoxLastName.Text, textBoxStreet.Text, postalId, textBoxPhone.Text, phoneTypeId, textBoxMobil.Text, companyId, textBoxDepartment.Text); + this.Close(); + }); + + buttonDelete.Enabled = false; + } else + { + textBoxFirstName.Text = contact.FirstName; + textBoxLastName.Text = contact.LastName; + textBoxStreet.Text = contact.Street; + textBoxDepartment.Text = contact.Department; + textBoxPhone.Text = contact.Phone; + textBoxMobil.Text = contact.Mobil; + + buttonApplyCreate.Click += new EventHandler(delegate (object sender, EventArgs e) + { + var salutationId = Int32.Parse(comboBoxSalutation.SelectedItem.ToString().Split(":").First()); + var postalId = Int32.Parse(comboBoxPostal.SelectedItem.ToString().Split(":").First()); + var phoneTypeId = Int32.Parse(comboBoxPhoneType.SelectedItem.ToString().Split(":").First()); + var companyId = Int32.Parse(comboBoxCompany.SelectedItem.ToString().Split(":").First()); + + contact.FirstName = textBoxFirstName.Text; + contact.LastName = textBoxLastName.Text; + contact.Street = textBoxStreet.Text; + contact.Phone = textBoxPhone.Text; + contact.Mobil = textBoxMobil.Text; + contact.Department = textBoxDepartment.Text; + + contact.Salutation = Salutation.GetSalutationById(salutationId); + contact.Postal = Postal.GetPostalById(postalId); + contact.PhoneType = PhoneType.GetPhoneTypeById(phoneTypeId); + contact.Company = Company.GetCompanyById(companyId); + + contact.Save(); + + this.Close(); + }); + + comboBoxSalutation.SelectedItem = $"{contact.Salutation.SalutationId}: {contact.Salutation.Label}"; + comboBoxPostal.SelectedItem = $"{contact.Postal.PostalId}: {contact.Postal.Label}"; + comboBoxPhoneType.SelectedItem = $"{contact.PhoneType.PhoneTypeId}: {contact.PhoneType.Label}"; + comboBoxCompany.SelectedItem = $"{contact.Company.CompanyId}: {contact.Company.Label}"; + } + } + } +} diff --git a/AppointmentsManager/AppointmentsUi/Views/ContactView.resx b/AppointmentsManager/AppointmentsUi/Views/ContactView.resx new file mode 100644 index 0000000..f298a7b --- /dev/null +++ b/AppointmentsManager/AppointmentsUi/Views/ContactView.resx @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/AppointmentsManager/AppointmentsUi/Views/ContactsList.Designer.cs b/AppointmentsManager/AppointmentsUi/Views/ContactsList.Designer.cs new file mode 100644 index 0000000..6b2a3aa --- /dev/null +++ b/AppointmentsManager/AppointmentsUi/Views/ContactsList.Designer.cs @@ -0,0 +1,95 @@ +namespace AppointmentsUi.Views +{ + partial class ContactsList + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.buttonAddNewContact = new System.Windows.Forms.Button(); + this.labelContactsHeader = new System.Windows.Forms.Label(); + this.tableLayoutPanelContacts = new System.Windows.Forms.TableLayoutPanel(); + this.SuspendLayout(); + // + // buttonAddNewContact + // + this.buttonAddNewContact.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.buttonAddNewContact.Location = new System.Drawing.Point(725, -1); + this.buttonAddNewContact.Name = "buttonAddNewContact"; + this.buttonAddNewContact.Size = new System.Drawing.Size(75, 23); + this.buttonAddNewContact.TabIndex = 11; + this.buttonAddNewContact.Text = "Add new"; + this.buttonAddNewContact.UseVisualStyleBackColor = true; + this.buttonAddNewContact.Click += new System.EventHandler(this.buttonAddNewContact_Click); + // + // labelContactsHeader + // + this.labelContactsHeader.AutoSize = true; + this.labelContactsHeader.Location = new System.Drawing.Point(-1, 3); + this.labelContactsHeader.Name = "labelContactsHeader"; + this.labelContactsHeader.Size = new System.Drawing.Size(54, 15); + this.labelContactsHeader.TabIndex = 10; + this.labelContactsHeader.Text = "Contacts"; + // + // tableLayoutPanelContacts + // + this.tableLayoutPanelContacts.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.tableLayoutPanelContacts.BackColor = System.Drawing.SystemColors.Control; + this.tableLayoutPanelContacts.ColumnCount = 4; + this.tableLayoutPanelContacts.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelContacts.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelContacts.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelContacts.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelContacts.Location = new System.Drawing.Point(-1, 28); + this.tableLayoutPanelContacts.Name = "tableLayoutPanelContacts"; + this.tableLayoutPanelContacts.RowCount = 1; + this.tableLayoutPanelContacts.RowStyles.Add(new System.Windows.Forms.RowStyle()); + this.tableLayoutPanelContacts.Size = new System.Drawing.Size(802, 423); + this.tableLayoutPanelContacts.TabIndex = 9; + // + // ContactsList + // + this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(800, 450); + this.Controls.Add(this.buttonAddNewContact); + this.Controls.Add(this.labelContactsHeader); + this.Controls.Add(this.tableLayoutPanelContacts); + this.Name = "ContactsList"; + this.Text = "ContactsList"; + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + + private System.Windows.Forms.Button buttonAddNewContact; + private System.Windows.Forms.Label labelContactsHeader; + private System.Windows.Forms.TableLayoutPanel tableLayoutPanelContacts; + } +} \ No newline at end of file diff --git a/AppointmentsManager/AppointmentsUi/Views/ContactsList.cs b/AppointmentsManager/AppointmentsUi/Views/ContactsList.cs new file mode 100644 index 0000000..05a9e8a --- /dev/null +++ b/AppointmentsManager/AppointmentsUi/Views/ContactsList.cs @@ -0,0 +1,56 @@ +using AppointmentsLib.Models; +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; + +namespace AppointmentsUi.Views +{ + public partial class ContactsList : Form + { + public ContactsList() + { + InitializeComponent(); + + var contacts = Contact.GetContacts(); + + for (int i = 0; i < contacts.Count(); i++) + { + var contact = contacts.ElementAt(i); + + var labelId = new Label() { Text = contact.ContactId.ToString(), AutoSize = true, TextAlign = ContentAlignment.MiddleCenter }; + var labelBriefOverview = new Label() { Text = $"{contact.LastName}, {contact.FirstName}", AutoSize = true }; + var buttonEdit = new Button() { Text = "View" }; + + buttonEdit.Click += new EventHandler(delegate (object sender, EventArgs e) { + openAddContactForm(contact); + }); + + tableLayoutPanelContacts.Controls.Add(labelId, 0, 1 + i); + tableLayoutPanelContacts.Controls.Add(labelBriefOverview, 1, 1 + i); + tableLayoutPanelContacts.Controls.Add(buttonEdit, 2, 1 + i); + } + } + + private void openAddContactForm(Contact? contact) + { + new ContactView(contact).ShowDialog(); + } + + internal void addContact() + { + Program.mainForm.EmbedForm(); + openAddContactForm(null); + } + + private void buttonAddNewContact_Click(object sender, EventArgs e) + { + openAddContactForm(null); + } + } +} diff --git a/AppointmentsManager/AppointmentsUi/Views/ContactsList.resx b/AppointmentsManager/AppointmentsUi/Views/ContactsList.resx new file mode 100644 index 0000000..f298a7b --- /dev/null +++ b/AppointmentsManager/AppointmentsUi/Views/ContactsList.resx @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file