BrolBoxUserControl.cs
Description du code
BrolBoxUserControl.cs est un fichier du projet BrolDev.Ce fichier est situé dans /var/www/bin/sniplets/bibliobrol/broldev/src/.
Projet BrolDev : Librairie de composants réutilisables pour les applications BrolDev en CSharp.
Code source ou contenu du fichier
Code c# (BrolBoxUserControl.cs) (147 lignes)
using System; using System.ComponentModel; using System.Drawing; using System.Windows.Forms; using be.gaudry.view.style; namespace be.gaudry.view.controls { [ Docking(DockingBehavior.Ask), ToolboxBitmap(@"BrolBoxUserControl.displayMenuTop") ] public partial class BrolBoxUserControl : UserControl { #region declarations constructors and destructors private EventHandler rendererChangedEvent; private bool useContentGradient, useCaptionGradient; private System.Drawing.Drawing2D.LinearGradientBrush gradientBrush; public BrolBoxUserControl() { useContentGradient = true; useCaptionGradient = true; InitializeComponent(); this.SetStyle(ControlStyles.ResizeRedraw, true); this.SetStyle(ControlStyles.UserPaint, true); this.SetStyle(ControlStyles.AllPaintingInWmPaint, true); this.SetStyle(ControlStyles.DoubleBuffer, true); StyleFactory.Instance.onRendererChanged += rendererChangedEvent; initGradientBackground(); } ~BrolBoxUserControl() { StyleFactory.Instance.onRendererChanged -= rendererChangedEvent; Dispose(false); } #endregion #region properties [ Description("Enable/Disable using gradient colors for the content. False to use control color."), Category("BrolBox features"), DefaultValue(true), Browsable(true) ] public bool UseContentGradient { get { return useContentGradient; } set { useContentGradient = value; initGradientBackground(); } } [ Description("Enable/Disable using gradient colors for the content. False to use control color."), Category("BrolBox features"), DefaultValue(true), Browsable(true) ] public bool UseCaptionGradient { get { return useCaptionGradient; } set { useCaptionGradient = value; initGradientBackground(); } } [ Description("Change the caption text to be displayed"), Category("BrolBox features"), DefaultValue(""), Browsable(true) ] public String CaptionText { get { return captionLbl.Text; } set { captionLbl.Text = value; Invalidate(); } } [ Description("Change the icon to display in the title"), Category("BrolBox features"), DefaultValue(null), Browsable(true) ] public Image CaptionImage { get { return captionPB.Image; } set { captionPB.Image = value; Invalidate(); } } #endregion /// <summary> /// Defines a bitmap as BackgroundImageLayout to avoid gradient background flickering /// on paint event /// </summary> private void initGradientBackground() { /*gradientBrush = new System.Drawing.Drawing2D.LinearGradientBrush(new Point(0, 0), new Point(captionPanel.Width, captionPanel.Height), StyleFactory.CustomSystemColors.ActiveCaption, StyleFactory.CustomSystemColors.GradientActiveCaption );*/ StyleFactory.CustomSystemColors.ActiveCaption, StyleFactory.CustomSystemColors.GradientActiveCaption, System.Drawing.Drawing2D.LinearGradientMode.ForwardDiagonal ); Graphics g = Graphics.FromImage(bmp); captionPanel.BackgroundImage = bmp; captionPanel.BackgroundImageLayout = ImageLayout.Stretch; } private void onRendererChanged(object sender, EventArgs e) { initGradientBackground(); } } }
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 | 1732238043 22/11/2024 02:14:03 |
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.
Version en cache
22/11/2024 02:14:03 Cette version de la page est en cache (à la date du 22/11/2024 02:14:03) afin d'accélérer le traitement. Vous pouvez activer le mode utilisateur dans le menu en haut pour afficher la dernère version de la page.Document créé le 16/10/2009, dernière modification le 26/10/2018
Source du document imprimé : https://www.gaudry.be/cs-broldev-source-rf-view/controls/BrolBoxUserControl.cs.html
L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.