1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
| self.TraitRadioButton = WinForms.RadioButton()
self.TraitRadioButton.Parent = self
self.TraitRadioButton.Size = Size(100,30)
self.TraitRadioButton.Location = Point(100,50)
self.TraitRadioButton.Text = "Traitement"
self.TraitRadioButton.CheckedChanged += self.TraitRadioButton_CheckedChangedHandler
self.OuvRadioButton = WinForms.RadioButton()
self.OuvRadioButton.Parent = self
self.OuvRadioButton.Size = Size(100,30)
self.OuvRadioButton.Location = Point(100,50)
self.OuvRadioButton.Text = "Ouverture"
self.OuvRadioButton.CheckedChanged += self.OuvRadioButton_CheckedChangedHandler
self.GroupBox1 = WinForms.GroupBox()
self.GroupBox1.Size = Size(10,10)
self.GroupBox1.Location = Point(10,10)
self.GroupBox1.Controls.Add(self.OuvRadioButton)
self.GroupBox1.Controls.Add(self.TraitRadioButton)
self.GroupBox1.Visible=1
self.GroupBox1.Enabled=1 |
Partager