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

Windows Presentation Foundation Discussion :

texte dans un bouton sans centre [Débutant]


Sujet :

Windows Presentation Foundation

Vue hybride

Message précédent Message précédent   Message suivant Message suivant
  1. #1
    Membre confirmé
    Homme Profil pro
    Développeur informatique
    Inscrit en
    Octobre 2011
    Messages
    216
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Haute Garonne (Midi Pyrénées)

    Informations professionnelles :
    Activité : Développeur informatique
    Secteur : High Tech - Multimédia et Internet

    Informations forums :
    Inscription : Octobre 2011
    Messages : 216
    Par défaut texte dans un bouton sans centre
    bonjour,

    j'ai crée un bouton en forme de cercle (juste le contour), j'ai un probleme avec l'affichage du texte du bouton, je n'arrive pas a l'afficher dans la partie visible du bouton.

    voici mon code:

    Code xaml : 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
            <Button Cursor="Hand" Click="Button_Click_4" RenderTransformOrigin="0.5,0.5" Content="bouton orange">
                <Button.Template>
                    <ControlTemplate>
                        <Grid>
                            <Grid.RowDefinitions>
                                <RowDefinition Height="10"/>
                                <RowDefinition Height="*"/>
                            </Grid.RowDefinitions>
     
                            <TextBlock Grid.Row="0" Text="bonjour"/>
                            <Path Stroke="Black" StrokeThickness="1" Fill="Orange" Grid.RowSpan="2">
                                <Path.Data>
                                    <CombinedGeometry GeometryCombineMode="Exclude">
                                        <CombinedGeometry.Geometry1>
                                            <EllipseGeometry RadiusX="70" RadiusY="70" Center="230,230"/>
                                        </CombinedGeometry.Geometry1>
                                        <CombinedGeometry.Geometry2>
                                            <EllipseGeometry RadiusX="50" RadiusY="50" Center="230,230"/>
                                        </CombinedGeometry.Geometry2>
                                    </CombinedGeometry>
                                </Path.Data>
                            </Path>
                        </Grid>
                    </ControlTemplate>
                </Button.Template>
            </Button>

    dans l'exemple j'ai tenté avec un texblock, ca ne marche pas. j'ai également fait avec contentpresenter sans résultat.

    Merci.

  2. #2
    Membre confirmé
    Homme Profil pro
    Développeur informatique
    Inscrit en
    Octobre 2011
    Messages
    216
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Haute Garonne (Midi Pyrénées)

    Informations professionnelles :
    Activité : Développeur informatique
    Secteur : High Tech - Multimédia et Internet

    Informations forums :
    Inscription : Octobre 2011
    Messages : 216
    Par défaut
    rebonjour,

    alors j'ai réussis a afficher du texte grace au textblock:

    Code xaml : 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
            <Button Cursor="Hand" Click="Button_Click_4" Content="bouton orange" HorizontalAlignment="Center" VerticalAlignment="Center" Margin="161,165,199,195">
                <Button.Template>
                    <ControlTemplate>
                        <Grid Height="140" Width="140">
                            <Grid.RowDefinitions>
                                <RowDefinition Height="20"/>
                                <RowDefinition Height="*"/>
                            </Grid.RowDefinitions>
     
     
                            <Path Stroke="Black" StrokeThickness="1" Fill="Orange" Grid.RowSpan="2">
                                <Path.Data>
                                    <CombinedGeometry GeometryCombineMode="Exclude">
                                        <CombinedGeometry.Geometry1>
                                            <EllipseGeometry RadiusX="70" RadiusY="70" Center="70,70"/>
                                        </CombinedGeometry.Geometry1>
                                        <CombinedGeometry.Geometry2>
                                            <EllipseGeometry RadiusX="50" RadiusY="50" Center="70,70"/>
                                        </CombinedGeometry.Geometry2>
                                    </CombinedGeometry>
                                </Path.Data>
                            </Path>
                            <TextBlock Grid.Row="0" Text="bonjour" HorizontalAlignment="Center" />
                        </Grid>
                    </ControlTemplate>
                </Button.Template>
            </Button>

    je sais pas si cette méthode est trés "prope".

    y a t'il un meilleur moyen ?

    peut on faire en sorte que le texte "suive" la courbe ?

    Merci.

  3. #3
    Membre confirmé
    Homme Profil pro
    Développeur informatique
    Inscrit en
    Octobre 2011
    Messages
    216
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Haute Garonne (Midi Pyrénées)

    Informations professionnelles :
    Activité : Développeur informatique
    Secteur : High Tech - Multimédia et Internet

    Informations forums :
    Inscription : Octobre 2011
    Messages : 216
    Par défaut
    salut,

    pour le texte j'ai trouvé ceci.

    je ne comprend pas tout ce qui est écrit et je n' arrive pas a tout comprendre avec le code.

    si quelqu'un a déjàs utilisé cette technique.


    Merci.

  4. #4
    Membre extrêmement actif
    Inscrit en
    Avril 2008
    Messages
    2 573
    Détails du profil
    Informations personnelles :
    Âge : 65

    Informations forums :
    Inscription : Avril 2008
    Messages : 2 573
    Par défaut
    bonjour yrtera
    Bon relativement au code de C.Petzold que tu as lu il presente 3 approches pour "warpe" un text sur un contour geometrique
    Toutes les trois sont basees sur les 2 class API .Net suivants:
    *le class FormattedText qui permet de mettre en forme chaque caractere du texte separement.
    *le class PathGeometry (trace) et ses 2 fonctions :
    -PathGeometry.GetFlattenedPath() renvoie un polygone "approximant"(flattened) la courbe ou les courbes du path
    -PathGeometry.GetPointAtFractionLength renvoie 2 pts :
    1er point ptFinDelta : coords du point final de l' "arc" situe à une distance connue Delta compte de l'origine du "PathGrometry".
    2eme point :coords du point de la tangent à cet "arc".
    La 1ere approche utilise un UserControl
    La 2eme approche utilise un custom control derive de FrameWorkElement
    La 3eme approche utilise un custom control derive de FrameWorkElement et un class auxiliaire derive de DrawingVisual et qui est celle prefere par l'auteur....
    L'inconvenient des 3 approches est que le PathGeometry doit etre "code"(c'est le class SineCurve de l'auteur).....

    Aussi je prefere pour ma part une autre approche conforme à l'esprit WPF base sur un "custom panel circulaire" ou "EllipticalPanel" qui necessite :
    1/un custom button dote :
    -de la prop ItemsSource grace aux proprietes attaches ....
    -d'une dependency prop Text ajoutee au bouton et non visible....( ne pas utiliser Content sinon le content va defigurer notre controle custom button). Cette prop recoit le texte à afficher,le transforme en Observable Collection de ...caracteres et approvisionne le ItemsSource du bouton...en catimini...
    2/un style simple pour notre custom buttom :
    - un DrawingBrush plus souple avec ses 2 ellipses à l'arriere plan.....
    - un Listbox ,dont l'ItemsPanel sera notre "EllipticalPanel" appelee "roue de Ferris" (roue du manege ou l'on reste assis à la verticale sagement) qui "arrangera" ainsi nos ListboxItems en cercle(un par caractere)...

    -l' ItemsSource du Listbox sera binde sur l'ItemsSource de ton custom button ..
    -un DataTemplate avec un simple TextBlock pour afficher chaque ListBoxItem qui recoit chacun un caractere
    NB:le "EllipticalPanel" dispose de 2 props ItemHeight et ItemWidth qui sont bindees sur le FontSize du ListBox lequel est binde sur le FontSize du custom button....Le choix du FontSize est du au fait que ses 2 parametres determinent la taille d'un ListBoxItem qui doit etre egale à la taille d'un caractere
    code behind du "EllipticalPanel" et du custom bouton (pas grand chose)...
    Code c# : 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
     
    //custom panel
    using System;
    using System.Windows;
    using System.Windows.Controls;
    using System.Windows.Media;
    namespace WpfButtonTemplateCirculaire
    {
     
    	public class EllipticalPanel : Panel
    	{
    		public static readonly DependencyProperty ItemWidthProperty = DependencyProperty.Register(
    			"ItemWidth", typeof(double), typeof(EllipticalPanel), new FrameworkPropertyMetadata(0.0,
    				FrameworkPropertyMetadataOptions.AffectsMeasure | FrameworkPropertyMetadataOptions.AffectsArrange));
     
    		public static readonly DependencyProperty ItemHeightProperty = DependencyProperty.Register(
    			"ItemHeight", typeof(double), typeof(EllipticalPanel), new FrameworkPropertyMetadata(0.0,
    				FrameworkPropertyMetadataOptions.AffectsMeasure | FrameworkPropertyMetadataOptions.AffectsArrange));
     
    		public static readonly DependencyProperty UseFerrisWheelLayoutProperty = DependencyProperty.Register(
    			"UseFerrisWheelLayout", typeof(bool), typeof(EllipticalPanel), new FrameworkPropertyMetadata(false, FrameworkPropertyMetadataOptions.AffectsArrange));
     
    		public bool UseFerrisWheelLayout
    		{
    			get { return (bool) GetValue(UseFerrisWheelLayoutProperty); }
    			set { SetValue(UseFerrisWheelLayoutProperty, value); }
    		}
     
    		public double ItemWidth
    		{
    			get { return (double)GetValue(ItemWidthProperty); }
    			set { SetValue(ItemWidthProperty, value); }
    		}
     
    		public double ItemHeight
    		{
    			get { return (double)GetValue(ItemHeightProperty); }
    			set { SetValue(ItemHeightProperty, value); }
    		}
     
    		protected override Size MeasureOverride(Size constraint)
    		{
    			if (constraint.Width == double.PositiveInfinity || constraint.Height == double.PositiveInfinity)
    				return Size.Empty;
     
    			foreach (UIElement child in InternalChildren)
    			{
    				child.Measure(new Size(ItemWidth, ItemHeight));
    			}
    			return constraint;
    		}
     
    		protected override Size ArrangeOverride(Size finalSize)
    		{
    			// Calculate radius
    			double radiusX = (finalSize.Width - ItemWidth) * 0.5;
    			double radiusY = (finalSize.Height - ItemHeight) * 0.5;
     
    			double count = InternalChildren.Count;
     
    			// Sector angle between items
    			double deltaAngle = 2 * Math.PI / count;
     
    			// Center of the ellipse
    			Point center = new Point(finalSize.Width / 2, finalSize.Height / 2);
     
     
    			for (int i = 0; i < count; i++)
    			{
    				UIElement child = InternalChildren[i];
     
    				// Calculate position
    				double angle = i * deltaAngle;
    				double x = center.X + radiusX * Math.Cos(angle) - ItemWidth / 2;
    				double y = center.Y + radiusY * Math.Sin(angle) - ItemHeight / 2;
     
    				if (UseFerrisWheelLayout)
    				{
    					child.RenderTransform = null;
    				}
    				else
    				{
    					child.RenderTransformOrigin = new Point(0.5, 0.5);
    					child.RenderTransform = new RotateTransform(angle * 180 / Math.PI);
    				}
     
    				child.Arrange(new Rect(x, y, ItemWidth, ItemHeight));
    			}
    			return finalSize;
    		}
    	}
    }
     
    //custom button
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Windows.Controls.Primitives;
    using System.Collections.ObjectModel;
    using System.Windows;
    using System.Windows.Controls;
    namespace WpfButtonTemplateCirculaire
    {
        public class CustomTextButton : Button
        {
            public CustomTextButton()
            {
     
                this.ItemsSource = new ObservableCollection<Char>();
            }
     
     
            public string Text
            {
                get { return (string)GetValue(TextProperty); }
                set { SetValue(TextProperty, value); }
            }
     
            // Using a DependencyProperty as the backing store for Text.  This enables animation, styling, binding, etc...
            public static readonly DependencyProperty TextProperty = 
                DependencyProperty.Register("Text",
                typeof(string), typeof(CustomTextButton), 
                new UIPropertyMetadata(null,OnTxtChanged));
     
            private static void OnTxtChanged(DependencyObject d, DependencyPropertyChangedEventArgs args)
           {
                CustomTextButton custBtn= d as  CustomTextButton;
                string s  = args.NewValue as  String;
                if (! string.IsNullOrEmpty(s))
                {
                    /* conversion en maj...*/   
                    s = s.ToUpper();
                    /* met à jour ItemsSource...*/   
                    custBtn.ItemsSource = new ObservableCollection<Char>(s.ToCharArray());
     
                }
     
            }
     
            // une prop attache ItemsSource "pretee" par ItemsControl grace a AddOwner
            public ObservableCollection<Char> ItemsSource
            {
                get { return (ObservableCollection<Char>)GetValue(ItemsSourceProperty); }
                set { SetValue(ItemsSourceProperty, value); }
            }
     
            public static readonly DependencyProperty ItemsSourceProperty  = 
            ItemsControl.ItemsSourceProperty.AddOwner( typeof(CustomTextButton) );
     
     
     
        }
    }

    code xaml du winform :

    Code xaml : 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
     
    <Window x:Class="WpfButtonTemplateCirculaire.WinButtonElliptical"
            xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
            xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
            xmlns:local="clr-namespace:WpfButtonTemplateCirculaire"
            Title="WinButtonElliptical" Height="300" Width="300">
        <Window.Resources>
            <!--tes 2 ellipse dans un DrawingBrush en resources 
            pour le "stretcher" ,binder ses dimensions etc....-->
            <DrawingBrush x:Key="myDrawingBrush"  >
                <DrawingBrush.Drawing>
                    <GeometryDrawing 
                        Brush="CornflowerBlue" >
                        <GeometryDrawing.Geometry>
                            <GeometryGroup>
                                <EllipseGeometry RadiusX="70" RadiusY="70" Center="70,70" />
                                <EllipseGeometry RadiusX="50" RadiusY="50" Center="70,70" />
                            </GeometryGroup>
                        </GeometryDrawing.Geometry>
                        <GeometryDrawing.Pen>
                            <Pen Thickness="2.0">
                                <Pen.Brush>
                                    <SolidColorBrush Color="Black"/>
                                </Pen.Brush>
                            </Pen>
                        </GeometryDrawing.Pen>
                    </GeometryDrawing>
                </DrawingBrush.Drawing>
            </DrawingBrush>
     
             <!--le style du custom  button-->
            <Style 
               x:Key="EllipticalButton" 
                TargetType="{x:Type local:CustomTextButton}" >
                <Setter Property="Template">
                    <Setter.Value>
                        <ControlTemplate 
                            TargetType="{x:Type local:CustomTextButton}">
                            <Grid>
                                <!--un Border lie au Background du button en arriere-plan...-->
                                <Border
                                    Width="{TemplateBinding  Width}"
                                    Height="{TemplateBinding Height}"
                                    CornerRadius="8"
                                    BorderBrush="Blue"
                                    BorderThickness="2"
                                    Background="{TemplateBinding local:CustomTextButton.Background}">
                                </Border>
                                <!--un  Rectangle lie au drawingbrush...-->
                                <!--avec TemplateBinding  ... ses dimensions sont lies à celle du button modele -->
                                <Rectangle 
                                    Width="{TemplateBinding  Width}"
                                    Height="{TemplateBinding Height}"
                                    Stroke="Black" 
                                    StrokeThickness="1"
                                    Fill="{Binding Source={StaticResource myDrawingBrush}}">
                                </Rectangle>
                                <!--listbox avec FontFamily , FontSize &  Foreground lies  au button modele -->
                                <!--Background Transparent pour voir les 2 ellipses -->
                                <ListBox
                                    BorderBrush="LightBlue"
                                    BorderThickness="2"
                                    FontFamily="{TemplateBinding  FontFamily}"
                                    FontSize="{TemplateBinding  FontSize}"
                                    Foreground="{TemplateBinding  Foreground}"
                                    Background="Transparent"
                                    ItemsSource="{TemplateBinding  ItemsSource}">
                                    <!--TemplateBinding ...ItemHeight &  ItemWidth de notre Panel sont lies
                                    au Fontsize du Listbox qui est lui-meme lie  au button modele -->
                                    <ListBox.ItemsPanel>
                                        <ItemsPanelTemplate>
                                            <local:EllipticalPanel
                                                x:Name="EP"
                                                HorizontalAlignment="Stretch"
                                                VerticalAlignment="Stretch"
                                                ItemHeight="{TemplateBinding ListBox.FontSize}"
                                                ItemWidth="{TemplateBinding ListBox.FontSize}"
                                                UseFerrisWheelLayout="True"
                                                IsItemsHost="True">
                                            </local:EllipticalPanel>
                                        </ItemsPanelTemplate>
                                    </ListBox.ItemsPanel>
                                    <ListBox.ItemTemplate>
                                        <DataTemplate
                                            DataType="{x:Type local:CustomTextButton}">
                                            <!--le Binding lie Fontsize aux  ItemHeight &  ItemWidth  du Panel -->
                                            <!-- & Foreground au button modele -->
                                            <TextBlock 
                                                Padding="5"
                                                Background="Transparent"
                                                FontSize="{Binding ElementName=EP, Path=ItemHeight}"
                                                Foreground="{TemplateBinding local:CustomTextButton.Foreground}"
                                                VerticalAlignment="Center"
                                                HorizontalAlignment="Center"
                                                TextAlignment="Center"
                                                Text="{Binding}">
                                            </TextBlock>
                                        </DataTemplate>
                                    </ListBox.ItemTemplate>
                                </ListBox>
                                <ContentPresenter 
                                    HorizontalAlignment="Center"
                                    VerticalAlignment="Center"/>
                            </Grid>
                        </ControlTemplate>
                    </Setter.Value>
                </Setter>
            </Style>
        </Window.Resources>
        <!--2 boutons de test--> 
        <Grid
            Margin="15"
            HorizontalAlignment="Stretch"
            VerticalAlignment="Stretch"  >
            <Grid.RowDefinitions>
                <RowDefinition Height="*"></RowDefinition>
                <RowDefinition Height="*"></RowDefinition>
            </Grid.RowDefinitions>
            <local:CustomTextButton 
                x:Name="TestButton1"
                HorizontalAlignment="Stretch"
                VerticalAlignment="Stretch" 
                FontSize="12"
                FontFamily="Times New Roman"
                Foreground="Orange"
                Background="Red" 
                Text="mon bouton orange" 
                Style="{Binding Source={StaticResource EllipticalButton}}" >
            </local:CustomTextButton >
     
            <local:CustomTextButton
                x:Name="TestButton2"
                Grid.Row="1"
                HorizontalAlignment="Stretch"
                VerticalAlignment="Stretch"
                FontSize="16"
                FontFamily="Garamond"
                Foreground="Gold"
                Background="Silver" 
                Text="mon bouton Gold   "  
                Style="{Binding Source={StaticResource EllipticalButton}}" >
            </local:CustomTextButton>
        </Grid>
    </Window>
    code-behind du winform (code de vs2010)
    Code c# : 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
     
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Windows;
    using System.Windows.Controls;
    using System.Windows.Data;
    using System.Windows.Documents;
    using System.Windows.Input;
    using System.Windows.Media;
    using System.Windows.Media.Imaging;
    using System.Windows.Shapes;
     
    namespace WpfButtonTemplateCirculaire
    {
        /// <summary>
        /// Logique d'interaction pour WinButtonElliptical.xaml
        /// </summary>
        public partial class WinButtonElliptical : Window
        {
            public WinButtonElliptical()
            {
                InitializeComponent();
            }
        }
    }

    bon code.....................

  5. #5
    Membre confirmé
    Homme Profil pro
    Développeur informatique
    Inscrit en
    Octobre 2011
    Messages
    216
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Haute Garonne (Midi Pyrénées)

    Informations professionnelles :
    Activité : Développeur informatique
    Secteur : High Tech - Multimédia et Internet

    Informations forums :
    Inscription : Octobre 2011
    Messages : 216
    Par défaut
    bonjour,

    merci, ca marche tip top.

    ++

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. Modification d'un texte dans un bouton
    Par atlantis dans le forum ActionScript 3
    Réponses: 3
    Dernier message: 01/04/2008, 14h05
  2. Ajouter du texte dans une ListBox sans sauter de ligne
    Par walid_kerkoub dans le forum Composants VCL
    Réponses: 2
    Dernier message: 03/03/2008, 15h42
  3. Faire tenir le texte dans un bouton
    Par francoisch dans le forum Balisage (X)HTML et validation W3C
    Réponses: 3
    Dernier message: 04/02/2008, 10h18
  4. [MFC] changement de texte dans un bouton
    Par benjiprog dans le forum MFC
    Réponses: 16
    Dernier message: 12/06/2006, 20h48
  5. Orientation texte dans un bouton
    Par miky_jo dans le forum Composants
    Réponses: 1
    Dernier message: 03/11/2005, 10h34

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