deb1b8187d
- aggiornati tutti i bottoni.
25 lines
635 B
VB.net
25 lines
635 B
VB.net
Public Class rbtnWireframe
|
|
|
|
Private m_scene As Scene
|
|
|
|
Sub New()
|
|
|
|
' Chiamata richiesta dalla finestra di progettazione.
|
|
InitializeComponent()
|
|
|
|
' Aggiungere le eventuali istruzioni di inizializzazione dopo la chiamata a InitializeComponent().
|
|
Me.Appearance = Windows.Forms.Appearance.Button
|
|
Me.Text = "Wireframe"
|
|
|
|
End Sub
|
|
|
|
Public Sub SetScene(ByRef scene As Scene)
|
|
m_scene = scene
|
|
End Sub
|
|
|
|
Private Sub rbtnWireframe_Click(sender As System.Object, e As System.EventArgs) Handles Me.Click
|
|
m_scene.WireFrame()
|
|
End Sub
|
|
|
|
End Class
|