EditBrolForm.cs
Description du code
EditBrolForm.cs est un fichier du projet BiblioBrol.Ce fichier est situé dans /var/www/bin/sniplets/bibliobrol/src/.
Projet BiblioBrol :
Gestion de media en CSharp.
Pour plus d'infos, vous pouvez consulter la brève analyse.
Code source ou contenu du fichier
Code c# (EditBrolForm.cs) (108 lignes)
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using be.gaudry.bibliobrol.view.controls; using be.gaudry.bibliobrol.model; namespace be.gaudry.bibliobrol.view.dialogs { public partial class EditBrolForm : Form { public EditBrolForm() { InitializeComponent(); } public BrolEditControl InnerControl { get { return this.editBrolControl; } } private void saveBtn_Click(object sender, EventArgs e) { Brol brol = editBrolControl.getBrol(); if (brol.Id < 0) { checkPersons(brol); ModelAdapter.insertBrol(brol); } else ModelAdapter.updateBrol(brol); editBrolControl.saveCover(brol); this.Close(); } private void checkPersons(Brol brol) { List<Person> persons; foreach (Actor actor in brol.Actors) { persons = ModelAdapter.getPersons(actor.LastName, actor.FirstName); if (persons.Count > 0) { bool personFound = false; foreach (Person person in persons) { if (promptToUsePerson(person, actor)) { personFound = true; break; } } if (!personFound) { promptToInsertPerson(actor); } } else { promptToInsertPerson(actor); } } } private bool promptToUsePerson(Person person, Actor actor) { DialogResult r = MessageBox.Show( this, String.Format("La personne {0} existe dans l'application locale.\n\rDésirez vous utiliser cette personne ?", person), "Importation d'ouvrage", MessageBoxButtons.OKCancel, MessageBoxIcon.Information, MessageBoxDefaultButton.Button1); if (r == DialogResult.OK) { actor.setFromPerson(person); return true; } return false; } private bool promptToInsertPerson(Actor actor) { //prompt to save person if not exists or select existing person //add person if not exists DialogResult r = MessageBox.Show( this, String.Format("{0} n'existe pas dans l'application locale.\n\rDésirez vous l'importer ?", (Person)actor), "Importation d'ouvrage", MessageBoxButtons.OKCancel, MessageBoxIcon.Information, MessageBoxDefaultButton.Button1); if (r == DialogResult.OK) { int persId = ModelAdapter.insertPerson(actor); actor.Id = persId; return true; } return false; } } }
Structure et Fichiers du projet
Afficher/masquer...Icône | Nom | Taille | Modification |
Pas de sous-répertoires. | |||
Icône | Nom | Taille | Modification |
| _ | Répertoire parent | 0 octets | 1734916766 23/12/2024 02:19:26 |
Utilisation de l'explorateur de code
- Navigation :
- Un clic sur une icône de répertoire ouvre ce répertoire pour en afficher les fichiers.
- Lorsque le répertoire en cours ne contient pas de sous-répertoires il est possible de remonter vers le répertoire parent.
- La structure de répertoires en treetable (tableau en forme d'arborescence) n'est plus possibledans cette version.
- Un clic sur une icône de fichier ouvre ce fichier pour en afficher le code avec la coloration syntaxique adaptée en fonction du langage principal utilisé dans le fichier.
- Affichage :
- Il est possible de trier les répertoires ou les fichiers selon certains critères (nom, taille, date).
- Actions :
- Les actions possible sur les fichiers dépendent de vos droits d'utilisateur sur le site. Veuillez activer le mode utilisateur pour activer les actions.
English translation
You have asked to visit this site in English. For now, only the interface is translated, but not all the content yet.If you want to help me in translations, your contribution is welcome. All you need to do is register on the site, and send me a message asking me to add you to the group of translators, which will give you the opportunity to translate the pages you want. A link at the bottom of each translated page indicates that you are the translator, and has a link to your profile.
Thank you in advance.
Document created the 16/10/2009, last modified the 26/10/2018
Source of the printed document:https://www.gaudry.be/en/cs-bibliobrol-source-rf-view/dialogs/EditBrolForm.cs.html
The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.