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 | 1734920533 23/12/2024 03:22:13 |
| _ | 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.
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/controls//BrolInfoControl.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.