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

PyQt Python Discussion :

[Couleur] Appliquer une couleur de fond à un item


Sujet :

PyQt Python

  1. #1
    Membre éclairé
    Profil pro
    Inscrit en
    Mai 2005
    Messages
    465
    Détails du profil
    Informations personnelles :
    Âge : 42
    Localisation : France

    Informations forums :
    Inscription : Mai 2005
    Messages : 465
    Par défaut [Couleur] Appliquer une couleur de fond à un item
    Bonjour,

    je suis en train de développer une application dans laquelle on choisit une couleur.

    J'aimerais colorier le bouton qui ouvre la fenêtre de sélection de couleur avec la couleur choisie

    J'ai essayé d'effectuer cela en m'inspirant d'un tuto trouvé sur le net:
    http://web.univ-pau.fr/~puiseux/ense...leur%20|region


    Voici la portion de mon code qui devrait permettre cela:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
     def color_dialog(self):
            couleur = QtGui.QColorDialog.getColor()
            palette=QtGui.QPalette() 
            palette.setColor(QtGui.QPalette.Button, couleur)
            self.ui.bt_applycolor.setPalette(palette)
     
            self.ui.txt_color.setText(couleur.name())
    Mais je n'arrive pas à faire fonctionner mon programme...

    Comment le faire?
    Plus simplement, comment, par exemple, appliquer une couleur de fond à un label?

    Pour info, voici mon code en entier:
    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
     
    import sys
    from PyQt4 import QtCore, QtGui
     
    from UI_MyList import Ui_dialog
     
     
    class MyForm(QtGui.QMainWindow):
        def __init__(self, parent=None):
            QtGui.QWidget.__init__(self, parent)
            self.ui = Ui_dialog()
            self.ui.setupUi(self)
     
            self.ui.spinBox.setEnabled(False)
            lst_IntervalleCouleur=[["intervalle1","#8B8989"],["intervalle2","5A6351"],["intervalle3","#7A8B8B"]] 
            for index, intervalle in enumerate(lst_IntervalleCouleur):
                a = QtGui.QTreeWidgetItem(self.ui.treeWidget)
                a.setText(0, lst_IntervalleCouleur[index][0])
                a.setText(1, lst_IntervalleCouleur[index][1])
            QtCore.QObject.connect(self.ui.bt_ChooseColor,QtCore.SIGNAL("clicked()"), self.color_dialog)
            QtCore.QObject.connect(self.ui.comboBox,QtCore.SIGNAL("currentIndexChanged(int)"), self.enable_spinBox)
            QtCore.QObject.connect(self.ui.treeWidget,QtCore.SIGNAL("itemClicked(QTreeWidgetItem*,int)"), self.selectionListe)                          
     
        def color_dialog(self):
            couleur = QtGui.QColorDialog.getColor()
            palette=QtGui.QPalette() 
            palette.setColor(QtGui.QPalette.Button, couleur)
            self.ui.bt_applycolor.setPalette(palette)
     
            self.ui.txt_color.setText(couleur.name())
     
        def enable_spinBox(self):
            valeur2=self.ui.comboBox.currentIndex()
            if valeur2==0:
                self.ui.spinBox.setEnabled(False)
            else:
                self.ui.spinBox.setEnabled(True)
     
        def selectionListe(self,item):
            self.ui.txt_color.setText(item.text(1))
     
    if __name__ == "__main__":
        app = QtGui.QApplication(sys.argv)
        myapp = MyForm()
        myapp.show()
        sys.exit(app.exec_())
    Je vous remercie par avance,

  2. #2
    Membre éprouvé

    Profil pro
    Account Manager
    Inscrit en
    Décembre 2006
    Messages
    2 301
    Détails du profil
    Informations personnelles :
    Localisation : France, Savoie (Rhône Alpes)

    Informations professionnelles :
    Activité : Account Manager

    Informations forums :
    Inscription : Décembre 2006
    Messages : 2 301
    Par défaut
    Peux-tu ajouter le code Ui_dialog.py et aussi éventuellement sa version ui, ie celle utilisée par Qt Designer (c'est un fichier de type XML) ?

  3. #3
    Membre éclairé
    Profil pro
    Inscrit en
    Mai 2005
    Messages
    465
    Détails du profil
    Informations personnelles :
    Âge : 42
    Localisation : France

    Informations forums :
    Inscription : Mai 2005
    Messages : 465
    Par défaut
    merci rambc,

    c'est gentil de te pencher sur mon problème...

    Voici mes fichiers:
    Fichier UI_MyList.ui
    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
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    <ui version="4.0" >
     <class>dialog</class>
     <widget class="QDialog" name="dialog" >
      <property name="geometry" >
       <rect>
        <x>0</x>
        <y>0</y>
        <width>444</width>
        <height>457</height>
       </rect>
      </property>
      <property name="windowTitle" >
       <string>myListofValues</string>
      </property>
      <widget class="QGroupBox" name="groupBox" >
       <property name="geometry" >
        <rect>
         <x>20</x>
         <y>10</y>
         <width>221</width>
         <height>80</height>
        </rect>
       </property>
       <property name="title" >
        <string>Files</string>
       </property>
       <widget class="QLabel" name="label_6" >
        <property name="geometry" >
         <rect>
          <x>10</x>
          <y>20</y>
          <width>181</width>
          <height>17</height>
         </rect>
        </property>
        <property name="text" >
         <string>Input ShapeFile</string>
        </property>
       </widget>
       <widget class="QPushButton" name="bt_inputFile" >
        <property name="geometry" >
         <rect>
          <x>180</x>
          <y>20</y>
          <width>21</width>
          <height>16</height>
         </rect>
        </property>
        <property name="baseSize" >
         <size>
          <width>20</width>
          <height>20</height>
         </size>
        </property>
        <property name="text" >
         <string>...</string>
        </property>
       </widget>
       <widget class="QLabel" name="label_7" >
        <property name="geometry" >
         <rect>
          <x>10</x>
          <y>50</y>
          <width>191</width>
          <height>17</height>
         </rect>
        </property>
        <property name="text" >
         <string>OutPut KML File</string>
        </property>
       </widget>
       <widget class="QPushButton" name="bt_outputFile" >
        <property name="geometry" >
         <rect>
          <x>180</x>
          <y>50</y>
          <width>21</width>
          <height>16</height>
         </rect>
        </property>
        <property name="text" >
         <string>...</string>
        </property>
       </widget>
       <zorder>bt_inputFile</zorder>
       <zorder>label_6</zorder>
       <zorder>label_6</zorder>
       <zorder>bt_inputFile</zorder>
       <zorder>label_7</zorder>
       <zorder>bt_outputFile</zorder>
      </widget>
      <widget class="QGroupBox" name="groupBox_3" >
       <property name="geometry" >
        <rect>
         <x>10</x>
         <y>140</y>
         <width>421</width>
         <height>261</height>
        </rect>
       </property>
       <property name="title" >
        <string>Styles</string>
       </property>
       <widget class="QTreeWidget" name="treeWidget" >
        <property name="geometry" >
         <rect>
          <x>30</x>
          <y>30</y>
          <width>219</width>
          <height>211</height>
         </rect>
        </property>
        <property name="autoScroll" >
         <bool>false</bool>
        </property>
        <column>
         <property name="text" >
          <string>valeur</string>
         </property>
        </column>
        <column>
         <property name="text" >
          <string>color</string>
         </property>
        </column>
        <column>
         <property name="text" >
          <string>color mode</string>
         </property>
        </column>
       </widget>
       <widget class="QTextEdit" name="txt_color" >
        <property name="geometry" >
         <rect>
          <x>290</x>
          <y>50</y>
          <width>71</width>
          <height>21</height>
         </rect>
        </property>
       </widget>
       <widget class="QLabel" name="label_4" >
        <property name="geometry" >
         <rect>
          <x>290</x>
          <y>30</y>
          <width>99</width>
          <height>16</height>
         </rect>
        </property>
        <property name="text" >
         <string>Color</string>
        </property>
       </widget>
       <widget class="QComboBox" name="comboBox_3" >
        <property name="geometry" >
         <rect>
          <x>290</x>
          <y>100</y>
          <width>99</width>
          <height>20</height>
         </rect>
        </property>
        <item>
         <property name="text" >
          <string>normal</string>
         </property>
        </item>
        <item>
         <property name="text" >
          <string>random</string>
         </property>
        </item>
       </widget>
       <widget class="QLabel" name="label_5" >
        <property name="geometry" >
         <rect>
          <x>290</x>
          <y>80</y>
          <width>99</width>
          <height>16</height>
         </rect>
        </property>
        <property name="text" >
         <string>Color Mode</string>
        </property>
       </widget>
       <widget class="QPushButton" name="bt_ChooseColor" >
        <property name="geometry" >
         <rect>
          <x>370</x>
          <y>50</y>
          <width>21</width>
          <height>20</height>
         </rect>
        </property>
        <property name="text" >
         <string>...</string>
        </property>
       </widget>
       <widget class="QPushButton" name="bt_applycolor" >
        <property name="geometry" >
         <rect>
          <x>300</x>
          <y>150</y>
          <width>75</width>
          <height>23</height>
         </rect>
        </property>
        <property name="text" >
         <string>Appliquer</string>
        </property>
       </widget>
      </widget>
      <widget class="QPushButton" name="pushButton_3" >
       <property name="geometry" >
        <rect>
         <x>150</x>
         <y>420</y>
         <width>141</width>
         <height>23</height>
        </rect>
       </property>
       <property name="text" >
        <string>Generate my KML File</string>
       </property>
      </widget>
      <widget class="QGroupBox" name="groupBox_2" >
       <property name="geometry" >
        <rect>
         <x>251</x>
         <y>10</y>
         <width>181</width>
         <height>121</height>
        </rect>
       </property>
       <property name="title" >
        <string>Classification</string>
       </property>
       <widget class="QLabel" name="label" >
        <property name="geometry" >
         <rect>
          <x>10</x>
          <y>20</y>
          <width>158</width>
          <height>16</height>
         </rect>
        </property>
        <property name="text" >
         <string>Classification Field</string>
        </property>
       </widget>
       <widget class="QComboBox" name="comboBox_2" >
        <property name="geometry" >
         <rect>
          <x>10</x>
          <y>40</y>
          <width>158</width>
          <height>20</height>
         </rect>
        </property>
       </widget>
       <widget class="QLabel" name="label_2" >
        <property name="geometry" >
         <rect>
          <x>10</x>
          <y>70</y>
          <width>158</width>
          <height>16</height>
         </rect>
        </property>
        <property name="text" >
         <string>Classification Type</string>
        </property>
       </widget>
       <widget class="QSplitter" name="splitter" >
        <property name="geometry" >
         <rect>
          <x>10</x>
          <y>90</y>
          <width>158</width>
          <height>20</height>
         </rect>
        </property>
        <property name="orientation" >
         <enum>Qt::Horizontal</enum>
        </property>
        <widget class="QComboBox" name="comboBox" >
         <item>
          <property name="text" >
           <string>Unique Value</string>
          </property>
         </item>
         <item>
          <property name="text" >
           <string>Interval</string>
          </property>
         </item>
        </widget>
        <widget class="QSpinBox" name="spinBox" />
       </widget>
      </widget>
     </widget>
     <resources/>
     <connections/>
    </ui>
    Fichier UI_MyList.py:
    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
    # -*- coding: utf-8 -*-
     
    # Form implementation generated from reading ui file 'C:\Python25\Lib\site-packages\PyQt4\MR-MyUis\ui_MyList.ui'
    #
    # Created: Mon Mar 16 18:08:18 2009
    #      by: PyQt4 UI code generator 4.4.3
    #
    # WARNING! All changes made in this file will be lost!
     
    from PyQt4 import QtCore, QtGui
     
    class Ui_dialog(object):
        def setupUi(self, dialog):
            dialog.setObjectName("dialog")
            dialog.resize(444, 457)
            self.groupBox = QtGui.QGroupBox(dialog)
            self.groupBox.setGeometry(QtCore.QRect(20, 10, 221, 80))
            self.groupBox.setObjectName("groupBox")
            self.label_6 = QtGui.QLabel(self.groupBox)
            self.label_6.setGeometry(QtCore.QRect(10, 20, 181, 17))
            self.label_6.setObjectName("label_6")
            self.bt_inputFile = QtGui.QPushButton(self.groupBox)
            self.bt_inputFile.setGeometry(QtCore.QRect(180, 20, 21, 16))
            self.bt_inputFile.setBaseSize(QtCore.QSize(20, 20))
            self.bt_inputFile.setObjectName("bt_inputFile")
            self.label_7 = QtGui.QLabel(self.groupBox)
            self.label_7.setGeometry(QtCore.QRect(10, 50, 191, 17))
            self.label_7.setObjectName("label_7")
            self.bt_outputFile = QtGui.QPushButton(self.groupBox)
            self.bt_outputFile.setGeometry(QtCore.QRect(180, 50, 21, 16))
            self.bt_outputFile.setObjectName("bt_outputFile")
            self.groupBox_3 = QtGui.QGroupBox(dialog)
            self.groupBox_3.setGeometry(QtCore.QRect(10, 140, 421, 261))
            self.groupBox_3.setObjectName("groupBox_3")
            self.treeWidget = QtGui.QTreeWidget(self.groupBox_3)
            self.treeWidget.setGeometry(QtCore.QRect(30, 30, 219, 211))
            self.treeWidget.setAutoScroll(False)
            self.treeWidget.setObjectName("treeWidget")
            self.txt_color = QtGui.QTextEdit(self.groupBox_3)
            self.txt_color.setGeometry(QtCore.QRect(290, 50, 71, 21))
            self.txt_color.setObjectName("txt_color")
            self.label_4 = QtGui.QLabel(self.groupBox_3)
            self.label_4.setGeometry(QtCore.QRect(290, 30, 99, 16))
            self.label_4.setObjectName("label_4")
            self.comboBox_3 = QtGui.QComboBox(self.groupBox_3)
            self.comboBox_3.setGeometry(QtCore.QRect(290, 100, 99, 20))
            self.comboBox_3.setObjectName("comboBox_3")
            self.comboBox_3.addItem(QtCore.QString())
            self.comboBox_3.addItem(QtCore.QString())
            self.label_5 = QtGui.QLabel(self.groupBox_3)
            self.label_5.setGeometry(QtCore.QRect(290, 80, 99, 16))
            self.label_5.setObjectName("label_5")
            self.bt_ChooseColor = QtGui.QPushButton(self.groupBox_3)
            self.bt_ChooseColor.setGeometry(QtCore.QRect(370, 50, 21, 20))
            self.bt_ChooseColor.setObjectName("bt_ChooseColor")
            self.bt_applycolor = QtGui.QPushButton(self.groupBox_3)
            self.bt_applycolor.setGeometry(QtCore.QRect(300, 150, 75, 23))
            self.bt_applycolor.setObjectName("bt_applycolor")
            self.pushButton_3 = QtGui.QPushButton(dialog)
            self.pushButton_3.setGeometry(QtCore.QRect(150, 420, 141, 23))
            self.pushButton_3.setObjectName("pushButton_3")
            self.groupBox_2 = QtGui.QGroupBox(dialog)
            self.groupBox_2.setGeometry(QtCore.QRect(251, 10, 181, 121))
            self.groupBox_2.setObjectName("groupBox_2")
            self.label = QtGui.QLabel(self.groupBox_2)
            self.label.setGeometry(QtCore.QRect(10, 20, 158, 16))
            self.label.setObjectName("label")
            self.comboBox_2 = QtGui.QComboBox(self.groupBox_2)
            self.comboBox_2.setGeometry(QtCore.QRect(10, 40, 158, 20))
            self.comboBox_2.setObjectName("comboBox_2")
            self.label_2 = QtGui.QLabel(self.groupBox_2)
            self.label_2.setGeometry(QtCore.QRect(10, 70, 158, 16))
            self.label_2.setObjectName("label_2")
            self.splitter = QtGui.QSplitter(self.groupBox_2)
            self.splitter.setGeometry(QtCore.QRect(10, 90, 158, 20))
            self.splitter.setOrientation(QtCore.Qt.Horizontal)
            self.splitter.setObjectName("splitter")
            self.comboBox = QtGui.QComboBox(self.splitter)
            self.comboBox.setObjectName("comboBox")
            self.comboBox.addItem(QtCore.QString())
            self.comboBox.addItem(QtCore.QString())
            self.spinBox = QtGui.QSpinBox(self.splitter)
            self.spinBox.setObjectName("spinBox")
     
            self.retranslateUi(dialog)
            QtCore.QMetaObject.connectSlotsByName(dialog)
     
        def retranslateUi(self, dialog):
            dialog.setWindowTitle(QtGui.QApplication.translate("dialog", "myListofValues", None, QtGui.QApplication.UnicodeUTF8))
            self.groupBox.setTitle(QtGui.QApplication.translate("dialog", "Files", None, QtGui.QApplication.UnicodeUTF8))
            self.label_6.setText(QtGui.QApplication.translate("dialog", "Input ShapeFile", None, QtGui.QApplication.UnicodeUTF8))
            self.bt_inputFile.setText(QtGui.QApplication.translate("dialog", "...", None, QtGui.QApplication.UnicodeUTF8))
            self.label_7.setText(QtGui.QApplication.translate("dialog", "OutPut KML File", None, QtGui.QApplication.UnicodeUTF8))
            self.bt_outputFile.setText(QtGui.QApplication.translate("dialog", "...", None, QtGui.QApplication.UnicodeUTF8))
            self.groupBox_3.setTitle(QtGui.QApplication.translate("dialog", "Styles", None, QtGui.QApplication.UnicodeUTF8))
            self.treeWidget.headerItem().setText(0, QtGui.QApplication.translate("dialog", "valeur", None, QtGui.QApplication.UnicodeUTF8))
            self.treeWidget.headerItem().setText(1, QtGui.QApplication.translate("dialog", "color", None, QtGui.QApplication.UnicodeUTF8))
            self.treeWidget.headerItem().setText(2, QtGui.QApplication.translate("dialog", "color mode", None, QtGui.QApplication.UnicodeUTF8))
            self.label_4.setText(QtGui.QApplication.translate("dialog", "Color", None, QtGui.QApplication.UnicodeUTF8))
            self.comboBox_3.setItemText(0, QtGui.QApplication.translate("dialog", "normal", None, QtGui.QApplication.UnicodeUTF8))
            self.comboBox_3.setItemText(1, QtGui.QApplication.translate("dialog", "random", None, QtGui.QApplication.UnicodeUTF8))
            self.label_5.setText(QtGui.QApplication.translate("dialog", "Color Mode", None, QtGui.QApplication.UnicodeUTF8))
            self.bt_ChooseColor.setText(QtGui.QApplication.translate("dialog", "...", None, QtGui.QApplication.UnicodeUTF8))
            self.bt_applycolor.setText(QtGui.QApplication.translate("dialog", "Appliquer", None, QtGui.QApplication.UnicodeUTF8))
            self.pushButton_3.setText(QtGui.QApplication.translate("dialog", "Generate my KML File", None, QtGui.QApplication.UnicodeUTF8))
            self.groupBox_2.setTitle(QtGui.QApplication.translate("dialog", "Classification", None, QtGui.QApplication.UnicodeUTF8))
            self.label.setText(QtGui.QApplication.translate("dialog", "Classification Field", None, QtGui.QApplication.UnicodeUTF8))
            self.label_2.setText(QtGui.QApplication.translate("dialog", "Classification Type", None, QtGui.QApplication.UnicodeUTF8))
            self.comboBox.setItemText(0, QtGui.QApplication.translate("dialog", "Unique Value", None, QtGui.QApplication.UnicodeUTF8))
            self.comboBox.setItemText(1, QtGui.QApplication.translate("dialog", "Interval", None, QtGui.QApplication.UnicodeUTF8))
    (ça en fait, du code...)

  4. #4
    Membre chevronné
    Homme Profil pro
    Responsable du parc et des réseaux de télécommunication
    Inscrit en
    Mai 2003
    Messages
    290
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Responsable du parc et des réseaux de télécommunication
    Secteur : Industrie

    Informations forums :
    Inscription : Mai 2003
    Messages : 290
    Par défaut
    Bonjour,
    Avec le style css :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
     def color_dialog(self):
            couleur = QtGui.QColorDialog.getColor().name()
            self.ui.bt_applycolor.setStyleSheet("QPushButton {backGround:%s}" %(couleur))

  5. #5
    Membre éclairé
    Profil pro
    Inscrit en
    Mai 2005
    Messages
    465
    Détails du profil
    Informations personnelles :
    Âge : 42
    Localisation : France

    Informations forums :
    Inscription : Mai 2005
    Messages : 465
    Par défaut
    merci c'est parfait!

    en fait, tout était là:
    http://qt.developpez.com/doc/4.2/stylesheet/

  6. #6
    Membre éprouvé

    Profil pro
    Account Manager
    Inscrit en
    Décembre 2006
    Messages
    2 301
    Détails du profil
    Informations personnelles :
    Localisation : France, Savoie (Rhône Alpes)

    Informations professionnelles :
    Activité : Account Manager

    Informations forums :
    Inscription : Décembre 2006
    Messages : 2 301
    Par défaut
    Heureusement que pierjean est arrivé avant moi car la méthode que j'allais proposer est un peu trop brutale. Va falloir que je jette un oeil sur ces feuilles de style.

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

Discussions similaires

  1. Réponses: 1
    Dernier message: 28/07/2011, 13h41
  2. Réponses: 6
    Dernier message: 27/08/2010, 09h28
  3. Appliquer une couleur sur une image 2D
    Par NORHIBA dans le forum Débuter
    Réponses: 4
    Dernier message: 24/01/2009, 10h53
  4. Appliquer une couleur système à une cellule
    Par zappy bibicy dans le forum Macros et VBA Excel
    Réponses: 2
    Dernier message: 05/08/2006, 17h34
  5. appliquer une couleur au passage souris sur grpe de cellules
    Par mathieu_r dans le forum Général JavaScript
    Réponses: 1
    Dernier message: 26/01/2006, 14h20

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