- create tray top, bottom, left e right
- gestiti panel con Visibility - gestiti elementi grafici in ProjectV con ItemsControl - eliminato pannello Printing3d - aggiunta gestione Plugin - verifica bit per Plugin
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
Imports System.Windows.Forms.Integration
|
||||
|
||||
Public Class WinFormPluginControlV
|
||||
|
||||
Private m_WinFormPluginControlVM As WinFormPluginControlVM
|
||||
Public ReadOnly Property WinFormPluginControlVM As WinFormPluginControlVM
|
||||
Get
|
||||
Return m_WinFormPluginControlVM
|
||||
End Get
|
||||
End Property
|
||||
|
||||
Private m_WinFormUserControlHost As WindowsFormsHost
|
||||
Public ReadOnly Property WinFormUserControlHost As WindowsFormsHost
|
||||
Get
|
||||
Return m_WinFormUserControlHost
|
||||
End Get
|
||||
End Property
|
||||
|
||||
Sub New(WinFormPluginControlVM As WinFormPluginControlVM)
|
||||
|
||||
' This call is required by the designer.
|
||||
InitializeComponent()
|
||||
|
||||
' Add any initialization after the InitializeComponent() call.
|
||||
WinFormHost.Child = WinFormPluginControlVM.WinFormUserControl
|
||||
Me.DataContext = WinFormPluginControlVM
|
||||
m_WinFormPluginControlVM = WinFormPluginControlVM
|
||||
End Sub
|
||||
|
||||
End Class
|
||||
Reference in New Issue
Block a user