GraphicsTools.cs
Description du code
GraphicsTools.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# (GraphicsTools.cs) (98 lignes)
using System.Drawing; using System.Drawing.Drawing2D; namespace be.gaudry.view.style { /// <summary> /// Provides tools for graphics processing /// </summary> /// <remarks> /// 2007 José Manuel Menéndez Poo /// Visit my blog for upgrades and other renderers - www.menendezpoo.com /// </remarks> internal static class GraphicsTools { /// <summary> /// Creates a rounded rectangle from the specified rectangle and radius /// </summary> /// <param name="rectangle">Base rectangle</param> /// <param name="radius">Radius of the corners</param> /// <returns>Rounded rectangle as a GraphicsPath</returns> public static GraphicsPath CreateRoundRectangle(Rectangle rectangle, int radius) { int l = rectangle.Left; int t = rectangle.Top; int w = rectangle.Width; int h = rectangle.Height; int d = radius << 1; path.AddArc(l, t, d, d, 180, 90); // topleft path.AddLine(l + radius, t, l + w - radius, t); // top path.AddArc(l + w - d, t, d, d, 270, 90); // topright path.AddLine(l + w, t + radius, l + w, t + h - radius); // right path.AddArc(l + w - d, t + h - d, d, d, 0, 90); // bottomright path.AddLine(l + w - radius, t + h, l + radius, t + h); // bottom path.AddArc(l, t + h - d, d, d, 90, 90); // bottomleft path.AddLine(l, t + h - radius, l, t + radius); // left path.CloseFigure(); return path; } /// <summary> /// Creates a rectangle rounded on the top /// </summary> /// <param name="rectangle">Base rectangle</param> /// <param name="radius">Radius of the top corners</param> /// <returns>Rounded rectangle (on top) as a GraphicsPath object</returns> public static GraphicsPath CreateTopRoundRectangle(Rectangle rectangle, int radius) { int l = rectangle.Left; int t = rectangle.Top; int w = rectangle.Width; int h = rectangle.Height; int d = radius << 1; path.AddArc(l, t, d, d, 180, 90); // topleft path.AddLine(l + radius, t, l + w - radius, t); // top path.AddArc(l + w - d, t, d, d, 270, 90); // topright path.AddLine(l + w, t + radius, l + w, t + h); // right path.AddLine(l + w, t + h, l, t + h); // bottom path.AddLine(l, t + h, l, t + radius); // left path.CloseFigure(); return path; } /// <summary> /// Creates a rectangle rounded on the bottom /// </summary> /// <param name="rectangle">Base rectangle</param> /// <param name="radius">Radius of the bottom corners</param> /// <returns>Rounded rectangle (on bottom) as a GraphicsPath object</returns> public static GraphicsPath CreateBottomRoundRectangle(Rectangle rectangle, int radius) { int l = rectangle.Left; int t = rectangle.Top; int w = rectangle.Width; int h = rectangle.Height; int d = radius << 1; path.AddLine(l + radius, t, l + w - radius, t); // top path.AddLine(l + w, t + radius, l + w, t + h - radius); // right path.AddArc(l + w - d, t + h - d, d, d, 0, 90); // bottomright path.AddLine(l + w - radius, t + h, l + radius, t + h); // bottom path.AddArc(l, t + h - d, d, d, 90, 90); // bottomleft path.AddLine(l, t + h - radius, l, t + radius); // left path.CloseFigure(); return path; } } }
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 | 1732269053 22/11/2024 10:50:53 |
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 10:50:53 Cette version de la page est en cache (à la date du 22/11/2024 10:50:53) 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/style/vista/GraphicsTools.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.