IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

C# Discussion :

arrondir bordure panel


Sujet :

C#

  1. #1
    Nouveau membre du Club
    Homme Profil pro
    Étudiant
    Inscrit en
    Octobre 2011
    Messages
    36
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Sénégal

    Informations professionnelles :
    Activité : Étudiant
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Octobre 2011
    Messages : 36
    Points : 34
    Points
    34
    Par défaut arrondir bordure panel
    Bonjour,

    Je travaille sur c Sharp programmation windows et j'ai un probleme depuis trois jours. je voulais arrondir les bordures d'une panel. est il possible de le faire sur visual studio 2010 (avec les proprietes) ou par programmation. si vous avez la solution ou des liens merci de me le signaler.

    Merci.

  2. #2
    SLE
    SLE est déconnecté
    Membre éclairé Avatar de SLE
    Homme Profil pro
    Consultant informatique
    Inscrit en
    Janvier 2004
    Messages
    604
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 50
    Localisation : Belgique

    Informations professionnelles :
    Activité : Consultant informatique

    Informations forums :
    Inscription : Janvier 2004
    Messages : 604
    Points : 799
    Points
    799
    Par défaut
    Bonjour,

    Recherche "Rounded Panel" avec google... il y a plein de tutos.

  3. #3
    Expert confirmé
    Inscrit en
    Avril 2008
    Messages
    2 564
    Détails du profil
    Informations personnelles :
    Âge : 64

    Informations forums :
    Inscription : Avril 2008
    Messages : 2 564
    Points : 4 441
    Points
    4 441
    Par défaut
    bonjour mactar85
    en voici un avec backcolor gradient ,une image background....qui j'espere fera ton bonheur.
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
     
    //tu peux personnaliser dans ce  panel 
    //•Gradeint Start Color
    //•Gradient End Color
    //•Border Color
    //•Border Width
    //•Shadow Offset
    //•Round corner radius
    //•Panel Image
    //•Panel Image location
    //.....
    using System;
    using System.ComponentModel;
    using System.Collections.Generic;
    using System.Diagnostics;
    using System.Text;
    using System.Windows.Forms;
    using System.Drawing;
    using System.Drawing.Drawing2D;
     
    namespace A1PanelCSharp
    {
        // A1Panel class
        public partial class A1Panel : Panel
        {
            int _borderWidth = 1;
            [Browsable(true), Category(A1PanelGlobals.A1Category)]
            [DefaultValue(1)]
            public int BorderWidth
            {
                get { return _borderWidth; }
                set { _borderWidth = value; Invalidate(); }
            }
     
            int _shadowOffSet = 5;
            [Browsable(true), Category(A1PanelGlobals.A1Category)]
            [DefaultValue(5)]
            public int ShadowOffSet
            {
                get
                {
                    return _shadowOffSet;
                }
                set { _shadowOffSet = Math.Abs(value); Invalidate(); }
            }
     
            int _roundCornerRadius = 4;
            [Browsable(true), Category(A1PanelGlobals.A1Category)]
            [DefaultValue(4)]
            public int RoundCornerRadius
            {
                get { return _roundCornerRadius; }
                set { _roundCornerRadius = Math.Abs(value); Invalidate(); }
            }
     
            Image _image;
            [Browsable(true), Category(A1PanelGlobals.A1Category)]
            public Image Image
            {
                get { return _image; }
                set { _image = value; Invalidate(); }
            }
     
            Point _imageLocation = new Point(4, 4);
            [Browsable(true), Category(A1PanelGlobals.A1Category)]
            [DefaultValue("4,4")]
            public Point ImageLocation
            {
                get { return _imageLocation; }
                set { _imageLocation = value; Invalidate(); }
            }
     
            Color _borderColor = Color.Gray;
            [Browsable(true), Category(A1PanelGlobals.A1Category)]
            [DefaultValue("Color.Gray")]
            public Color BorderColor
            {
                get { return _borderColor; }
                set { _borderColor = value; Invalidate(); }
            }
     
            Color _gradientStartColor = Color.White;
            [Browsable(true), Category(A1PanelGlobals.A1Category)]
            [DefaultValue("Color.White")]
            public Color GradientStartColor
            {
                get { return _gradientStartColor; }
                set { _gradientStartColor = value; Invalidate(); }
            }
     
            Color _gradientEndColor = Color.Gray;
            [Browsable(true), Category(A1PanelGlobals.A1Category)]
            [DefaultValue("Color.Gray")]
            public Color GradientEndColor
            {
                get { return _gradientEndColor; }
                set { _gradientEndColor = value; Invalidate(); }
            }
     
            public A1Panel()
            {
                this.SetStyle(ControlStyles.DoubleBuffer, true);
                this.SetStyle(ControlStyles.AllPaintingInWmPaint, true);
                this.SetStyle(ControlStyles.ResizeRedraw, true);
                this.SetStyle(ControlStyles.UserPaint, true);
                this.SetStyle(ControlStyles.SupportsTransparentBackColor, true);
                InitializeComponent();
            }
     
            protected override void OnPaintBackground(PaintEventArgs e)
            {
                base.OnPaintBackground(e);
     
                int tmpShadowOffSet = Math.Min(Math.Min(_shadowOffSet, this.Width - 2), this.Height - 2);
                int tmpSoundCornerRadius = Math.Min(Math.Min(_roundCornerRadius, this.Width - 2), this.Height - 2);
                if (this.Width > 1 && this.Height > 1)
                {
                    e.Graphics.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.AntiAlias;
     
                    Rectangle rect = new Rectangle(0, 0, this.Width - tmpShadowOffSet - 1,
                                       this.Height - tmpShadowOffSet - 1);
     
                    Rectangle rectShadow = new Rectangle(tmpShadowOffSet, tmpShadowOffSet,
                                       this.Width - tmpShadowOffSet - 1, this.Height - tmpShadowOffSet - 1);
     
                    GraphicsPath graphPathShadow = A1PanelGraphics.GetRoundPath(rectShadow, tmpSoundCornerRadius);
                    GraphicsPath graphPath = A1PanelGraphics.GetRoundPath(rect, tmpSoundCornerRadius);
     
                    if (tmpSoundCornerRadius > 0)
                    {
                        using (PathGradientBrush gBrush = new PathGradientBrush(graphPathShadow))
                        {
                            gBrush.WrapMode = WrapMode.Clamp;
                            ColorBlend colorBlend = new ColorBlend(3);
                            colorBlend.Colors = new Color[]{Color.Transparent,
                    Color.FromArgb(180, Color.DimGray),
                    Color.FromArgb(180, Color.DimGray)};
     
                            colorBlend.Positions = new float[] { 0f, .1f, 1f };
     
                            gBrush.InterpolationColors = colorBlend;
                            e.Graphics.FillPath(gBrush, graphPathShadow);
                        }
                    }
     
                    // Draw backgroup
                    LinearGradientBrush brush = new LinearGradientBrush(rect,
                    this._gradientStartColor,
                    this._gradientEndColor,
                    LinearGradientMode.BackwardDiagonal);
                    e.Graphics.FillPath(brush, graphPath);
                    e.Graphics.DrawPath(new Pen(Color.FromArgb(180, this._borderColor), _borderWidth), graphPath);
     
                    // Draw Image
                    if (_image != null)
                    {
                        e.Graphics.DrawImageUnscaled(_image, _imageLocation);
                    }
                }
            }
        }
        // A1PanelGraphics class
        internal class A1PanelGraphics
        {
            public static GraphicsPath GetRoundPath(Rectangle r, int depth)
            {
                GraphicsPath graphPath = new GraphicsPath();
     
                graphPath.AddArc(r.X, r.Y, depth, depth, 180, 90);
                graphPath.AddArc(r.X + r.Width - depth, r.Y, depth, depth, 270, 90);
                graphPath.AddArc(r.X + r.Width - depth, r.Y + r.Height - depth, depth, depth, 0, 90);
                graphPath.AddArc(r.X, r.Y + r.Height - depth, depth, depth, 90, 90);
                graphPath.AddLine(r.X, r.Y + r.Height - depth, r.X, r.Y + depth / 2);
     
                return graphPath;
            }
        }
     
        // A1PanelGlobals class
        internal class A1PanelGlobals
        {
            public const string A1Category = "A1";
        }
     
    }
    bon code...................

  4. #4
    Nouveau membre du Club
    Homme Profil pro
    Étudiant
    Inscrit en
    Octobre 2011
    Messages
    36
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Sénégal

    Informations professionnelles :
    Activité : Étudiant
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Octobre 2011
    Messages : 36
    Points : 34
    Points
    34
    Par défaut
    Merci beaucoup. je vais essayer pour ce qu'il va donner.

    Merci encore

Discussions similaires

  1. Bordure panel en inset
    Par Shadam dans le forum ASP.NET
    Réponses: 2
    Dernier message: 17/08/2012, 15h41
  2. couleur bordure panel
    Par lovedesitaliens dans le forum C#
    Réponses: 8
    Dernier message: 22/10/2010, 13h39
  3. [Images] Arrondir bordure image
    Par sterix92 dans le forum Bibliothèques et frameworks
    Réponses: 3
    Dernier message: 28/06/2009, 10h41
  4. Arrondir les bordures d'un tableau
    Par koKoTis dans le forum Mise en page CSS
    Réponses: 3
    Dernier message: 01/12/2007, 16h50
  5. [HTML] Arrondir les bordures d’un tableau
    Par Furius dans le forum Balisage (X)HTML et validation W3C
    Réponses: 12
    Dernier message: 11/01/2006, 08h41

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo