BrolInfoControl.cs
Description du code
BrolInfoControl.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# (BrolInfoControl.cs) (161 lignes)
using System; using System.Collections.Generic; using System.ComponentModel; using System.Drawing; using System.Data; using System.Text; using System.Windows.Forms; using be.gaudry.bibliobrol.model; using be.gaudry.bibliobrol.view.dialogs; using be.gaudry.bibliobrol.view.utils; namespace be.gaudry.bibliobrol.view.controls { public partial class BrolInfoControl : UserControl { #region declarations and constructors private Brol brol; public BrolInfoControl() { InitializeComponent(); //initPresentation(); } #endregion #region public methods public Brol getBrol() { return this.brol; } public void setBrol(Brol brol) { this.brol = brol; fillInfoTP(); } public void reset() { cleanInfoTP(); } #endregion #region display media private void cleanInfoTP() { infoSynopsisRTB.Text = ""; infoTitleLbl.Text = ""; infoActorsLB.Items.Clear(); infoCategoriesLB.Items.Clear(); infoSeriesLB.Items.Clear(); infoCotationLbl.Text = "Cote : "; } private void fillInfoTP() { coverPB.ImageLocation = Img.getBrolImgPath(brol); toolTip1.SetToolTip(this.coverPB, coverPB.ImageLocation); infoTitleLbl.Text = brol.Title; infoSynopsisRTB.Text = brol.Synopsis; infoCommentRTB.Text = brol.Comment; { dateLbl.Text = "Date indéterminée"; } else { dateLbl.Text = String.Format("Date de sortie : {0}", brol.Date.ToShortDateString()); } infoCategoriesLB.Items.Clear(); infoCategoriesLB.Items.AddRange(brol.Categories.ToArray()); int i = infoCategoriesLB.Items.Count; infoCategoriesLbl.Text = i + " catégorie(s) : "; infoCategoriesLB.Visible = (i > 0); infoActorsLB.Items.Clear(); infoActorsLB.Items.AddRange(brol.Actors.ToArray()); i = infoActorsLB.Items.Count; infoActorsLbl.Text = i + " personne(s) / rôle(s) : "; infoActorsLB.Visible = (i > 0); infoCotationLbl.Text = "Cote : " + brol.Cotation + "/10"; infoSeriesLB.Items.Clear(); infoSeriesLB.Items.AddRange(brol.SerieItems.ToArray()); i = infoSeriesLB.Items.Count; infoSeriesLbl.Text = i + " séries(s) : "; infoSeriesLB.Visible = (i > 0); } #endregion #region controls presentation /* private void initPresentation() { this.SuspendLayout(); setControlPresentation(actorsPanel); setControlPresentation(seriesPanel); setControlPresentation(categoryPanel); setControlPresentation(dateCotationPanel); setControlPresentation(infoActorsLB); setControlPresentation(infoSeriesLB); setControlPresentation(infoCategoriesLB); this.ResumeLayout(false); } private void setControlPresentation(Panel p) { p.BorderStyle = BorderStyle.None; p.Padding = new Padding(3); p.ForeColor = p.Parent.ForeColor;// Color.Black; p.BackColor = p.Parent.BackColor;// Color.WhiteSmoke; } private void setControlPresentation(ListBox lb) { lb.BorderStyle = BorderStyle.None; lb.Padding = new Padding(3); lb.ForeColor = lb.Parent.ForeColor;// Color.Black; lb.BackColor = lb.Parent.BackColor;// Color.WhiteSmoke; } */ #endregion private void otherBrolsTsMi_Click(object sender, EventArgs e) { MessageBox.Show("Fonction non disponible"); } private void actorInfoTsMi_Click(object sender, EventArgs e) { if (infoActorsLB.SelectedItem != null) { Person person = infoActorsLB.SelectedItem as Person; if (person != null) { pif.setPerson(person); pif.ShowDialog(this); } } } private void actorCMS_Opening(object sender, CancelEventArgs e) { actorInfoTsMi.Enabled = false; otherBrolsTsMi.Enabled = false; if (infoActorsLB.SelectedItem != null) { Person person = infoActorsLB.SelectedItem as Person; if (person != null) { actorInfoTsMi.Enabled = true; otherBrolsTsMi.Enabled = true; } } } } }
Structure et Fichiers du projet
Afficher/masquer...Icône | Nom | Taille | Modification |
Icône | Nom | Taille | Modification |
| _ | Répertoire parent | 0 octets | 1736384575 09/01/2025 02:02:55 |
| _ | dao | 0 octets | 1541007199 31/10/2018 18:33:19 |
| _ | toolBars | 0 octets | 1541007200 31/10/2018 18:33:20 |
| _ | webInfo | 0 octets | 1541007201 31/10/2018 18:33:21 |
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.
Nederlandse vertaling
U hebt gevraagd om deze site in het Nederlands te bezoeken. Voor nu wordt alleen de interface vertaald, maar nog niet alle inhoud.Als je me wilt helpen met vertalingen, is je bijdrage welkom. Het enige dat u hoeft te doen, is u op de site registreren en mij een bericht sturen waarin u wordt gevraagd om u toe te voegen aan de groep vertalers, zodat u de gewenste pagina's kunt vertalen. Een link onderaan elke vertaalde pagina geeft aan dat u de vertaler bent en heeft een link naar uw profiel.
Bij voorbaat dank.
Document heeft de 16/10/2009 gemaakt, de laatste keer de 26/10/2018 gewijzigd
Bron van het afgedrukte document:https://www.gaudry.be/nl/cs-bibliobrol-source-rf-view/controls//BrolInfoControl.cs.html
De infobrol is een persoonlijke site waarvan de inhoud uitsluitend mijn verantwoordelijkheid is. De tekst is beschikbaar onder CreativeCommons-licentie (BY-NC-SA). Meer info op de gebruiksvoorwaarden en de auteur.