diff --git a/Application.xaml b/Application.xaml new file mode 100644 index 0000000..2e13841 --- /dev/null +++ b/Application.xaml @@ -0,0 +1,7 @@ + + + + + diff --git a/Application.xaml.vb b/Application.xaml.vb new file mode 100644 index 0000000..9bc84c8 --- /dev/null +++ b/Application.xaml.vb @@ -0,0 +1,47 @@ +Imports System.Windows.Forms + +Class Application + + ' Application-level events, such as Startup, Exit, and DispatcherUnhandledException + ' can be handled in this file. + + Protected Overrides Sub OnStartup(e As StartupEventArgs) + MyBase.OnStartup(e) + Dim mainWindow As New MainWindow + Dim thisDpiWidthFactor As Double + Dim thisDpiHeightFactor As Double + mainWindow.Show() + 'Controllo che abbia creato la finestra per evitare crash se non c'è la chiave + If (IsNothing(Application.Current.MainWindow)) Then + Exit Sub + End If + CalculateDpiFactors(mainWindow, thisDpiWidthFactor, thisDpiHeightFactor) + + + If (Screen.AllScreens.Length > 1) Then + Dim s2 As Screen = Screen.AllScreens(1) + Dim r2 As System.Drawing.Rectangle = s2.WorkingArea + + mainWindow.Top = r2.Top / thisDpiHeightFactor + mainWindow.Left = r2.Left / thisDpiWidthFactor + + + Else + Dim s1 As Screen = Screen.AllScreens(0) + Dim r1 As System.Drawing.Rectangle = s1.WorkingArea + mainWindow.Top = r1.Top + mainWindow.Left = r1.Left + + + End If + End Sub + + Private Shared Sub CalculateDpiFactors(ByRef mainwindow As Window, ByRef thisDpiWidthFactor As Double, ByRef thisDpiHeightFactor As Double) + Dim MainWindowPresentationSource As PresentationSource = PresentationSource.FromVisual(Application.Current.MainWindow) + Dim m As New Matrix + m = PresentationSource.FromVisual(Application.Current.MainWindow).CompositionTarget.TransformToDevice + thisDpiWidthFactor = m.M11 + thisDpiHeightFactor = m.M22 + End Sub + +End Class diff --git a/BarLavoraUC.xaml b/BarLavoraUC.xaml new file mode 100644 index 0000000..7d8fccc --- /dev/null +++ b/BarLavoraUC.xaml @@ -0,0 +1,14 @@ + + + + + + + + diff --git a/BarLavoraUC.xaml.vb b/BarLavoraUC.xaml.vb new file mode 100644 index 0000000..5cbdebe --- /dev/null +++ b/BarLavoraUC.xaml.vb @@ -0,0 +1,3 @@ +Public Class BarLavoraUC + +End Class diff --git a/BarNestingUC.xaml b/BarNestingUC.xaml new file mode 100644 index 0000000..37b56b5 --- /dev/null +++ b/BarNestingUC.xaml @@ -0,0 +1,14 @@ + + + + + + + + diff --git a/BarNestingUC.xaml.vb b/BarNestingUC.xaml.vb new file mode 100644 index 0000000..e6c431f --- /dev/null +++ b/BarNestingUC.xaml.vb @@ -0,0 +1,3 @@ +Public Class BarNestingUC + +End Class diff --git a/ComponentiUC.xaml b/ComponentiUC.xaml new file mode 100644 index 0000000..af38e75 --- /dev/null +++ b/ComponentiUC.xaml @@ -0,0 +1,130 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ComponentiUC.xaml.vb b/ComponentiUC.xaml.vb new file mode 100644 index 0000000..ca8bab5 --- /dev/null +++ b/ComponentiUC.xaml.vb @@ -0,0 +1,428 @@ +Imports EgtUILib +Imports System.Globalization + +Public Class ComponentiUC + + Dim MainWindowUC As MainWindow = Application.Current.MainWindow + Private WithEvents m_Controller3 As New Controller + + 'Per creazione Scene + Friend Shared WithEvents ScenaComponenti As New Scene + Dim ScenaComponentiHost As New System.Windows.Forms.Integration.WindowsFormsHost + + 'Per Scena Componenti + ' Constants + Private Const NUM_VAR As Integer = 10 + Private Const LUA_CMP_VARS As String = "CMP" + Private Const LUA_CMP_DRAW As String = "CMP_Draw" + + ' Properties + Private m_sCompoDir As String = String.Empty + Private m_sCompoName As String = String.Empty + Private m_CVars(NUM_VAR - 1) As CompoVar + Private m_bDrawOk As Boolean = False + Private m_bFirst As Boolean = True + + Private Sub ComponentiUC_Initialized(sender As Object, e As EventArgs) + + ScenaComponentiHost.Child = ScenaComponenti + ScenaComponentiHost.SetValue(Grid.ColumnProperty, 1) + ScenaComponentiHost.SetValue(Grid.RowProperty, 0) + ScenaComponentiHost.SetValue(Grid.RowSpanProperty, 2) + Me.BackGroundGridComponenti.Children.Add(ScenaComponentiHost) + + End Sub + + Private Sub ComponentiUC_Loaded(sender As Object, e As RoutedEventArgs) + + If (Not m_bFirst) Then + EgtSetCurrentContext(ScenaComponenti.GetCtx()) + Return + End If + + ' imposto colore di default + Dim DefColor As New Color3d(0, 0, 0) + GetPrivateProfileColor(S_GEOMDB, K_DEFAULTCOLOR, DefColor, MainWindow.GetIniFile()) + ScenaComponenti.SetDefaultMaterial(DefColor) + ' imposto colori sfondo + Dim BackTopColor As New Color3d(192, 192, 192) + GetPrivateProfileColor(S_SCENE, K_BACKTOP, BackTopColor, MainWindow.GetIniFile()) + Dim BackBotColor As New Color3d(BackTopColor) + GetPrivateProfileColor(S_SCENE, K_BACKBOTTOM, BackBotColor, MainWindow.GetIniFile()) + ScenaComponenti.SetViewBackground(BackTopColor, BackBotColor) + ' imposto colore di evidenziazione + Dim MarkColor As New Color3d(255, 255, 0) + GetPrivateProfileColor(S_SCENE, K_MARK, MarkColor, MainWindow.GetIniFile()) + ScenaComponenti.SetMarkMaterial(MarkColor) + ' imposto colore per superfici selezionate + Dim SelSurfColor As New Color3d(255, 255, 192) + GetPrivateProfileColor(S_SCENE, K_SELSURF, SelSurfColor, MainWindow.GetIniFile()) + ScenaComponenti.SetSelSurfMaterial(SelSurfColor) + ' imposto tipo e colore del rettangolo di zoom + Dim bOutline As Boolean = True + Dim ZwColor As New Color3d(0, 0, 0) + GetPrivateProfileZoomWin(S_SCENE, K_ZOOMWIN, bOutline, ZwColor, MainWindow.GetIniFile()) + ScenaComponenti.SetZoomWinAttribs(bOutline, ZwColor) + ' imposto colore della linea di distanza + Dim DstLnColor As New Color3d(255, 0, 0) + GetPrivateProfileColor(S_SCENE, K_DISTLINE, DstLnColor, MainWindow.GetIniFile()) + ScenaComponenti.SetDistLineMaterial(DstLnColor) + ' imposto parametri OpenGL + Dim nDriver As Integer = GetPrivateProfileInt(S_OPENGL, K_DRIVER, 3, MainWindow.GetIniFile()) + Dim b2Buff As Boolean = (GetPrivateProfileInt(S_OPENGL, K_DOUBLEBUFFER, 1, MainWindow.GetIniFile()) <> 0) + Dim nColorBits As Integer = GetPrivateProfileInt(S_OPENGL, K_COLORBITS, 32, MainWindow.GetIniFile()) + Dim nDepthBits As Integer = GetPrivateProfileInt(S_OPENGL, K_DEPTHBITS, 32, MainWindow.GetIniFile()) + ScenaComponenti.SetViewAttributes(nDriver, b2Buff, nColorBits, nDepthBits) + 'Inizializzazione delle viste + ScenaComponenti.Init() + m_Controller3.SetScene(ScenaComponenti) + ' leggo direttorio componenti + GetPrivateProfileString(S_COMPO, K_COMPODIR, "", m_sCompoDir, MainWindow.GetIniFile()) + m_bFirst = False + End Sub + + Private Sub TriangleBtnUC_Click(sender As Object, e As RoutedEventArgs) + ' Carico componente + LoadCurrentCompo("Triangolo3L") + End Sub + + Private Sub RectangleTrapeziumBtnUC_Click(sender As Object, e As RoutedEventArgs) + + End Sub + + Private Sub LoadCurrentCompo(ByVal sCompo As String) + ' verifico se cambiato + 'If sCompo = m_sCompoName Then + ' Return + 'End If + m_sCompoName = sCompo + 'Pulisco l'ambiente lua + ResetLuaVariables() + ' Carico il file ed eseguo in modalità anteprima + Dim bOk As Boolean = ExecCompoFile() + Dim sMsg As String = String.Empty + bOk = bOk AndAlso MakePreview(sMsg) + If Not bOk Then + EgtNewFile() + End If + tbMsg.Text = sMsg + tbMsg.Background = If(m_bDrawOk, Brushes.White, Brushes.Tomato) + ScenaComponenti.ZoomAll() + ' leggo variabili e aggiorno griglia + ReadAndShowVariables() + ' abilito bottoni Vista e Inserisci + btnView.IsEnabled = True + btnInsert.IsEnabled = True + ' un pezzo da inserire + tbNbr.Text = "1" + End Sub + + Private Sub ViewBtnUC_Click(sender As Object, e As RoutedEventArgs) + ViewRefresh() + End Sub + + Private Sub ViewRefresh() + ' aggiorno le variabili dalla griglia + UpdateVariables() + ' ricalcolo il disegno + Dim sMsg As String = String.Empty + MakePreview(sMsg) + tbMsg.Text = sMsg + tbMsg.Background = If(m_bDrawOk, Brushes.White, Brushes.Tomato) + ' aggiorno visualizzazione + EgtSetView(VT.TOP, False) + EgtZoom(ZM.ALL) + End Sub + + Private Sub InsertBtnUC_Click(sender As Object, e As RoutedEventArgs) + ' aggiorno visualizzazione + ViewRefresh() + ' se errore esco + If Not m_bDrawOk Then + Return + End If + ' Leggo numero di pezzi da inserire + Dim InsNbr As Integer = tbNbr.Text + 'Pulisco la scena dl componente + EgtNewFile() + ' Passo al contesto principale + EgtSetCurrentContext(MainWindowUC.ActiveScene.GetCtx()) + ' Inserisco il componente nel DB geometrico principale + MakeInsert(InsNbr) + ' Aggiorno ambiente principale + EgtZoom(ZM.ALL) + 'Reset nome componente corrente + m_sCompoName = String.Empty + ResetLuaVariables() + ' Chiudo il dialogo + MainWindowUC.TagliCadContent.Content = MainWindowUC.m_TagliCadUC + End Sub + + Private Function ExecCompoFile() As Boolean + ' Costruisco path completa del componente + Dim sPath = m_sCompoDir & "\" & m_sCompoName & ".lua" + ' Carico il file + Return EgtLuaExecFile(sPath) + End Function + + Private Function ReadAndShowVariables() As Boolean + ' recupero nome, tipo e valore delle variabili globali + For i As Integer = 1 To NUM_VAR + Dim CVar = New CompoVar + If CVar.NameTypeValueFromLua(i) Then + m_CVars(i - 1) = CVar + Else + m_CVars(i - 1) = Nothing + End If + Next + ' aggiorno la griglia dalle variabili + For i As Integer = 1 To NUM_VAR + If m_CVars(i - 1) IsNot Nothing Then + GetNameEdit(i).Text = m_CVars(i - 1).m_sName + GetNameEdit(i).Visibility = Windows.Visibility.Visible + GetValueEdit(i).Text = m_CVars(i - 1).ToString() + GetValueEdit(i).Visibility = Windows.Visibility.Visible + Else + GetNameEdit(i).Visibility = Windows.Visibility.Hidden + GetValueEdit(i).Visibility = Windows.Visibility.Hidden + End If + Next + Return True + End Function + + Private Function UpdateVariables() As Boolean + ' aggiorno le variabili + For i As Integer = 1 To NUM_VAR + If m_CVars(i - 1) IsNot Nothing Then + ' interpreto il valore, se non riesco ripristino default + If Not m_CVars(i - 1).FromString(GetValueEdit(i).Text) Then + GetValueEdit(i).Text = m_CVars(i - 1).ToString() + End If + ' aggiorno la corrispondente variabile lua + If Not m_CVars(i - 1).ToLua(i) Then + Dim sErr As String = String.Empty + EgtLuaGetLastError(sErr) + EgtOutLog(sErr) + End If + End If + Next + Return True + End Function + + Private Function ResetLuaVariables() As Boolean + EgtLuaResetGlobVar(LUA_CMP_VARS) + EgtLuaResetGlobVar(LUA_CMP_DRAW) + Return False + End Function + + Private Function MakePreview(ByRef sMsg As String) As Boolean + If Not EgtLuaExecLine(LUA_CMP_DRAW & "(true)") Then + sMsg = "Error in component execution" + m_bDrawOk = False + Else + EgtLuaGetGlobStringVar(LUA_CMP_VARS & ".MSG", sMsg) + Dim nErr As Integer = 0 + EgtLuaGetGlobIntVar(LUA_CMP_VARS & ".ERR", nErr) + m_bDrawOk = (nErr = 0) + End If + Return m_bDrawOk + End Function + + Private Function MakeInsert(ByVal nNbr As Integer) As Boolean + ' abilito registrazione + EgtEnableCommandLogger() + ' ricarico componente corrente + ExecCompoFile() + ' aggiorno variabili + UpdateVariables() + ' elimino eventuali precedenti pezzi vuoti + EgtEraseEmptyParts() + ' eseguo inserimento + For i As Integer = 1 To nNbr + ' Inserisco il componente + If Not EgtLuaExecLine(LUA_CMP_DRAW & "(false)") Then + Dim sErr As String = String.Empty + EgtLuaGetLastError(sErr) + EgtOutLog(sErr) + Exit For + End If + ' Ne recupero l'Id + Dim nId2 As Integer = EgtGetLastPart() + ' Lo posiziono in ordine + EgtPackPart(nId2, PACK_MAX_X, PACK_OFFS) + Next + ' disabilito registrazione + EgtDisableCommandLogger() + Return True + End Function + + Private Function GetNameEdit(ByVal nInd As Integer) As TextBox + Select Case nInd + Case 1 + Return tbName1 + Case 2 + Return tbName2 + Case 3 + Return tbName3 + Case 4 + Return tbName4 + Case 5 + Return tbName5 + Case 6 + Return tbName6 + Case 7 + Return tbName7 + Case 8 + Return tbName8 + Case 9 + Return tbName9 + Case Else + Return tbName10 + End Select + End Function + + Private Function GetValueEdit(ByVal nInd As Integer) As TextBox + Select Case nInd + Case 1 + Return tbValue1 + Case 2 + Return tbValue2 + Case 3 + Return tbValue3 + Case 4 + Return tbValue4 + Case 5 + Return tbValue5 + Case 6 + Return tbValue6 + Case 7 + Return tbValue7 + Case 8 + Return tbValue8 + Case 9 + Return tbValue9 + Case Else + Return tbValue10 + End Select + End Function + + Private Class CompoVar + + ' Public Members + Public m_sName As String + Public m_nType As Integer + Public m_bVal As Boolean + Public m_nVal As Integer + Public m_dVal As Double + Public m_sVal As String + + ' Constants + Const LUA_NAME As String = LUA_CMP_VARS & ".N" + Const LUA_TYPE As String = LUA_CMP_VARS & ".T" + Const LUA_VALUE As String = LUA_CMP_VARS & ".V" + + Public Sub New() + m_nType = 0 + End Sub + + Public Overrides Function ToString() As String + Select Case m_nType + Case 1 ' booleano + Return m_bVal.ToString() + Case 2 ' intero + Return m_nVal.ToString() + Case 3 ' lunghezza + Return EgtToUiUnits(m_dVal).ToString("F4", CultureInfo.InvariantCulture) + Case 4 ' double + Return m_dVal.ToString("F4", CultureInfo.InvariantCulture) + Case 5 ' stringa + Return m_sVal + End Select + Return "" + End Function + + Public Function FromString(ByVal sVal As String) As Boolean + Select Case m_nType + Case 1 ' booleano + Dim bVal As Boolean = False + If Boolean.TryParse(sVal, bVal) Then + m_bVal = bVal + Return True + End If + Case 2 ' intero + Dim dVal As Double + If EgtLuaEvalNumExpr(sVal, dVal) Then + m_nVal = CInt(dVal) + Return True + End If + Case 3 ' lunghezza + Dim dVal As Double + If EgtLuaEvalNumExpr(sVal, dVal) Then + m_dVal = EgtFromUiUnits(dVal) + Return True + End If + Case 4 ' double + Dim dVal As Double + If EgtLuaEvalNumExpr(sVal, dVal) Then + m_dVal = dVal + Return True + End If + Case 5 'stringa + m_sVal = sVal + Return True + End Select + Return False + End Function + + Public Function ToLua(ByVal nInd As Integer) As Boolean + Select Case m_nType + Case 1 + Return EgtLuaSetGlobBoolVar(LUA_VALUE & nInd.ToString(), m_bVal) + Case 2 + Return EgtLuaSetGlobIntVar(LUA_VALUE & nInd.ToString(), m_nVal) + Case 3, 4 + Return EgtLuaSetGlobNumVar(LUA_VALUE & nInd.ToString(), m_dVal) + Case 5 + Return EgtLuaSetGlobStringVar(LUA_VALUE & nInd.ToString(), m_sVal) + End Select + Return False + End Function + + Public Function NameTypeValueFromLua(ByVal nInd As Integer) As Boolean + Dim bOk As Boolean = True + bOk = bOk AndAlso EgtLuaGetGlobStringVar(LUA_NAME & nInd.ToString(), m_sName) + bOk = bOk AndAlso EgtLuaGetGlobIntVar(LUA_TYPE & nInd.ToString(), m_nType) + Select Case m_nType + Case 1 + Return bOk AndAlso EgtLuaGetGlobBoolVar(LUA_VALUE & nInd.ToString(), m_bVal) + Case 2 + Return bOk AndAlso EgtLuaGetGlobIntVar(LUA_VALUE & nInd.ToString(), m_nVal) + Case 3, 4 + Return bOk AndAlso EgtLuaGetGlobNumVar(LUA_VALUE & nInd.ToString(), m_dVal) + Case 5 + Return bOk AndAlso EgtLuaGetGlobStringVar(LUA_VALUE & nInd.ToString(), m_sVal) + End Select + Return False + End Function + + End Class + + Private Sub CloseBtnUC_Click(sender As Object, e As RoutedEventArgs) + 'Pulisco la scena dl componente + EgtNewFile() + ' Passo al contesto principale + EgtSetCurrentContext(MainWindowUC.ActiveScene.GetCtx()) + ' Aggiorno ambiente principale + EgtZoom(ZM.ALL) + 'Reset nome componente corrente + m_sCompoName = String.Empty + ResetLuaVariables() + ' Chiudo il dialogo + MainWindowUC.TagliCadContent.Content = MainWindowUC.m_TagliCadUC + End Sub + + Private Sub ComponentiUC_Unloaded(sender As Object, e As RoutedEventArgs) + 'ScenaComponenti.Terminate() + End Sub + +End Class diff --git a/ConstGen.vb b/ConstGen.vb new file mode 100644 index 0000000..1914012 --- /dev/null +++ b/ConstGen.vb @@ -0,0 +1,45 @@ +'---------------------------------------------------------------------------- +' EgalTech 2015-2015 +'---------------------------------------------------------------------------- +' File : ConstGen.vb Data : 12.02.15 Versione : 1.6b3 +' Contenuto : Modulo costanti generali. +' +' +' +' Modifiche : 12.02.15 DS Creazione modulo. +' +' +'---------------------------------------------------------------------------- + +Module ConstGen + +' File con direttorio radice dei dati +Public Const DAT_FILE_NAME As String = "DataRoot.Ini" +Public Const S_DATA As String = "Data" + Public Const K_DATAROOT As String = "DataRoot" + + ' File con dati di licenza + Public Const LIC_FILE_NAME As String = "OmagCUT.lic" + Public Const S_LICENCE As String = "Licence" + Public Const K_KEY As String = "Key" + + ' File di log generale + Public Const GENLOG_FILE_NAME As String = "OmagCUTLog.txt" + + ' File di log dei comandi + Public Const CMDLOG_FILE_NAME As String = "OmagCUTLog.tua" + +' Sottodirettorio di configurazione +Public Const CONF_DIR As String = "Config" + +' Sottodirettorio temporaneo +Public Const TEMP_DIR As String = "Temp" + +' Sottodirettorio di default per le macchine +Public Const MACHINES_DFL_DIR As String = "Machines" + +' Costanti per Pack dei pezzi in Special +Public Const PACK_MAX_X As Double = 2500 +Public Const PACK_OFFS As Double = 20 + +End Module diff --git a/ConstIni.vb b/ConstIni.vb new file mode 100644 index 0000000..66d5aba --- /dev/null +++ b/ConstIni.vb @@ -0,0 +1,91 @@ +'---------------------------------------------------------------------------- +' EgalTech 2015-2015 +'---------------------------------------------------------------------------- +' File : ConstIni.vb Data : 12.02.15 Versione : 1.6b3 +' Contenuto : Modulo costanti sezione e chiavi per file Ini. +' +' +' +' Modifiche : 12.02.15 DS Creazione modulo. +' +' +'---------------------------------------------------------------------------- + +Module ConstIni + + Public Const INI_FILE_NAME As String = "OmagCUT.ini" + + Public Const S_GENERAL As String = "General" + Public Const K_DEBUG As String = "Debug" + Public Const K_LICENCE As String = "Licence" + Public Const K_USERLEVEL As String = "UserLevel" + Public Const K_MAXINST As String = "MaxInstances" + Public Const K_INSTANCES As String = "Instances" + Public Const K_COMMANDLOG As String = "CommandLog" + Public Const K_MESSAGES As String = "Messages" + Public Const K_WINPLACE As String = "WinPlace" + Public Const K_LASTNGEDIR As String = "LastNgeDir" + Public Const K_LASTNGEOBJDIR As String = "LastNgeObjDir" + Public Const K_LASTLUADIR As String = "LastLuaDir" + Public Const K_LASTIMPDIR As String = "LastImpDir" + Public Const K_LASTEXPDIR As String = "LastExpDir" + + Public Const S_LUA As String = "Lua" + Public Const K_LIBSDIR As String = "LibsDir" + Public Const K_BASELIB As String = "BaseLib" + + Public Const S_GEOMDB As String = "GeomDB" + Public Const K_DEFAULTFONT As String = "DefaultFont" + Public Const K_NFEFONTDIR As String = "NfeFontDir" + Public Const K_DEFAULTCOLOR As String = "DefaultColor" + Public Const K_SAVETYPE As String = "SaveType" + + Public Const S_OPENGL As String = "OpenGL" + Public Const K_DOUBLEBUFFER As String = "DoubleBuffer" + Public Const K_COLORBITS As String = "ColorBits" + Public Const K_DEPTHBITS As String = "DepthBits" + Public Const K_DRIVER As String = "Driver" + + Public Const S_SCENE As String = "Scene" + Public Const K_BACKTOP As String = "BackTop" + Public Const K_BACKBOTTOM As String = "BackBottom" + Public Const K_SHOWGFRAME As String = "ShowGFrame" + Public Const K_MARK As String = "Mark" + Public Const K_SELSURF As String = "SelSurf" + Public Const K_SHOWMODE As String = "ShowMode" + Public Const K_CURVEDIR As String = "CurveDir" + Public Const K_SHOWTRIAADV As String = "ShowTriaAdv" + Public Const K_ZOOMWIN As String = "ZoomWin" + Public Const K_DISTLINE As String = "DistLine" + Public Const K_MMUNITS As String = "MmUnits" + + Public Const S_GRID As String = "Grid" + Public Const K_SHOWGRID As String = "ShowGrid" + Public Const K_SHOWFRAME As String = "ShowFrame" + Public Const K_SNAPSTEP As String = "SnapStep" + Public Const K_SNAPSTEPINCH As String = "SnapStepInch" + Public Const K_MINLINESSTEP As String = "MinLineSStep" + Public Const K_MAJLINESSTEP As String = "MajLineSStep" + Public Const K_EXTSSTEP As String = "ExtSStep" + Public Const K_MINLNCOLOR As String = "MinLnColor" + Public Const K_MAJLNCOLOR As String = "MajLnColor" + + Public Const S_TABSPECIAL As String = "TabSpecial" + Public Const K_TSSHOW As String = "Show" + + Public Const S_COMPO As String = "Compo" + Public Const K_CMPWINPLACE As String = "WinPlace" + Public Const K_COMPODIR As String = "CompoDir" + + Public Const S_FLATPARTS As String = "FlatParts" + Public Const K_FLPWINPLACE As String = "WinPlace" + Public Const K_FLPCURRDIR As String = "CurrDir" + + Public Const S_MACH As String = "Mach" + Public Const K_MACHINESDIR As String = "MachinesDir" + + Public Const S_MRUFILES As String = "MruFiles" + Public Const S_MRUSCRIPTS As String = "MruScripts" + Public Const K_FILE As String = "File" + +End Module diff --git a/ConstMsg.vb b/ConstMsg.vb new file mode 100644 index 0000000..11fa8bf --- /dev/null +++ b/ConstMsg.vb @@ -0,0 +1,5 @@ +Module ConstMsg + + Public Const MSG_TAGLICAD As Integer = 9000 + +End Module diff --git a/CorniciUC.xaml b/CorniciUC.xaml new file mode 100644 index 0000000..30f4e01 --- /dev/null +++ b/CorniciUC.xaml @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/CorniciUC.xaml.vb b/CorniciUC.xaml.vb new file mode 100644 index 0000000..dd6ce6d --- /dev/null +++ b/CorniciUC.xaml.vb @@ -0,0 +1,3 @@ +Public Class CorniciUC + +End Class diff --git a/FlatPartsImportUC.xaml b/FlatPartsImportUC.xaml new file mode 100644 index 0000000..ca227db --- /dev/null +++ b/FlatPartsImportUC.xaml @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/FlatPartsImportUC.xaml.vb b/FlatPartsImportUC.xaml.vb new file mode 100644 index 0000000..0b30807 --- /dev/null +++ b/FlatPartsImportUC.xaml.vb @@ -0,0 +1,113 @@ +Imports EgtUILib + +Public Class FlatPartsImportUC + + ''Per creazione Scene + 'Friend Shared WithEvents ScenaFlatPartsImport As New Scene + 'Dim ScenaFlatPartsImportHost As New System.Windows.Forms.Integration.WindowsFormsHost + + ''Per ScenaFlatPartsImport + '' Properties + 'Private m_sCurrDir As String = String.Empty + 'Private m_sCurrFile As String = String.Empty + 'Private m_nFileType As Integer = FT.NULL + 'Private m_bFirst As Boolean = True + + Private Sub FlatPartsImportUC_Initialized(sender As Object, e As EventArgs) + + ' ScenaFlatPartsImportHost.Child = ScenaFlatPartsImport + ' ScenaFlatPartsImportHost.SetValue(Grid.ColumnProperty, 1) + ' ScenaFlatPartsImportHost.SetValue(Grid.RowProperty, 0) + ' ScenaFlatPartsImportHost.SetValue(Grid.RowSpanProperty, 2) + ' Me.BackGroundGridFlatPartsImport.Children.Add(ScenaFlatPartsImportHost) + + End Sub + + Private Sub FlatPartsImportUC_Loaded(sender As Object, e As RoutedEventArgs) + + ' If (Not m_bFirst) Then + ' EgtSetCurrentContext(ScenaFlatPartsImport.GetCtx()) + ' Return + ' End If + + ' ' imposto colore di default + ' Dim DefColor As New Color3d(0, 0, 0) + ' GetPrivateProfileColor(S_GEOMDB, K_DEFAULTCOLOR, DefColor, MainWindow.GetIniFile()) + ' ScenaFlatPartsImport.SetDefaultMaterial(DefColor) + ' ' imposto colori sfondo + ' Dim BackTopColor As New Color3d(192, 192, 192) + ' GetPrivateProfileColor(S_SCENE, K_BACKTOP, BackTopColor, MainWindow.GetIniFile()) + ' Dim BackBotColor As New Color3d(BackTopColor) + ' GetPrivateProfileColor(S_SCENE, K_BACKBOTTOM, BackBotColor, MainWindow.GetIniFile()) + ' ScenaFlatPartsImport.SetViewBackground(BackTopColor, BackBotColor) + ' ' imposto colore di evidenziazione + ' Dim MarkColor As New Color3d(255, 255, 0) + ' GetPrivateProfileColor(S_SCENE, K_MARK, MarkColor, MainWindow.GetIniFile()) + ' ScenaFlatPartsImport.SetMarkMaterial(MarkColor) + ' ' imposto colore per superfici selezionate + ' Dim SelSurfColor As New Color3d(255, 255, 192) + ' GetPrivateProfileColor(S_SCENE, K_SELSURF, SelSurfColor, MainWindow.GetIniFile()) + ' ScenaFlatPartsImport.SetSelSurfMaterial(SelSurfColor) + ' ' imposto tipo e colore del rettangolo di zoom + ' Dim bOutline As Boolean = True + ' Dim ZwColor As New Color3d(0, 0, 0) + ' GetPrivateProfileZoomWin(S_SCENE, K_ZOOMWIN, bOutline, ZwColor, MainWindow.GetIniFile()) + ' ScenaFlatPartsImport.SetZoomWinAttribs(bOutline, ZwColor) + ' ' imposto colore della linea di distanza + ' Dim DstLnColor As New Color3d(255, 0, 0) + ' GetPrivateProfileColor(S_SCENE, K_DISTLINE, DstLnColor, MainWindow.GetIniFile()) + ' ScenaFlatPartsImport.SetDistLineMaterial(DstLnColor) + ' ' imposto parametri OpenGL + ' Dim nDriver As Integer = GetPrivateProfileInt(S_OPENGL, K_DRIVER, 3, MainWindow.GetIniFile()) + ' Dim b2Buff As Boolean = (GetPrivateProfileInt(S_OPENGL, K_DOUBLEBUFFER, 1, MainWindow.GetIniFile()) <> 0) + ' Dim nColorBits As Integer = GetPrivateProfileInt(S_OPENGL, K_COLORBITS, 32, MainWindow.GetIniFile()) + ' Dim nDepthBits As Integer = GetPrivateProfileInt(S_OPENGL, K_DEPTHBITS, 32, MainWindow.GetIniFile()) + ' ScenaFlatPartsImport.SetViewAttributes(nDriver, b2Buff, nColorBits, nDepthBits) + ' ' inizializzo la scena (DB geometrico + visualizzazione) + ' ScenaFlatPartsImport.Init() + ' ' leggo direttorio corrente + ' GetPrivateProfileString(S_FLATPARTS, K_FLPCURRDIR, "", m_sCurrDir, MainWindow.GetIniFile()) + ' ' lo carico + ' LoadCurrDir() + ' ' imposto misura + ' If EgtUiUnitsAreMM() Then + ' rbMm.Select() + ' Else + ' rbInch.Select() + ' End If + + End Sub + + Private Sub ScenaFlatPartsImportUC_SelectionChanged(sender As Object, e As SelectionChangedEventArgs) + ' ' Recupero item selezionato + ' Dim vItems As ListView.SelectedListViewItemCollection = ListView1.SelectedItems + ' If vItems.Count() = 0 Then + ' Return + ' End If + ' ' A seconda del tipo + ' Select Case vItems(0).ImageIndex + ' Case 0 ' Vai nel direttorio padre + ' m_sCurrDir = IO.Path.GetDirectoryName(m_sCurrDir) + ' m_sCurrFile = "" + ' LoadCurrDir() + ' ListView1.Items(0).Selected = True + ' ListView1.Items(0).Focused = True + ' Case 1 ' Vai nella radice del disco + ' m_sCurrDir = vItems(0).Text + ' m_sCurrFile = "" + ' LoadCurrDir() + ' ListView1.Items(0).Selected = True + ' ListView1.Items(0).Focused = True + ' Case 2 ' Vai nel sottodirettorio + ' m_sCurrDir = IO.Path.Combine(m_sCurrDir, vItems(0).Text) + ' m_sCurrFile = "" + ' LoadCurrDir() + ' ListView1.Items(0).Selected = True + ' ListView1.Items(0).Focused = True + ' Case 3 ' File + ' m_sCurrFile = vItems(0).Text + ' LoadCurrFile() + ' End Select + End Sub + +End Class diff --git a/GrezzoUC.xaml b/GrezzoUC.xaml new file mode 100644 index 0000000..9a79111 --- /dev/null +++ b/GrezzoUC.xaml @@ -0,0 +1,143 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/MainWindow.xaml.vb b/MainWindow.xaml.vb new file mode 100644 index 0000000..fd293bd --- /dev/null +++ b/MainWindow.xaml.vb @@ -0,0 +1,292 @@ +Imports System.Runtime.InteropServices +Imports System.Threading + +Imports System.Windows.Controls +Imports System.Globalization +Imports EgtUILib +Imports EgtUILib.EgtInterface +Imports EgtUILib.Scene +Imports System.Text + +Class MainWindow + + Private m_sDataRoot As String = String.Empty + Private m_sConfigDir As String = String.Empty + Private m_sTempDir As String = String.Empty + Private m_sMachinesRoot As String = String.Empty + Private Shared m_sIniFile As String = String.Empty + Private m_nDebug As Integer = 0 + Private WithEvents m_Controller1 As New Controller + Private WithEvents m_Controller2 As New Controller + + 'Per creazione Scene + Friend WithEvents MachiningScene As Scene + Friend WithEvents ActiveScene As Scene + Friend TavolaInLavorazioneHost As New System.Windows.Forms.Integration.WindowsFormsHost + Friend TavolaInProgettoHost As New System.Windows.Forms.Integration.WindowsFormsHost + + 'Per TagliCadUC + Friend m_TagliCadUC As TagliCadUC + Private m_ComponentiUC As ComponentiUC + Friend m_GrezzoUC As GrezzoUC + Friend WithEvents m_NumericKeyboardWD As NumericKeyboardWD + + 'Riferimento alla textbox che ha aperto la tastiera + 'Friend m_TxBxGotKeyboardFocus As TextBox + + '*********************************************** + + Public Shared Function GetIniFile() As String + Return m_sIniFile + End Function + + Private Sub Window_Initialized(sender As Object, e As EventArgs) + + ' Impostazione path radice per i dati + m_sDataRoot = System.AppDomain.CurrentDomain.BaseDirectory + If GetPrivateProfileString(S_DATA, K_DATAROOT, "", m_sDataRoot, m_sDataRoot & "\" & DAT_FILE_NAME) = 0 Then + m_sDataRoot = System.AppDomain.CurrentDomain.BaseDirectory + End If + ' Impostazione direttorio di configurazione + m_sConfigDir = m_sDataRoot & "\" & CONF_DIR + ' Impostazione direttorio per file temporanei + m_sTempDir = m_sDataRoot & "\" & TEMP_DIR + ' Impostazione path Ini file + m_sIniFile = m_sConfigDir & "\" & INI_FILE_NAME + ' Impostazione direttorio per le macchine + If GetPrivateProfileString(S_MACH, K_MACHINESDIR, "", m_sMachinesRoot, m_sIniFile) = 0 Then + m_sMachinesRoot = m_sDataRoot & "\" & MACHINES_DFL_DIR + End If + ' Leggo e imposto chiave di protezione + Dim sLicFileName As String = String.Empty + GetPrivateProfileString(S_GENERAL, K_LICENCE, LIC_FILE_NAME, sLicFileName, m_sIniFile) + Dim sLicFile As String = m_sConfigDir & "\" & sLicFileName + Dim sKey As String = String.Empty + GetPrivateProfileString(S_LICENCE, K_KEY, "", sKey, sLicFile) + EgtSetKey(sKey) + 'Inizializzazione generale di EgtInterface + m_nDebug = GetPrivateProfileInt(S_GENERAL, K_DEBUG, 0, m_sIniFile) + Dim sLogFile As String = m_sTempDir & "\" & GENLOG_FILE_NAME + Dim sLogMsg As String = My.Application.Info.Description.ToString() & " ver. " & My.Application.Info.Version.ToString() + EgtInit(m_nDebug, sLogFile, sLogMsg) + ' Leggo file messaggi + Dim sMsgFile As String = String.Empty + GetPrivateProfileString(S_GENERAL, K_MESSAGES, "", sMsgFile, m_sIniFile) + Dim sMsgFilePath As String = m_sConfigDir & "\" & sMsgFile + If Not EgtLoadMessages(sMsgFilePath) Then + EgtOutLog("Error in EgtLoadMessages") + End If + + 'Creazione UserControl dinamici + m_TagliCadUC = New TagliCadUC + m_ComponentiUC = New ComponentiUC + m_GrezzoUC = New GrezzoUC + m_NumericKeyboardWD = New NumericKeyboardWD + + 'Posiziono gli Host nelle rispettive griglie + TavolaInLavorazioneHost.SetValue(Grid.ColumnProperty, 0) + TavolaInLavorazioneHost.SetValue(Grid.RowProperty, 1) + TavolaInProgettoHost.SetValue(Grid.ColumnProperty, 0) + TavolaInProgettoHost.SetValue(Grid.RowProperty, 1) + + 'Assegno l'host TavolaInLavorazioneHost a LavoroInCorsoUC + LavoroInCorsoUC.BackGroundGridLavoroInCorso.Children.Add(TavolaInLavorazioneHost) + + End Sub + + Private Sub Window_Loaded(ByVal sender As Object, ByVal e As RoutedEventArgs) + + 'Assegno la NumericKeyboardWD come child della MainWindow + m_NumericKeyboardWD.Owner = Me + + 'Creo la scena + Me.MachiningScene = New Scene + Me.ActiveScene = New Scene + + 'Assegno il controllo Scena come Child dell'host + TavolaInLavorazioneHost.Child = MachiningScene + TavolaInProgettoHost.Child = ActiveScene + + '' Impostazione path radice per i dati + 'm_sDataRoot = System.AppDomain.CurrentDomain.BaseDirectory + 'If GetPrivateProfileString(S_DATA, K_DATAROOT, "", m_sDataRoot, m_sDataRoot & "\" & DAT_FILE_NAME) = 0 Then + ' m_sDataRoot = System.AppDomain.CurrentDomain.BaseDirectory + 'End If + '' Impostazione direttorio di configurazione + 'm_sConfigDir = m_sDataRoot & "\" & CONF_DIR + '' Impostazione direttorio per file temporanei + 'm_sTempDir = m_sDataRoot & "\" & TEMP_DIR + '' Impostazione path Ini file + 'm_sIniFile = m_sConfigDir & "\" & INI_FILE_NAME + '' Impostazione direttorio per le macchine + 'If GetPrivateProfileString(S_MACH, K_MACHINESDIR, "", m_sMachinesRoot, m_sIniFile) = 0 Then + ' m_sMachinesRoot = m_sDataRoot & "\" & MACHINES_DFL_DIR + 'End If + '' Leggo e imposto chiave di protezione + 'Dim sLicFileName As String = String.Empty + 'GetPrivateProfileString(S_GENERAL, K_LICENCE, LIC_FILE_NAME, sLicFileName, m_sIniFile) + 'Dim sLicFile As String = m_sConfigDir & "\" & sLicFileName + 'Dim sKey As String = String.Empty + 'GetPrivateProfileString(S_LICENCE, K_KEY, "", sKey, sLicFile) + 'EgtSetKey(sKey) + ''Inizializzazione generale di EgtInterface + 'm_nDebug = GetPrivateProfileInt(S_GENERAL, K_DEBUG, 0, m_sIniFile) + 'Dim sLogFile As String = m_sTempDir & "\" & GENLOG_FILE_NAME + 'Dim sLogMsg As String = My.Application.Info.Description.ToString() & " ver. " & My.Application.Info.Version.ToString() + 'EgtInit(m_nDebug, sLogFile, sLogMsg) + '' Leggo file messaggi + 'Dim sMsgFile As String = String.Empty + 'GetPrivateProfileString(S_GENERAL, K_MESSAGES, "", sMsgFile, m_sIniFile) + 'Dim sMsgFilePath As String = m_sConfigDir & "\" & sMsgFile + 'If Not EgtLoadMessages(sMsgFilePath) Then + ' EgtOutLog("Error in EgtLoadMessages") + 'End If + ' imposto dir font Nfe e font default + Dim sNfeDir As String = String.Empty + GetPrivateProfileString(S_GEOMDB, K_NFEFONTDIR, "", sNfeDir, m_sIniFile) + Dim sDefFont As String = String.Empty + GetPrivateProfileString(S_GEOMDB, K_DEFAULTFONT, "", sDefFont, m_sIniFile) + EgtSetFont(sNfeDir, sDefFont) + ' imposto direttorio di default per libreria Lua + Dim sLuaLibsDir As String = String.Empty + GetPrivateProfileString(S_LUA, K_LIBSDIR, "", sLuaLibsDir, m_sIniFile) + EgtSetLuaLibs(sLuaLibsDir) + ' imposto colore di default + Dim DefColor As New Color3d(0, 0, 0) + GetPrivateProfileColor(S_GEOMDB, K_DEFAULTCOLOR, DefColor, m_sIniFile) + MachiningScene.SetDefaultMaterial(DefColor) + ActiveScene.SetDefaultMaterial(DefColor) + ' imposto colori sfondo + Dim BackTopColor As New Color3d(192, 192, 192) + GetPrivateProfileColor(S_SCENE, K_BACKTOP, BackTopColor, m_sIniFile) + Dim BackBotColor As New Color3d(BackTopColor) + GetPrivateProfileColor(S_SCENE, K_BACKBOTTOM, BackBotColor, m_sIniFile) + MachiningScene.SetViewBackground(BackTopColor, BackBotColor) + ActiveScene.SetViewBackground(BackTopColor, BackBotColor) + ' imposto colore di evidenziazione + Dim MarkColor As New Color3d(255, 255, 0) + GetPrivateProfileColor(S_SCENE, K_MARK, MarkColor, m_sIniFile) + MachiningScene.SetMarkMaterial(MarkColor) + ActiveScene.SetMarkMaterial(MarkColor) + ' imposto colore per superfici selezionate + Dim SelSurfColor As New Color3d(255, 255, 192) + GetPrivateProfileColor(S_SCENE, K_SELSURF, SelSurfColor, m_sIniFile) + MachiningScene.SetSelSurfMaterial(SelSurfColor) + ActiveScene.SetSelSurfMaterial(SelSurfColor) + ' imposto tipo e colore del rettangolo di zoom + Dim bOutline As Boolean = True + Dim ZwColor As New Color3d(0, 0, 0) + GetPrivateProfileZoomWin(S_SCENE, K_ZOOMWIN, bOutline, ZwColor, m_sIniFile) + MachiningScene.SetZoomWinAttribs(bOutline, ZwColor) + ActiveScene.SetZoomWinAttribs(bOutline, ZwColor) + ' imposto colore della linea di distanza + Dim DstLnColor As New Color3d(255, 0, 0) + GetPrivateProfileColor(S_SCENE, K_DISTLINE, DstLnColor, m_sIniFile) + MachiningScene.SetDistLineMaterial(DstLnColor) + ActiveScene.SetDistLineMaterial(DstLnColor) + ' imposto parametri OpenGL + Dim nDriver As Integer = GetPrivateProfileInt(S_OPENGL, K_DRIVER, 3, m_sIniFile) + Dim b2Buff As Boolean = (GetPrivateProfileInt(S_OPENGL, K_DOUBLEBUFFER, 1, m_sIniFile) <> 0) + Dim nColorBits As Integer = GetPrivateProfileInt(S_OPENGL, K_COLORBITS, 32, m_sIniFile) + Dim nDepthBits As Integer = GetPrivateProfileInt(S_OPENGL, K_DEPTHBITS, 32, m_sIniFile) + MachiningScene.SetViewAttributes(nDriver, b2Buff, nColorBits, nDepthBits) + ActiveScene.SetViewAttributes(nDriver, b2Buff, nColorBits, nDepthBits) + 'Inizializzazione delle viste + If Not MachiningScene.Init() Then + Close() + End If + ActiveScene.Init() + 'Impostazioni modificabili vista 2 (vanno fatte dopo Init) + 'EgtSetMarkAttribs(New Color3d(128, 255, 255)) + 'EgtSetGeoLineAttribs(New Color3d(0, 255, 0)) + 'EgtSetWinRectAttribs(False, New Color3d(255, 128, 128, 30)) + ' Impostazione dei controller + m_Controller1.SetScene(MachiningScene) + m_Controller2.SetScene(ActiveScene) + 'Attiva scena 1 + 'OnMouseDownScene(scene1) + 'Posizione e dimensioni del Form + 'If ModifierKeys <> Keys.Shift Then + ' Dim nFlag As Integer + ' Dim nLeft As Integer + ' Dim nTop As Integer + ' Dim nWidth As Integer + ' Dim nHeight As Integer + ' GetPrivateProfileWinPos("General", "WinPlace", nFlag, nLeft, nTop, nWidth, nHeight, m_sIniFile) + ' Me.StartPosition = System.Windows.Forms.FormStartPosition.Manual + ' Me.Location = New Point(nLeft, nTop) + ' Me.Size = New Size(nWidth, nHeight) + ' WindowState = IIf(nFlag = 1, FormWindowState.Maximized, FormWindowState.Normal) + 'End If + + 'Eventi da UserControl + 'TagliCadUC + AddHandler m_TagliCadUC.ComponentsBtnMW_Click, AddressOf ComponentsBtnMW_Click + AddHandler m_TagliCadUC.ZoomAllBtnMW_Click, AddressOf ZoomAllBtnMW_Click + + End Sub + + Private Sub TabControl_SelectionChanged(sender As Object, e As SelectionChangedEventArgs) + If (e.RemovedItems.Count > 0) Then + If (e.RemovedItems.Item(0).Equals(TabTagliDiretti)) Then + TagliDirettiUC.BackGroundGridTagliDiretti.Children.Remove(TavolaInProgettoHost) + End If + If (TabTagliCad.IsSelected = False) Then + m_TagliCadUC.BackGroundGridLavorazioniPiane.Children.Remove(TavolaInProgettoHost) + End If + If (TabLavorazioneCornici.IsSelected = False) Then + CorniciUC.BackGroundGridLavorazioneCornici.Children.Remove(TavolaInProgettoHost) + End If + + End If + + If (TabTagliDiretti.IsSelected) Then + TagliDirettiUC.BackGroundGridTagliDiretti.Children.Add(TavolaInProgettoHost) + Exit Sub + End If + If (TabTagliCad.IsSelected) Then + TagliCadContent.Content = m_TagliCadUC + m_TagliCadUC.BackGroundGridLavorazioniPiane.Children.Add(TavolaInProgettoHost) + Exit Sub + End If + If (TabLavorazioneCornici.IsSelected) Then + CorniciUC.BackGroundGridLavorazioneCornici.Children.Add(TavolaInProgettoHost) + Exit Sub + End If + + End Sub + + Private Sub ExitBtnMW_Click(sender As Object, e As RoutedEventArgs) + Close() + End Sub + + '-- ** Eventi del TABITEM LAVORAZIONI PIANE ** -- + + Private Sub ComponentsBtnMW_Click(sender As Object, e As RoutedEventArgs) + TagliCadContent.Content = m_ComponentiUC + End Sub + + Private Sub ZoomAllBtnMW_Click(sender As Object, e As RoutedEventArgs) + MachiningScene.ZoomAll() + End Sub + + 'Impedisce di clickare fuori dal UC Componenti finchè questo è aperto + Private Sub MainWindow_PreviewMouseDown(sender As Object, e As MouseButtonEventArgs) + If (m_ComponentiUC.IsVisible And Not m_ComponentiUC.IsMouseOver) Then + e.Handled = True + End If + If (m_GrezzoUC.IsVisible And Not m_GrezzoUC.IsMouseOver) Then + e.Handled = True + End If + If (m_NumericKeyboardWD.IsVisible And Not m_NumericKeyboardWD.IsMouseOver) Then + e.Handled = True + End If + End Sub + + Private Sub MainWindow_KeyDown(sender As Object, e As KeyEventArgs) + If (m_NumericKeyboardWD.IsVisible And e.Key = Key.Enter) Then + m_NumericKeyboardWD.Visibility = Windows.Visibility.Hidden + End If + End Sub + +End Class \ No newline at end of file diff --git a/My Project/AssemblyInfo.vb b/My Project/AssemblyInfo.vb new file mode 100644 index 0000000..ca4f1f4 --- /dev/null +++ b/My Project/AssemblyInfo.vb @@ -0,0 +1,59 @@ +Imports System +Imports System.Reflection +Imports System.Runtime.InteropServices +Imports System.Globalization +Imports System.Resources +Imports System.Windows + +' General Information about an assembly is controlled through the following +' set of attributes. Change these attribute values to modify the information +' associated with an assembly. + +' Review the values of the assembly attributes + + + + + + + + + +'In order to begin building localizable applications, set +'CultureYouAreCodingWith in your .vbproj file +'inside a . For example, if you are using US english +'in your source files, set the to "en-US". Then uncomment the +'NeutralResourceLanguage attribute below. Update the "en-US" in the line +'below to match the UICulture setting in the project file. + +' + + +'The ThemeInfo attribute describes where any theme specific and generic resource dictionaries can be found. +'1st parameter: where theme specific resource dictionaries are located +'(used if a resource is not found in the page, +' or application resource dictionaries) + +'2nd parameter: where the generic resource dictionary is located +'(used if a resource is not found in the page, +'app, and any theme specific resource dictionaries) + + + + +'The following GUID is for the ID of the typelib if this project is exposed to COM + + +' Version information for an assembly consists of the following four values: +' +' Major Version +' Minor Version +' Build Number +' Revision +' +' You can specify all the values or you can default the Build and Revision Numbers +' by using the '*' as shown below: +' + + + diff --git a/My Project/MyExtensions/MyWpfExtension.vb b/My Project/MyExtensions/MyWpfExtension.vb new file mode 100644 index 0000000..2f5639e --- /dev/null +++ b/My Project/MyExtensions/MyWpfExtension.vb @@ -0,0 +1,121 @@ +#If _MyType <> "Empty" Then + +Namespace My + ''' + ''' Module used to define the properties that are available in the My Namespace for WPF + ''' + ''' + _ + Module MyWpfExtension + Private s_Computer As New ThreadSafeObjectProvider(Of Global.Microsoft.VisualBasic.Devices.Computer) + Private s_User As New ThreadSafeObjectProvider(Of Global.Microsoft.VisualBasic.ApplicationServices.User) + Private s_Windows As New ThreadSafeObjectProvider(Of MyWindows) + Private s_Log As New ThreadSafeObjectProvider(Of Global.Microsoft.VisualBasic.Logging.Log) + ''' + ''' Returns the application object for the running application + ''' + _ + Friend ReadOnly Property Application() As Application + Get + Return CType(Global.System.Windows.Application.Current, Application) + End Get + End Property + ''' + ''' Returns information about the host computer. + ''' + _ + Friend ReadOnly Property Computer() As Global.Microsoft.VisualBasic.Devices.Computer + Get + Return s_Computer.GetInstance() + End Get + End Property + ''' + ''' Returns information for the current user. If you wish to run the application with the current + ''' Windows user credentials, call My.User.InitializeWithWindowsUser(). + ''' + _ + Friend ReadOnly Property User() As Global.Microsoft.VisualBasic.ApplicationServices.User + Get + Return s_User.GetInstance() + End Get + End Property + ''' + ''' Returns the application log. The listeners can be configured by the application's configuration file. + ''' + _ + Friend ReadOnly Property Log() As Global.Microsoft.VisualBasic.Logging.Log + Get + Return s_Log.GetInstance() + End Get + End Property + + ''' + ''' Returns the collection of Windows defined in the project. + ''' + _ + Friend ReadOnly Property Windows() As MyWindows + _ + Get + Return s_Windows.GetInstance() + End Get + End Property + _ + _ + Friend NotInheritable Class MyWindows + _ + Private Shared Function Create__Instance__(Of T As {New, Global.System.Windows.Window})(ByVal Instance As T) As T + If Instance Is Nothing Then + If s_WindowBeingCreated IsNot Nothing Then + If s_WindowBeingCreated.ContainsKey(GetType(T)) = True Then + Throw New Global.System.InvalidOperationException("The window cannot be accessed via My.Windows from the Window constructor.") + End If + Else + s_WindowBeingCreated = New Global.System.Collections.Hashtable() + End If + s_WindowBeingCreated.Add(GetType(T), Nothing) + Return New T() + s_WindowBeingCreated.Remove(GetType(T)) + Else + Return Instance + End If + End Function + _ + _ + Private Sub Dispose__Instance__(Of T As Global.System.Windows.Window)(ByRef instance As T) + instance = Nothing + End Sub + _ + _ + Public Sub New() + MyBase.New() + End Sub + Private Shared s_WindowBeingCreated As Global.System.Collections.Hashtable + Public Overrides Function Equals(ByVal o As Object) As Boolean + Return MyBase.Equals(o) + End Function + Public Overrides Function GetHashCode() As Integer + Return MyBase.GetHashCode + End Function + _ + _ + Friend Overloads Function [GetType]() As Global.System.Type + Return GetType(MyWindows) + End Function + Public Overrides Function ToString() As String + Return MyBase.ToString + End Function + End Class + End Module +End Namespace +Partial Class Application + Inherits Global.System.Windows.Application + _ + _ + Friend ReadOnly Property Info() As Global.Microsoft.VisualBasic.ApplicationServices.AssemblyInfo + _ + Get + Return New Global.Microsoft.VisualBasic.ApplicationServices.AssemblyInfo(Global.System.Reflection.Assembly.GetExecutingAssembly()) + End Get + End Property +End Class +#End If \ No newline at end of file diff --git a/My Project/Resources.Designer.vb b/My Project/Resources.Designer.vb new file mode 100644 index 0000000..1717160 --- /dev/null +++ b/My Project/Resources.Designer.vb @@ -0,0 +1,63 @@ +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.34209 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict On +Option Explicit On + +Imports System + +Namespace My.Resources + + 'This class was auto-generated by the StronglyTypedResourceBuilder + 'class via a tool like ResGen or Visual Studio. + 'To add or remove a member, edit your .ResX file then rerun ResGen + 'with the /str option, or rebuild your VS project. + ''' + ''' A strongly-typed resource class, for looking up localized strings, etc. + ''' + _ + Friend Module Resources + + Private resourceMan As Global.System.Resources.ResourceManager + + Private resourceCulture As Global.System.Globalization.CultureInfo + + ''' + ''' Returns the cached ResourceManager instance used by this class. + ''' + _ + Friend ReadOnly Property ResourceManager() As Global.System.Resources.ResourceManager + Get + If Object.ReferenceEquals(resourceMan, Nothing) Then + Dim temp As Global.System.Resources.ResourceManager = New Global.System.Resources.ResourceManager("OmagCUT.Resources", GetType(Resources).Assembly) + resourceMan = temp + End If + Return resourceMan + End Get + End Property + + ''' + ''' Overrides the current thread's CurrentUICulture property for all + ''' resource lookups using this strongly typed resource class. + ''' + _ + Friend Property Culture() As Global.System.Globalization.CultureInfo + Get + Return resourceCulture + End Get + Set + resourceCulture = value + End Set + End Property + End Module +End Namespace diff --git a/My Project/Resources.resx b/My Project/Resources.resx new file mode 100644 index 0000000..ffecec8 --- /dev/null +++ b/My Project/Resources.resx @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/My Project/Settings.Designer.vb b/My Project/Settings.Designer.vb new file mode 100644 index 0000000..160711a --- /dev/null +++ b/My Project/Settings.Designer.vb @@ -0,0 +1,71 @@ +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.34209 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict On +Option Explicit On + + + + _ +Partial Friend NotInheritable Class MySettings + Inherits Global.System.Configuration.ApplicationSettingsBase + + Private Shared defaultInstance As MySettings = CType(Global.System.Configuration.ApplicationSettingsBase.Synchronized(New MySettings()),MySettings) + +#Region "My.Settings Auto-Save Functionality" +#If _MyType = "WindowsForms" Then + Private Shared addedHandler As Boolean + + Private Shared addedHandlerLockObject As New Object + + _ + Private Shared Sub AutoSaveSettings(ByVal sender As Global.System.Object, ByVal e As Global.System.EventArgs) + If My.Application.SaveMySettingsOnExit Then + My.Settings.Save() + End If + End Sub +#End If +#End Region + + Public Shared ReadOnly Property [Default]() As MySettings + Get + +#If _MyType = "WindowsForms" Then + If Not addedHandler Then + SyncLock addedHandlerLockObject + If Not addedHandler Then + AddHandler My.Application.Shutdown, AddressOf AutoSaveSettings + addedHandler = True + End If + End SyncLock + End If +#End If + Return defaultInstance + End Get + End Property +End Class + +Namespace My + + _ + Friend Module MySettingsProperty + + _ + Friend ReadOnly Property Settings() As Global.OmagCUT.MySettings + Get + Return Global.OmagCUT.MySettings.Default + End Get + End Property + End Module +End Namespace diff --git a/My Project/Settings.settings b/My Project/Settings.settings new file mode 100644 index 0000000..2b428d2 --- /dev/null +++ b/My Project/Settings.settings @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/NumericKeyboardWD.xaml b/NumericKeyboardWD.xaml new file mode 100644 index 0000000..8a4c46a --- /dev/null +++ b/NumericKeyboardWD.xaml @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/TagliCadUC.xaml.vb b/TagliCadUC.xaml.vb new file mode 100644 index 0000000..11da1e7 --- /dev/null +++ b/TagliCadUC.xaml.vb @@ -0,0 +1,41 @@ +Public Class TagliCadUC + + Dim MainWindowUC As MainWindow = Application.Current.MainWindow + Dim m_BarLavoraUC As BarLavoraUC + Dim m_BarNestingUC As BarNestingUC + + Public Event ComponentsBtnMW_Click As RoutedEventHandler + Public Event ZoomAllBtnMW_Click As RoutedEventHandler + + Private Sub TagliCadUC_Initialized(sender As Object, e As EventArgs) + m_BarLavoraUC = New BarLavoraUC + m_BarNestingUC = New BarNestingUC + End Sub + + Private Sub TagliCadUC_Loaded(sender As Object, e As RoutedEventArgs) + RightBtnBarContent.Content = m_BarNestingUC + End Sub + + Private Sub ComponentsBtnUC_Click(sender As Object, e As RoutedEventArgs) + RaiseEvent ComponentsBtnMW_Click(sender, e) + End Sub + + Private Sub ZoomAllBtnUC_Click(sender As Object, e As RoutedEventArgs) + RaiseEvent ZoomAllBtnMW_Click(sender, e) + End Sub + + Private Sub LavoraBtnUC_Click(sender As Object, e As RoutedEventArgs) + If (RightBtnBarContent.Content = m_BarNestingUC) Then + RightBtnBarContent.Content = m_BarLavoraUC + Else + RightBtnBarContent.Content = m_BarLavoraUC + End If + End Sub + + Private Sub GrezzoBtnUC_Click(sender As Object, e As RoutedEventArgs) + MainWindowUC.m_GrezzoUC.SetValue(Grid.RowProperty, 1) + MainWindowUC.m_GrezzoUC.SetValue(Grid.RowSpanProperty, 2) + MainWindowUC.MainGrid.Children.Add(MainWindowUC.m_GrezzoUC) + End Sub + +End Class diff --git a/TagliDirettiUC.xaml b/TagliDirettiUC.xaml new file mode 100644 index 0000000..60900a6 --- /dev/null +++ b/TagliDirettiUC.xaml @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/TagliDirettiUC.xaml.vb b/TagliDirettiUC.xaml.vb new file mode 100644 index 0000000..a207999 --- /dev/null +++ b/TagliDirettiUC.xaml.vb @@ -0,0 +1,3 @@ +Public Class TagliDirettiUC + +End Class diff --git a/app.config b/app.config new file mode 100644 index 0000000..843d111 --- /dev/null +++ b/app.config @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bin/x86/Debug/EgtUILib.dll b/bin/x86/Debug/EgtUILib.dll new file mode 100644 index 0000000..a6c851f Binary files /dev/null and b/bin/x86/Debug/EgtUILib.dll differ diff --git a/bin/x86/Debug/OmagCUT.exe b/bin/x86/Debug/OmagCUT.exe new file mode 100644 index 0000000..839ae9e Binary files /dev/null and b/bin/x86/Debug/OmagCUT.exe differ diff --git a/bin/x86/Debug/OmagCUT.exe.config b/bin/x86/Debug/OmagCUT.exe.config new file mode 100644 index 0000000..843d111 --- /dev/null +++ b/bin/x86/Debug/OmagCUT.exe.config @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bin/x86/Debug/OmagCUT.pdb b/bin/x86/Debug/OmagCUT.pdb new file mode 100644 index 0000000..a9e25c2 Binary files /dev/null and b/bin/x86/Debug/OmagCUT.pdb differ diff --git a/bin/x86/Debug/OmagCUT.xml b/bin/x86/Debug/OmagCUT.xml new file mode 100644 index 0000000..50897d4 --- /dev/null +++ b/bin/x86/Debug/OmagCUT.xml @@ -0,0 +1,178 @@ + + + + +OmagCUT + + + + + +InitializeComponent + + + +NumericKeyboardWD + + + +InitializeComponent + + + +TagliCadUC + + + +InitializeComponent + + + +ComponentiUC + + + +InitializeComponent + + + +MainWindow + + + +CreateInstance + + + +GetPropertyValue + + + +SetPropertyValue + + + +CreateDelegate + + + +AddEventHandler + + + +GeneratedInternalTypeHelper + + + +InitializeComponent + + + +FlatPartsImportUC + + + +InitializeComponent + + + +OmagCUTDictionary + + + +InitializeComponent + + + +GrezzoUC + + + +InitializeComponent + + + +BarNestingUC + + + +InitializeComponent + + + +CorniciUC + + + +InitializeComponent + + + +TagliDirettiUC + + + +InitializeComponent + + + +BarLavoraUC + + + +InitializeComponent + + + +LavoroInCorsoUC + + + +Application Entry Point. + + + +Application + + + + Returns the application object for the running application + + + + Returns information about the host computer. + + + + Returns information for the current user. If you wish to run the application with the current + Windows user credentials, call My.User.InitializeWithWindowsUser(). + + + + Returns the application log. The listeners can be configured by the application's configuration file. + + + + Returns the collection of Windows defined in the project. + + + + Module used to define the properties that are available in the My Namespace for WPF + + + + + Returns the cached ResourceManager instance used by this class. + + + + Overrides the current thread's CurrentUICulture property for all + resource lookups using this strongly typed resource class. + + + + A strongly-typed resource class, for looking up localized strings, etc. + + + + \ No newline at end of file diff --git a/bin/x86/Release/EgtUILib.dll b/bin/x86/Release/EgtUILib.dll new file mode 100644 index 0000000..a6c851f Binary files /dev/null and b/bin/x86/Release/EgtUILib.dll differ diff --git a/bin/x86/Release/OmagCUT.exe b/bin/x86/Release/OmagCUT.exe new file mode 100644 index 0000000..3fdb575 Binary files /dev/null and b/bin/x86/Release/OmagCUT.exe differ diff --git a/bin/x86/Release/OmagCUT.exe.config b/bin/x86/Release/OmagCUT.exe.config new file mode 100644 index 0000000..843d111 --- /dev/null +++ b/bin/x86/Release/OmagCUT.exe.config @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bin/x86/Release/OmagCUT.xml b/bin/x86/Release/OmagCUT.xml new file mode 100644 index 0000000..d0836d2 --- /dev/null +++ b/bin/x86/Release/OmagCUT.xml @@ -0,0 +1,178 @@ + + + + +OmagCUT + + + + + +InitializeComponent + + + +OmagCUTDictionary + + + +InitializeComponent + + + +TagliCadUC + + + +InitializeComponent + + + +MainWindow + + + +InitializeComponent + + + +TagliDirettiUC + + + +InitializeComponent + + + +CorniciUC + + + +InitializeComponent + + + +LavoroInCorsoUC + + + +InitializeComponent + + + +ComponentiUC + + + +InitializeComponent + + + +GrezzoUC + + + +CreateInstance + + + +GetPropertyValue + + + +SetPropertyValue + + + +CreateDelegate + + + +AddEventHandler + + + +GeneratedInternalTypeHelper + + + +InitializeComponent + + + +NumericKeyboardWD + + + +InitializeComponent + + + +BarLavoraUC + + + +InitializeComponent + + + +BarNestingUC + + + +Application Entry Point. + + + +Application + + + +InitializeComponent + + + +FlatPartsImportUC + + + + Returns the application object for the running application + + + + Returns information about the host computer. + + + + Returns information for the current user. If you wish to run the application with the current + Windows user credentials, call My.User.InitializeWithWindowsUser(). + + + + Returns the application log. The listeners can be configured by the application's configuration file. + + + + Returns the collection of Windows defined in the project. + + + + Module used to define the properties that are available in the My Namespace for WPF + + + + + Returns the cached ResourceManager instance used by this class. + + + + Overrides the current thread's CurrentUICulture property for all + resource lookups using this strongly typed resource class. + + + + A strongly-typed resource class, for looking up localized strings, etc. + + + + \ No newline at end of file diff --git a/obj/x86/Debug/Application.g.i.vb b/obj/x86/Debug/Application.g.i.vb new file mode 100644 index 0000000..f64896b --- /dev/null +++ b/obj/x86/Debug/Application.g.i.vb @@ -0,0 +1,55 @@ +#ExternalChecksum("..\..\..\Application.xaml","{406ea660-64cf-4c82-b6f0-42d48172a799}","DBA653743C9CD3D62AEE54B1F64816CF") +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.34209 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict Off +Option Explicit On + +Imports System +Imports System.Diagnostics +Imports System.Windows +Imports System.Windows.Automation +Imports System.Windows.Controls +Imports System.Windows.Controls.Primitives +Imports System.Windows.Data +Imports System.Windows.Documents +Imports System.Windows.Forms.Integration +Imports System.Windows.Ink +Imports System.Windows.Input +Imports System.Windows.Markup +Imports System.Windows.Media +Imports System.Windows.Media.Animation +Imports System.Windows.Media.Effects +Imports System.Windows.Media.Imaging +Imports System.Windows.Media.Media3D +Imports System.Windows.Media.TextFormatting +Imports System.Windows.Navigation +Imports System.Windows.Shapes +Imports System.Windows.Shell + + +''' +'''Application +''' +Partial Public Class Application + Inherits System.Windows.Application + + ''' + '''Application Entry Point. + ''' + _ + Public Shared Sub Main() + Dim app As Application = New Application() + app.Run + End Sub +End Class + diff --git a/obj/x86/Debug/Application.g.vb b/obj/x86/Debug/Application.g.vb new file mode 100644 index 0000000..f64896b --- /dev/null +++ b/obj/x86/Debug/Application.g.vb @@ -0,0 +1,55 @@ +#ExternalChecksum("..\..\..\Application.xaml","{406ea660-64cf-4c82-b6f0-42d48172a799}","DBA653743C9CD3D62AEE54B1F64816CF") +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.34209 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict Off +Option Explicit On + +Imports System +Imports System.Diagnostics +Imports System.Windows +Imports System.Windows.Automation +Imports System.Windows.Controls +Imports System.Windows.Controls.Primitives +Imports System.Windows.Data +Imports System.Windows.Documents +Imports System.Windows.Forms.Integration +Imports System.Windows.Ink +Imports System.Windows.Input +Imports System.Windows.Markup +Imports System.Windows.Media +Imports System.Windows.Media.Animation +Imports System.Windows.Media.Effects +Imports System.Windows.Media.Imaging +Imports System.Windows.Media.Media3D +Imports System.Windows.Media.TextFormatting +Imports System.Windows.Navigation +Imports System.Windows.Shapes +Imports System.Windows.Shell + + +''' +'''Application +''' +Partial Public Class Application + Inherits System.Windows.Application + + ''' + '''Application Entry Point. + ''' + _ + Public Shared Sub Main() + Dim app As Application = New Application() + app.Run + End Sub +End Class + diff --git a/obj/x86/Debug/BarLavoraUC.baml b/obj/x86/Debug/BarLavoraUC.baml new file mode 100644 index 0000000..916bf71 Binary files /dev/null and b/obj/x86/Debug/BarLavoraUC.baml differ diff --git a/obj/x86/Debug/BarLavoraUC.g.i.vb b/obj/x86/Debug/BarLavoraUC.g.i.vb new file mode 100644 index 0000000..bfc6203 --- /dev/null +++ b/obj/x86/Debug/BarLavoraUC.g.i.vb @@ -0,0 +1,76 @@ +#ExternalChecksum("..\..\..\BarLavoraUC.xaml","{406ea660-64cf-4c82-b6f0-42d48172a799}","D8A4CAA590C339CA79EE4CC672A19558") +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.34209 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict Off +Option Explicit On + +Imports System +Imports System.Diagnostics +Imports System.Windows +Imports System.Windows.Automation +Imports System.Windows.Controls +Imports System.Windows.Controls.Primitives +Imports System.Windows.Data +Imports System.Windows.Documents +Imports System.Windows.Forms.Integration +Imports System.Windows.Ink +Imports System.Windows.Input +Imports System.Windows.Markup +Imports System.Windows.Media +Imports System.Windows.Media.Animation +Imports System.Windows.Media.Effects +Imports System.Windows.Media.Imaging +Imports System.Windows.Media.Media3D +Imports System.Windows.Media.TextFormatting +Imports System.Windows.Navigation +Imports System.Windows.Shapes +Imports System.Windows.Shell + + +''' +'''BarLavoraUC +''' + _ +Partial Public Class BarLavoraUC + Inherits System.Windows.Controls.UserControl + Implements System.Windows.Markup.IComponentConnector + + Private _contentLoaded As Boolean + + ''' + '''InitializeComponent + ''' + _ + Public Sub InitializeComponent() Implements System.Windows.Markup.IComponentConnector.InitializeComponent + If _contentLoaded Then + Return + End If + _contentLoaded = true + Dim resourceLocater As System.Uri = New System.Uri("/OmagCUT;component/barlavorauc.xaml", System.UriKind.Relative) + + #ExternalSource("..\..\..\BarLavoraUC.xaml",1) + System.Windows.Application.LoadComponent(Me, resourceLocater) + + #End ExternalSource + End Sub + + _ + Sub System_Windows_Markup_IComponentConnector_Connect(ByVal connectionId As Integer, ByVal target As Object) Implements System.Windows.Markup.IComponentConnector.Connect + Me._contentLoaded = true + End Sub +End Class + diff --git a/obj/x86/Debug/BarLavoraUC.g.vb b/obj/x86/Debug/BarLavoraUC.g.vb new file mode 100644 index 0000000..bfc6203 --- /dev/null +++ b/obj/x86/Debug/BarLavoraUC.g.vb @@ -0,0 +1,76 @@ +#ExternalChecksum("..\..\..\BarLavoraUC.xaml","{406ea660-64cf-4c82-b6f0-42d48172a799}","D8A4CAA590C339CA79EE4CC672A19558") +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.34209 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict Off +Option Explicit On + +Imports System +Imports System.Diagnostics +Imports System.Windows +Imports System.Windows.Automation +Imports System.Windows.Controls +Imports System.Windows.Controls.Primitives +Imports System.Windows.Data +Imports System.Windows.Documents +Imports System.Windows.Forms.Integration +Imports System.Windows.Ink +Imports System.Windows.Input +Imports System.Windows.Markup +Imports System.Windows.Media +Imports System.Windows.Media.Animation +Imports System.Windows.Media.Effects +Imports System.Windows.Media.Imaging +Imports System.Windows.Media.Media3D +Imports System.Windows.Media.TextFormatting +Imports System.Windows.Navigation +Imports System.Windows.Shapes +Imports System.Windows.Shell + + +''' +'''BarLavoraUC +''' + _ +Partial Public Class BarLavoraUC + Inherits System.Windows.Controls.UserControl + Implements System.Windows.Markup.IComponentConnector + + Private _contentLoaded As Boolean + + ''' + '''InitializeComponent + ''' + _ + Public Sub InitializeComponent() Implements System.Windows.Markup.IComponentConnector.InitializeComponent + If _contentLoaded Then + Return + End If + _contentLoaded = true + Dim resourceLocater As System.Uri = New System.Uri("/OmagCUT;component/barlavorauc.xaml", System.UriKind.Relative) + + #ExternalSource("..\..\..\BarLavoraUC.xaml",1) + System.Windows.Application.LoadComponent(Me, resourceLocater) + + #End ExternalSource + End Sub + + _ + Sub System_Windows_Markup_IComponentConnector_Connect(ByVal connectionId As Integer, ByVal target As Object) Implements System.Windows.Markup.IComponentConnector.Connect + Me._contentLoaded = true + End Sub +End Class + diff --git a/obj/x86/Debug/BarNestingUC.baml b/obj/x86/Debug/BarNestingUC.baml new file mode 100644 index 0000000..ea268a3 Binary files /dev/null and b/obj/x86/Debug/BarNestingUC.baml differ diff --git a/obj/x86/Debug/BarNestingUC.g.i.vb b/obj/x86/Debug/BarNestingUC.g.i.vb new file mode 100644 index 0000000..4a839d4 --- /dev/null +++ b/obj/x86/Debug/BarNestingUC.g.i.vb @@ -0,0 +1,76 @@ +#ExternalChecksum("..\..\..\BarNestingUC.xaml","{406ea660-64cf-4c82-b6f0-42d48172a799}","8A00543EB74AD4345398B906D86232A1") +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.34209 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict Off +Option Explicit On + +Imports System +Imports System.Diagnostics +Imports System.Windows +Imports System.Windows.Automation +Imports System.Windows.Controls +Imports System.Windows.Controls.Primitives +Imports System.Windows.Data +Imports System.Windows.Documents +Imports System.Windows.Forms.Integration +Imports System.Windows.Ink +Imports System.Windows.Input +Imports System.Windows.Markup +Imports System.Windows.Media +Imports System.Windows.Media.Animation +Imports System.Windows.Media.Effects +Imports System.Windows.Media.Imaging +Imports System.Windows.Media.Media3D +Imports System.Windows.Media.TextFormatting +Imports System.Windows.Navigation +Imports System.Windows.Shapes +Imports System.Windows.Shell + + +''' +'''BarNestingUC +''' + _ +Partial Public Class BarNestingUC + Inherits System.Windows.Controls.UserControl + Implements System.Windows.Markup.IComponentConnector + + Private _contentLoaded As Boolean + + ''' + '''InitializeComponent + ''' + _ + Public Sub InitializeComponent() Implements System.Windows.Markup.IComponentConnector.InitializeComponent + If _contentLoaded Then + Return + End If + _contentLoaded = true + Dim resourceLocater As System.Uri = New System.Uri("/OmagCUT;component/barnestinguc.xaml", System.UriKind.Relative) + + #ExternalSource("..\..\..\BarNestingUC.xaml",1) + System.Windows.Application.LoadComponent(Me, resourceLocater) + + #End ExternalSource + End Sub + + _ + Sub System_Windows_Markup_IComponentConnector_Connect(ByVal connectionId As Integer, ByVal target As Object) Implements System.Windows.Markup.IComponentConnector.Connect + Me._contentLoaded = true + End Sub +End Class + diff --git a/obj/x86/Debug/BarNestingUC.g.vb b/obj/x86/Debug/BarNestingUC.g.vb new file mode 100644 index 0000000..4a839d4 --- /dev/null +++ b/obj/x86/Debug/BarNestingUC.g.vb @@ -0,0 +1,76 @@ +#ExternalChecksum("..\..\..\BarNestingUC.xaml","{406ea660-64cf-4c82-b6f0-42d48172a799}","8A00543EB74AD4345398B906D86232A1") +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.34209 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict Off +Option Explicit On + +Imports System +Imports System.Diagnostics +Imports System.Windows +Imports System.Windows.Automation +Imports System.Windows.Controls +Imports System.Windows.Controls.Primitives +Imports System.Windows.Data +Imports System.Windows.Documents +Imports System.Windows.Forms.Integration +Imports System.Windows.Ink +Imports System.Windows.Input +Imports System.Windows.Markup +Imports System.Windows.Media +Imports System.Windows.Media.Animation +Imports System.Windows.Media.Effects +Imports System.Windows.Media.Imaging +Imports System.Windows.Media.Media3D +Imports System.Windows.Media.TextFormatting +Imports System.Windows.Navigation +Imports System.Windows.Shapes +Imports System.Windows.Shell + + +''' +'''BarNestingUC +''' + _ +Partial Public Class BarNestingUC + Inherits System.Windows.Controls.UserControl + Implements System.Windows.Markup.IComponentConnector + + Private _contentLoaded As Boolean + + ''' + '''InitializeComponent + ''' + _ + Public Sub InitializeComponent() Implements System.Windows.Markup.IComponentConnector.InitializeComponent + If _contentLoaded Then + Return + End If + _contentLoaded = true + Dim resourceLocater As System.Uri = New System.Uri("/OmagCUT;component/barnestinguc.xaml", System.UriKind.Relative) + + #ExternalSource("..\..\..\BarNestingUC.xaml",1) + System.Windows.Application.LoadComponent(Me, resourceLocater) + + #End ExternalSource + End Sub + + _ + Sub System_Windows_Markup_IComponentConnector_Connect(ByVal connectionId As Integer, ByVal target As Object) Implements System.Windows.Markup.IComponentConnector.Connect + Me._contentLoaded = true + End Sub +End Class + diff --git a/obj/x86/Debug/ComponentiUC.baml b/obj/x86/Debug/ComponentiUC.baml new file mode 100644 index 0000000..9fcb267 Binary files /dev/null and b/obj/x86/Debug/ComponentiUC.baml differ diff --git a/obj/x86/Debug/ComponentiUC.g.i.vb b/obj/x86/Debug/ComponentiUC.g.i.vb new file mode 100644 index 0000000..d5381d3 --- /dev/null +++ b/obj/x86/Debug/ComponentiUC.g.i.vb @@ -0,0 +1,411 @@ +#ExternalChecksum("..\..\..\ComponentiUC.xaml","{406ea660-64cf-4c82-b6f0-42d48172a799}","8B4CDE654F67A9C21802EA0A8EA97213") +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.34209 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict Off +Option Explicit On + +Imports System +Imports System.Diagnostics +Imports System.Windows +Imports System.Windows.Automation +Imports System.Windows.Controls +Imports System.Windows.Controls.Primitives +Imports System.Windows.Data +Imports System.Windows.Documents +Imports System.Windows.Forms.Integration +Imports System.Windows.Ink +Imports System.Windows.Input +Imports System.Windows.Markup +Imports System.Windows.Media +Imports System.Windows.Media.Animation +Imports System.Windows.Media.Effects +Imports System.Windows.Media.Imaging +Imports System.Windows.Media.Media3D +Imports System.Windows.Media.TextFormatting +Imports System.Windows.Navigation +Imports System.Windows.Shapes +Imports System.Windows.Shell + + +''' +'''ComponentiUC +''' + _ +Partial Public Class ComponentiUC + Inherits System.Windows.Controls.UserControl + Implements System.Windows.Markup.IComponentConnector + + + #ExternalSource("..\..\..\ComponentiUC.xaml",15) + _ + Friend WithEvents BackGroundGridComponenti As System.Windows.Controls.Grid + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",98) + _ + Friend WithEvents tbName1 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",99) + _ + Friend WithEvents tbName2 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",100) + _ + Friend WithEvents tbName3 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",101) + _ + Friend WithEvents tbName4 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",102) + _ + Friend WithEvents tbName5 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",103) + _ + Friend WithEvents tbName6 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",104) + _ + Friend WithEvents tbName7 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",105) + _ + Friend WithEvents tbName8 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",106) + _ + Friend WithEvents tbName9 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",107) + _ + Friend WithEvents tbName10 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",108) + _ + Friend WithEvents tbValue1 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",109) + _ + Friend WithEvents tbValue2 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",110) + _ + Friend WithEvents tbValue3 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",111) + _ + Friend WithEvents tbValue4 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",112) + _ + Friend WithEvents tbValue5 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",113) + _ + Friend WithEvents tbValue6 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",114) + _ + Friend WithEvents tbValue7 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",115) + _ + Friend WithEvents tbValue8 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",116) + _ + Friend WithEvents tbValue9 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",117) + _ + Friend WithEvents tbValue10 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",118) + _ + Friend WithEvents tbMsg As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",119) + _ + Friend WithEvents btnView As System.Windows.Controls.Button + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",121) + _ + Friend WithEvents btnInsert As System.Windows.Controls.Button + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",123) + _ + Friend WithEvents btnX As System.Windows.Controls.Button + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",126) + _ + Friend WithEvents tbNbr As System.Windows.Controls.TextBox + + #End ExternalSource + + Private _contentLoaded As Boolean + + ''' + '''InitializeComponent + ''' + _ + Public Sub InitializeComponent() Implements System.Windows.Markup.IComponentConnector.InitializeComponent + If _contentLoaded Then + Return + End If + _contentLoaded = true + Dim resourceLocater As System.Uri = New System.Uri("/OmagCUT;component/componentiuc.xaml", System.UriKind.Relative) + + #ExternalSource("..\..\..\ComponentiUC.xaml",1) + System.Windows.Application.LoadComponent(Me, resourceLocater) + + #End ExternalSource + End Sub + + _ + Sub System_Windows_Markup_IComponentConnector_Connect(ByVal connectionId As Integer, ByVal target As Object) Implements System.Windows.Markup.IComponentConnector.Connect + If (connectionId = 1) Then + + #ExternalSource("..\..\..\ComponentiUC.xaml",7) + AddHandler CType(target,ComponentiUC).Loaded, New System.Windows.RoutedEventHandler(AddressOf Me.ComponentiUC_Loaded) + + #End ExternalSource + + #ExternalSource("..\..\..\ComponentiUC.xaml",7) + AddHandler CType(target,ComponentiUC).Unloaded, New System.Windows.RoutedEventHandler(AddressOf Me.ComponentiUC_Unloaded) + + #End ExternalSource + + #ExternalSource("..\..\..\ComponentiUC.xaml",7) + AddHandler CType(target,ComponentiUC).Initialized, New System.EventHandler(AddressOf Me.ComponentiUC_Initialized) + + #End ExternalSource + Return + End If + If (connectionId = 2) Then + Me.BackGroundGridComponenti = CType(target,System.Windows.Controls.Grid) + Return + End If + If (connectionId = 3) Then + + #ExternalSource("..\..\..\ComponentiUC.xaml",39) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.TriangleBtnUC_Click) + + #End ExternalSource + Return + End If + If (connectionId = 4) Then + + #ExternalSource("..\..\..\ComponentiUC.xaml",56) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.RectangleTrapeziumBtnUC_Click) + + #End ExternalSource + Return + End If + If (connectionId = 5) Then + Me.tbName1 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 6) Then + Me.tbName2 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 7) Then + Me.tbName3 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 8) Then + Me.tbName4 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 9) Then + Me.tbName5 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 10) Then + Me.tbName6 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 11) Then + Me.tbName7 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 12) Then + Me.tbName8 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 13) Then + Me.tbName9 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 14) Then + Me.tbName10 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 15) Then + Me.tbValue1 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 16) Then + Me.tbValue2 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 17) Then + Me.tbValue3 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 18) Then + Me.tbValue4 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 19) Then + Me.tbValue5 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 20) Then + Me.tbValue6 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 21) Then + Me.tbValue7 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 22) Then + Me.tbValue8 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 23) Then + Me.tbValue9 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 24) Then + Me.tbValue10 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 25) Then + Me.tbMsg = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 26) Then + Me.btnView = CType(target,System.Windows.Controls.Button) + + #ExternalSource("..\..\..\ComponentiUC.xaml",120) + AddHandler Me.btnView.Click, New System.Windows.RoutedEventHandler(AddressOf Me.ViewBtnUC_Click) + + #End ExternalSource + Return + End If + If (connectionId = 27) Then + Me.btnInsert = CType(target,System.Windows.Controls.Button) + + #ExternalSource("..\..\..\ComponentiUC.xaml",122) + AddHandler Me.btnInsert.Click, New System.Windows.RoutedEventHandler(AddressOf Me.InsertBtnUC_Click) + + #End ExternalSource + Return + End If + If (connectionId = 28) Then + Me.btnX = CType(target,System.Windows.Controls.Button) + + #ExternalSource("..\..\..\ComponentiUC.xaml",123) + AddHandler Me.btnX.Click, New System.Windows.RoutedEventHandler(AddressOf Me.CloseBtnUC_Click) + + #End ExternalSource + Return + End If + If (connectionId = 29) Then + Me.tbNbr = CType(target,System.Windows.Controls.TextBox) + Return + End If + Me._contentLoaded = true + End Sub +End Class + diff --git a/obj/x86/Debug/ComponentiUC.g.vb b/obj/x86/Debug/ComponentiUC.g.vb new file mode 100644 index 0000000..d5381d3 --- /dev/null +++ b/obj/x86/Debug/ComponentiUC.g.vb @@ -0,0 +1,411 @@ +#ExternalChecksum("..\..\..\ComponentiUC.xaml","{406ea660-64cf-4c82-b6f0-42d48172a799}","8B4CDE654F67A9C21802EA0A8EA97213") +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.34209 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict Off +Option Explicit On + +Imports System +Imports System.Diagnostics +Imports System.Windows +Imports System.Windows.Automation +Imports System.Windows.Controls +Imports System.Windows.Controls.Primitives +Imports System.Windows.Data +Imports System.Windows.Documents +Imports System.Windows.Forms.Integration +Imports System.Windows.Ink +Imports System.Windows.Input +Imports System.Windows.Markup +Imports System.Windows.Media +Imports System.Windows.Media.Animation +Imports System.Windows.Media.Effects +Imports System.Windows.Media.Imaging +Imports System.Windows.Media.Media3D +Imports System.Windows.Media.TextFormatting +Imports System.Windows.Navigation +Imports System.Windows.Shapes +Imports System.Windows.Shell + + +''' +'''ComponentiUC +''' + _ +Partial Public Class ComponentiUC + Inherits System.Windows.Controls.UserControl + Implements System.Windows.Markup.IComponentConnector + + + #ExternalSource("..\..\..\ComponentiUC.xaml",15) + _ + Friend WithEvents BackGroundGridComponenti As System.Windows.Controls.Grid + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",98) + _ + Friend WithEvents tbName1 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",99) + _ + Friend WithEvents tbName2 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",100) + _ + Friend WithEvents tbName3 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",101) + _ + Friend WithEvents tbName4 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",102) + _ + Friend WithEvents tbName5 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",103) + _ + Friend WithEvents tbName6 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",104) + _ + Friend WithEvents tbName7 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",105) + _ + Friend WithEvents tbName8 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",106) + _ + Friend WithEvents tbName9 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",107) + _ + Friend WithEvents tbName10 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",108) + _ + Friend WithEvents tbValue1 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",109) + _ + Friend WithEvents tbValue2 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",110) + _ + Friend WithEvents tbValue3 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",111) + _ + Friend WithEvents tbValue4 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",112) + _ + Friend WithEvents tbValue5 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",113) + _ + Friend WithEvents tbValue6 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",114) + _ + Friend WithEvents tbValue7 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",115) + _ + Friend WithEvents tbValue8 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",116) + _ + Friend WithEvents tbValue9 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",117) + _ + Friend WithEvents tbValue10 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",118) + _ + Friend WithEvents tbMsg As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",119) + _ + Friend WithEvents btnView As System.Windows.Controls.Button + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",121) + _ + Friend WithEvents btnInsert As System.Windows.Controls.Button + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",123) + _ + Friend WithEvents btnX As System.Windows.Controls.Button + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",126) + _ + Friend WithEvents tbNbr As System.Windows.Controls.TextBox + + #End ExternalSource + + Private _contentLoaded As Boolean + + ''' + '''InitializeComponent + ''' + _ + Public Sub InitializeComponent() Implements System.Windows.Markup.IComponentConnector.InitializeComponent + If _contentLoaded Then + Return + End If + _contentLoaded = true + Dim resourceLocater As System.Uri = New System.Uri("/OmagCUT;component/componentiuc.xaml", System.UriKind.Relative) + + #ExternalSource("..\..\..\ComponentiUC.xaml",1) + System.Windows.Application.LoadComponent(Me, resourceLocater) + + #End ExternalSource + End Sub + + _ + Sub System_Windows_Markup_IComponentConnector_Connect(ByVal connectionId As Integer, ByVal target As Object) Implements System.Windows.Markup.IComponentConnector.Connect + If (connectionId = 1) Then + + #ExternalSource("..\..\..\ComponentiUC.xaml",7) + AddHandler CType(target,ComponentiUC).Loaded, New System.Windows.RoutedEventHandler(AddressOf Me.ComponentiUC_Loaded) + + #End ExternalSource + + #ExternalSource("..\..\..\ComponentiUC.xaml",7) + AddHandler CType(target,ComponentiUC).Unloaded, New System.Windows.RoutedEventHandler(AddressOf Me.ComponentiUC_Unloaded) + + #End ExternalSource + + #ExternalSource("..\..\..\ComponentiUC.xaml",7) + AddHandler CType(target,ComponentiUC).Initialized, New System.EventHandler(AddressOf Me.ComponentiUC_Initialized) + + #End ExternalSource + Return + End If + If (connectionId = 2) Then + Me.BackGroundGridComponenti = CType(target,System.Windows.Controls.Grid) + Return + End If + If (connectionId = 3) Then + + #ExternalSource("..\..\..\ComponentiUC.xaml",39) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.TriangleBtnUC_Click) + + #End ExternalSource + Return + End If + If (connectionId = 4) Then + + #ExternalSource("..\..\..\ComponentiUC.xaml",56) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.RectangleTrapeziumBtnUC_Click) + + #End ExternalSource + Return + End If + If (connectionId = 5) Then + Me.tbName1 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 6) Then + Me.tbName2 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 7) Then + Me.tbName3 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 8) Then + Me.tbName4 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 9) Then + Me.tbName5 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 10) Then + Me.tbName6 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 11) Then + Me.tbName7 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 12) Then + Me.tbName8 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 13) Then + Me.tbName9 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 14) Then + Me.tbName10 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 15) Then + Me.tbValue1 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 16) Then + Me.tbValue2 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 17) Then + Me.tbValue3 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 18) Then + Me.tbValue4 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 19) Then + Me.tbValue5 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 20) Then + Me.tbValue6 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 21) Then + Me.tbValue7 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 22) Then + Me.tbValue8 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 23) Then + Me.tbValue9 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 24) Then + Me.tbValue10 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 25) Then + Me.tbMsg = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 26) Then + Me.btnView = CType(target,System.Windows.Controls.Button) + + #ExternalSource("..\..\..\ComponentiUC.xaml",120) + AddHandler Me.btnView.Click, New System.Windows.RoutedEventHandler(AddressOf Me.ViewBtnUC_Click) + + #End ExternalSource + Return + End If + If (connectionId = 27) Then + Me.btnInsert = CType(target,System.Windows.Controls.Button) + + #ExternalSource("..\..\..\ComponentiUC.xaml",122) + AddHandler Me.btnInsert.Click, New System.Windows.RoutedEventHandler(AddressOf Me.InsertBtnUC_Click) + + #End ExternalSource + Return + End If + If (connectionId = 28) Then + Me.btnX = CType(target,System.Windows.Controls.Button) + + #ExternalSource("..\..\..\ComponentiUC.xaml",123) + AddHandler Me.btnX.Click, New System.Windows.RoutedEventHandler(AddressOf Me.CloseBtnUC_Click) + + #End ExternalSource + Return + End If + If (connectionId = 29) Then + Me.tbNbr = CType(target,System.Windows.Controls.TextBox) + Return + End If + Me._contentLoaded = true + End Sub +End Class + diff --git a/obj/x86/Debug/CorniciUC.baml b/obj/x86/Debug/CorniciUC.baml new file mode 100644 index 0000000..ab694ef Binary files /dev/null and b/obj/x86/Debug/CorniciUC.baml differ diff --git a/obj/x86/Debug/CorniciUC.g.i.vb b/obj/x86/Debug/CorniciUC.g.i.vb new file mode 100644 index 0000000..c68985b --- /dev/null +++ b/obj/x86/Debug/CorniciUC.g.i.vb @@ -0,0 +1,87 @@ +#ExternalChecksum("..\..\..\CorniciUC.xaml","{406ea660-64cf-4c82-b6f0-42d48172a799}","B7D528832F33B356523629F44C82D88B") +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.34209 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict Off +Option Explicit On + +Imports System +Imports System.Diagnostics +Imports System.Windows +Imports System.Windows.Automation +Imports System.Windows.Controls +Imports System.Windows.Controls.Primitives +Imports System.Windows.Data +Imports System.Windows.Documents +Imports System.Windows.Forms.Integration +Imports System.Windows.Ink +Imports System.Windows.Input +Imports System.Windows.Markup +Imports System.Windows.Media +Imports System.Windows.Media.Animation +Imports System.Windows.Media.Effects +Imports System.Windows.Media.Imaging +Imports System.Windows.Media.Media3D +Imports System.Windows.Media.TextFormatting +Imports System.Windows.Navigation +Imports System.Windows.Shapes +Imports System.Windows.Shell + + +''' +'''CorniciUC +''' + _ +Partial Public Class CorniciUC + Inherits System.Windows.Controls.UserControl + Implements System.Windows.Markup.IComponentConnector + + + #ExternalSource("..\..\..\CorniciUC.xaml",15) + _ + Friend WithEvents BackGroundGridLavorazioneCornici As System.Windows.Controls.Grid + + #End ExternalSource + + Private _contentLoaded As Boolean + + ''' + '''InitializeComponent + ''' + _ + Public Sub InitializeComponent() Implements System.Windows.Markup.IComponentConnector.InitializeComponent + If _contentLoaded Then + Return + End If + _contentLoaded = true + Dim resourceLocater As System.Uri = New System.Uri("/OmagCUT;component/corniciuc.xaml", System.UriKind.Relative) + + #ExternalSource("..\..\..\CorniciUC.xaml",1) + System.Windows.Application.LoadComponent(Me, resourceLocater) + + #End ExternalSource + End Sub + + _ + Sub System_Windows_Markup_IComponentConnector_Connect(ByVal connectionId As Integer, ByVal target As Object) Implements System.Windows.Markup.IComponentConnector.Connect + If (connectionId = 1) Then + Me.BackGroundGridLavorazioneCornici = CType(target,System.Windows.Controls.Grid) + Return + End If + Me._contentLoaded = true + End Sub +End Class + diff --git a/obj/x86/Debug/CorniciUC.g.vb b/obj/x86/Debug/CorniciUC.g.vb new file mode 100644 index 0000000..c68985b --- /dev/null +++ b/obj/x86/Debug/CorniciUC.g.vb @@ -0,0 +1,87 @@ +#ExternalChecksum("..\..\..\CorniciUC.xaml","{406ea660-64cf-4c82-b6f0-42d48172a799}","B7D528832F33B356523629F44C82D88B") +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.34209 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict Off +Option Explicit On + +Imports System +Imports System.Diagnostics +Imports System.Windows +Imports System.Windows.Automation +Imports System.Windows.Controls +Imports System.Windows.Controls.Primitives +Imports System.Windows.Data +Imports System.Windows.Documents +Imports System.Windows.Forms.Integration +Imports System.Windows.Ink +Imports System.Windows.Input +Imports System.Windows.Markup +Imports System.Windows.Media +Imports System.Windows.Media.Animation +Imports System.Windows.Media.Effects +Imports System.Windows.Media.Imaging +Imports System.Windows.Media.Media3D +Imports System.Windows.Media.TextFormatting +Imports System.Windows.Navigation +Imports System.Windows.Shapes +Imports System.Windows.Shell + + +''' +'''CorniciUC +''' + _ +Partial Public Class CorniciUC + Inherits System.Windows.Controls.UserControl + Implements System.Windows.Markup.IComponentConnector + + + #ExternalSource("..\..\..\CorniciUC.xaml",15) + _ + Friend WithEvents BackGroundGridLavorazioneCornici As System.Windows.Controls.Grid + + #End ExternalSource + + Private _contentLoaded As Boolean + + ''' + '''InitializeComponent + ''' + _ + Public Sub InitializeComponent() Implements System.Windows.Markup.IComponentConnector.InitializeComponent + If _contentLoaded Then + Return + End If + _contentLoaded = true + Dim resourceLocater As System.Uri = New System.Uri("/OmagCUT;component/corniciuc.xaml", System.UriKind.Relative) + + #ExternalSource("..\..\..\CorniciUC.xaml",1) + System.Windows.Application.LoadComponent(Me, resourceLocater) + + #End ExternalSource + End Sub + + _ + Sub System_Windows_Markup_IComponentConnector_Connect(ByVal connectionId As Integer, ByVal target As Object) Implements System.Windows.Markup.IComponentConnector.Connect + If (connectionId = 1) Then + Me.BackGroundGridLavorazioneCornici = CType(target,System.Windows.Controls.Grid) + Return + End If + Me._contentLoaded = true + End Sub +End Class + diff --git a/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache b/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache new file mode 100644 index 0000000..a13c570 Binary files /dev/null and b/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache differ diff --git a/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 0000000..dce4cc9 Binary files /dev/null and b/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/obj/x86/Debug/FlatPartsImportUC.baml b/obj/x86/Debug/FlatPartsImportUC.baml new file mode 100644 index 0000000..88009f9 Binary files /dev/null and b/obj/x86/Debug/FlatPartsImportUC.baml differ diff --git a/obj/x86/Debug/FlatPartsImportUC.g.i.vb b/obj/x86/Debug/FlatPartsImportUC.g.i.vb new file mode 100644 index 0000000..9c08058 --- /dev/null +++ b/obj/x86/Debug/FlatPartsImportUC.g.i.vb @@ -0,0 +1,116 @@ +#ExternalChecksum("..\..\..\FlatPartsImportUC.xaml","{406ea660-64cf-4c82-b6f0-42d48172a799}","D268B6D2AC690553285DD8AF1F594C67") +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.34209 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict Off +Option Explicit On + +Imports System +Imports System.Diagnostics +Imports System.Windows +Imports System.Windows.Automation +Imports System.Windows.Controls +Imports System.Windows.Controls.Primitives +Imports System.Windows.Data +Imports System.Windows.Documents +Imports System.Windows.Forms.Integration +Imports System.Windows.Ink +Imports System.Windows.Input +Imports System.Windows.Markup +Imports System.Windows.Media +Imports System.Windows.Media.Animation +Imports System.Windows.Media.Effects +Imports System.Windows.Media.Imaging +Imports System.Windows.Media.Media3D +Imports System.Windows.Media.TextFormatting +Imports System.Windows.Navigation +Imports System.Windows.Shapes +Imports System.Windows.Shell + + +''' +'''FlatPartsImportUC +''' + _ +Partial Public Class FlatPartsImportUC + Inherits System.Windows.Controls.UserControl + Implements System.Windows.Markup.IComponentConnector + + + #ExternalSource("..\..\..\FlatPartsImportUC.xaml",15) + _ + Friend WithEvents BackGroundGridFlatPartsImport As System.Windows.Controls.Grid + + #End ExternalSource + + + #ExternalSource("..\..\..\FlatPartsImportUC.xaml",28) + _ + Friend WithEvents ListView1 As System.Windows.Controls.ListView + + #End ExternalSource + + Private _contentLoaded As Boolean + + ''' + '''InitializeComponent + ''' + _ + Public Sub InitializeComponent() Implements System.Windows.Markup.IComponentConnector.InitializeComponent + If _contentLoaded Then + Return + End If + _contentLoaded = true + Dim resourceLocater As System.Uri = New System.Uri("/OmagCUT;component/flatpartsimportuc.xaml", System.UriKind.Relative) + + #ExternalSource("..\..\..\FlatPartsImportUC.xaml",1) + System.Windows.Application.LoadComponent(Me, resourceLocater) + + #End ExternalSource + End Sub + + _ + Sub System_Windows_Markup_IComponentConnector_Connect(ByVal connectionId As Integer, ByVal target As Object) Implements System.Windows.Markup.IComponentConnector.Connect + If (connectionId = 1) Then + + #ExternalSource("..\..\..\FlatPartsImportUC.xaml",7) + AddHandler CType(target,FlatPartsImportUC).Loaded, New System.Windows.RoutedEventHandler(AddressOf Me.FlatPartsImportUC_Loaded) + + #End ExternalSource + + #ExternalSource("..\..\..\FlatPartsImportUC.xaml",7) + AddHandler CType(target,FlatPartsImportUC).Initialized, New System.EventHandler(AddressOf Me.FlatPartsImportUC_Initialized) + + #End ExternalSource + Return + End If + If (connectionId = 2) Then + Me.BackGroundGridFlatPartsImport = CType(target,System.Windows.Controls.Grid) + Return + End If + If (connectionId = 3) Then + Me.ListView1 = CType(target,System.Windows.Controls.ListView) + + #ExternalSource("..\..\..\FlatPartsImportUC.xaml",28) + AddHandler Me.ListView1.SelectionChanged, New System.Windows.Controls.SelectionChangedEventHandler(AddressOf Me.ScenaFlatPartsImportUC_SelectionChanged) + + #End ExternalSource + Return + End If + Me._contentLoaded = true + End Sub +End Class + diff --git a/obj/x86/Debug/FlatPartsImportUC.g.vb b/obj/x86/Debug/FlatPartsImportUC.g.vb new file mode 100644 index 0000000..9c08058 --- /dev/null +++ b/obj/x86/Debug/FlatPartsImportUC.g.vb @@ -0,0 +1,116 @@ +#ExternalChecksum("..\..\..\FlatPartsImportUC.xaml","{406ea660-64cf-4c82-b6f0-42d48172a799}","D268B6D2AC690553285DD8AF1F594C67") +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.34209 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict Off +Option Explicit On + +Imports System +Imports System.Diagnostics +Imports System.Windows +Imports System.Windows.Automation +Imports System.Windows.Controls +Imports System.Windows.Controls.Primitives +Imports System.Windows.Data +Imports System.Windows.Documents +Imports System.Windows.Forms.Integration +Imports System.Windows.Ink +Imports System.Windows.Input +Imports System.Windows.Markup +Imports System.Windows.Media +Imports System.Windows.Media.Animation +Imports System.Windows.Media.Effects +Imports System.Windows.Media.Imaging +Imports System.Windows.Media.Media3D +Imports System.Windows.Media.TextFormatting +Imports System.Windows.Navigation +Imports System.Windows.Shapes +Imports System.Windows.Shell + + +''' +'''FlatPartsImportUC +''' + _ +Partial Public Class FlatPartsImportUC + Inherits System.Windows.Controls.UserControl + Implements System.Windows.Markup.IComponentConnector + + + #ExternalSource("..\..\..\FlatPartsImportUC.xaml",15) + _ + Friend WithEvents BackGroundGridFlatPartsImport As System.Windows.Controls.Grid + + #End ExternalSource + + + #ExternalSource("..\..\..\FlatPartsImportUC.xaml",28) + _ + Friend WithEvents ListView1 As System.Windows.Controls.ListView + + #End ExternalSource + + Private _contentLoaded As Boolean + + ''' + '''InitializeComponent + ''' + _ + Public Sub InitializeComponent() Implements System.Windows.Markup.IComponentConnector.InitializeComponent + If _contentLoaded Then + Return + End If + _contentLoaded = true + Dim resourceLocater As System.Uri = New System.Uri("/OmagCUT;component/flatpartsimportuc.xaml", System.UriKind.Relative) + + #ExternalSource("..\..\..\FlatPartsImportUC.xaml",1) + System.Windows.Application.LoadComponent(Me, resourceLocater) + + #End ExternalSource + End Sub + + _ + Sub System_Windows_Markup_IComponentConnector_Connect(ByVal connectionId As Integer, ByVal target As Object) Implements System.Windows.Markup.IComponentConnector.Connect + If (connectionId = 1) Then + + #ExternalSource("..\..\..\FlatPartsImportUC.xaml",7) + AddHandler CType(target,FlatPartsImportUC).Loaded, New System.Windows.RoutedEventHandler(AddressOf Me.FlatPartsImportUC_Loaded) + + #End ExternalSource + + #ExternalSource("..\..\..\FlatPartsImportUC.xaml",7) + AddHandler CType(target,FlatPartsImportUC).Initialized, New System.EventHandler(AddressOf Me.FlatPartsImportUC_Initialized) + + #End ExternalSource + Return + End If + If (connectionId = 2) Then + Me.BackGroundGridFlatPartsImport = CType(target,System.Windows.Controls.Grid) + Return + End If + If (connectionId = 3) Then + Me.ListView1 = CType(target,System.Windows.Controls.ListView) + + #ExternalSource("..\..\..\FlatPartsImportUC.xaml",28) + AddHandler Me.ListView1.SelectionChanged, New System.Windows.Controls.SelectionChangedEventHandler(AddressOf Me.ScenaFlatPartsImportUC_SelectionChanged) + + #End ExternalSource + Return + End If + Me._contentLoaded = true + End Sub +End Class + diff --git a/obj/x86/Debug/GeneratedInternalTypeHelper.g.i.vb b/obj/x86/Debug/GeneratedInternalTypeHelper.g.i.vb new file mode 100644 index 0000000..68a15d0 --- /dev/null +++ b/obj/x86/Debug/GeneratedInternalTypeHelper.g.i.vb @@ -0,0 +1,65 @@ +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.34209 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict Off +Option Explicit On + + + +Namespace XamlGeneratedNamespace + + ''' + '''GeneratedInternalTypeHelper + ''' + _ + Public NotInheritable Class GeneratedInternalTypeHelper + Inherits System.Windows.Markup.InternalTypeHelper + + ''' + '''CreateInstance + ''' + Protected Overrides Function CreateInstance(ByVal type As System.Type, ByVal culture As System.Globalization.CultureInfo) As Object + Return System.Activator.CreateInstance(type, ((System.Reflection.BindingFlags.[Public] Or System.Reflection.BindingFlags.NonPublic) _ + Or (System.Reflection.BindingFlags.Instance Or System.Reflection.BindingFlags.CreateInstance)), Nothing, Nothing, culture) + End Function + + ''' + '''GetPropertyValue + ''' + Protected Overrides Function GetPropertyValue(ByVal propertyInfo As System.Reflection.PropertyInfo, ByVal target As Object, ByVal culture As System.Globalization.CultureInfo) As Object + Return propertyInfo.GetValue(target, System.Reflection.BindingFlags.[Default], Nothing, Nothing, culture) + End Function + + ''' + '''SetPropertyValue + ''' + Protected Overrides Sub SetPropertyValue(ByVal propertyInfo As System.Reflection.PropertyInfo, ByVal target As Object, ByVal value As Object, ByVal culture As System.Globalization.CultureInfo) + propertyInfo.SetValue(target, value, System.Reflection.BindingFlags.[Default], Nothing, Nothing, culture) + End Sub + + ''' + '''CreateDelegate + ''' + Protected Overrides Function CreateDelegate(ByVal delegateType As System.Type, ByVal target As Object, ByVal handler As String) As System.[Delegate] + Return CType(target.GetType.InvokeMember("_CreateDelegate", (System.Reflection.BindingFlags.InvokeMethod _ + Or (System.Reflection.BindingFlags.NonPublic Or System.Reflection.BindingFlags.Instance)), Nothing, target, New Object() {delegateType, handler}, Nothing),System.[Delegate]) + End Function + + ''' + '''AddEventHandler + ''' + Protected Overrides Sub AddEventHandler(ByVal eventInfo As System.Reflection.EventInfo, ByVal target As Object, ByVal handler As System.[Delegate]) + eventInfo.AddEventHandler(target, handler) + End Sub + End Class +End Namespace + diff --git a/obj/x86/Debug/GeneratedInternalTypeHelper.g.vb b/obj/x86/Debug/GeneratedInternalTypeHelper.g.vb new file mode 100644 index 0000000..68a15d0 --- /dev/null +++ b/obj/x86/Debug/GeneratedInternalTypeHelper.g.vb @@ -0,0 +1,65 @@ +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.34209 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict Off +Option Explicit On + + + +Namespace XamlGeneratedNamespace + + ''' + '''GeneratedInternalTypeHelper + ''' + _ + Public NotInheritable Class GeneratedInternalTypeHelper + Inherits System.Windows.Markup.InternalTypeHelper + + ''' + '''CreateInstance + ''' + Protected Overrides Function CreateInstance(ByVal type As System.Type, ByVal culture As System.Globalization.CultureInfo) As Object + Return System.Activator.CreateInstance(type, ((System.Reflection.BindingFlags.[Public] Or System.Reflection.BindingFlags.NonPublic) _ + Or (System.Reflection.BindingFlags.Instance Or System.Reflection.BindingFlags.CreateInstance)), Nothing, Nothing, culture) + End Function + + ''' + '''GetPropertyValue + ''' + Protected Overrides Function GetPropertyValue(ByVal propertyInfo As System.Reflection.PropertyInfo, ByVal target As Object, ByVal culture As System.Globalization.CultureInfo) As Object + Return propertyInfo.GetValue(target, System.Reflection.BindingFlags.[Default], Nothing, Nothing, culture) + End Function + + ''' + '''SetPropertyValue + ''' + Protected Overrides Sub SetPropertyValue(ByVal propertyInfo As System.Reflection.PropertyInfo, ByVal target As Object, ByVal value As Object, ByVal culture As System.Globalization.CultureInfo) + propertyInfo.SetValue(target, value, System.Reflection.BindingFlags.[Default], Nothing, Nothing, culture) + End Sub + + ''' + '''CreateDelegate + ''' + Protected Overrides Function CreateDelegate(ByVal delegateType As System.Type, ByVal target As Object, ByVal handler As String) As System.[Delegate] + Return CType(target.GetType.InvokeMember("_CreateDelegate", (System.Reflection.BindingFlags.InvokeMethod _ + Or (System.Reflection.BindingFlags.NonPublic Or System.Reflection.BindingFlags.Instance)), Nothing, target, New Object() {delegateType, handler}, Nothing),System.[Delegate]) + End Function + + ''' + '''AddEventHandler + ''' + Protected Overrides Sub AddEventHandler(ByVal eventInfo As System.Reflection.EventInfo, ByVal target As Object, ByVal handler As System.[Delegate]) + eventInfo.AddEventHandler(target, handler) + End Sub + End Class +End Namespace + diff --git a/obj/x86/Debug/GrezzoUC.baml b/obj/x86/Debug/GrezzoUC.baml new file mode 100644 index 0000000..f9dd802 Binary files /dev/null and b/obj/x86/Debug/GrezzoUC.baml differ diff --git a/obj/x86/Debug/GrezzoUC.g.i.vb b/obj/x86/Debug/GrezzoUC.g.i.vb new file mode 100644 index 0000000..ed975de --- /dev/null +++ b/obj/x86/Debug/GrezzoUC.g.i.vb @@ -0,0 +1,182 @@ +#ExternalChecksum("..\..\..\GrezzoUC.xaml","{406ea660-64cf-4c82-b6f0-42d48172a799}","AFF66DC0F7A0DDF130508D1E8E09B1DF") +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.34209 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict Off +Option Explicit On + +Imports System +Imports System.Diagnostics +Imports System.Windows +Imports System.Windows.Automation +Imports System.Windows.Controls +Imports System.Windows.Controls.Primitives +Imports System.Windows.Data +Imports System.Windows.Documents +Imports System.Windows.Forms.Integration +Imports System.Windows.Ink +Imports System.Windows.Input +Imports System.Windows.Markup +Imports System.Windows.Media +Imports System.Windows.Media.Animation +Imports System.Windows.Media.Effects +Imports System.Windows.Media.Imaging +Imports System.Windows.Media.Media3D +Imports System.Windows.Media.TextFormatting +Imports System.Windows.Navigation +Imports System.Windows.Shapes +Imports System.Windows.Shell + + +''' +'''GrezzoUC +''' + _ +Partial Public Class GrezzoUC + Inherits System.Windows.Controls.UserControl + Implements System.Windows.Markup.IComponentConnector + + + #ExternalSource("..\..\..\GrezzoUC.xaml",44) + _ + Friend WithEvents RectangleBtn As System.Windows.Controls.Button + + #End ExternalSource + + + #ExternalSource("..\..\..\GrezzoUC.xaml",47) + _ + Friend WithEvents WidthLbl As System.Windows.Controls.Label + + #End ExternalSource + + + #ExternalSource("..\..\..\GrezzoUC.xaml",50) + _ + Friend WithEvents WidthTxBx As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\GrezzoUC.xaml",79) + _ + Friend WithEvents KerfLbl As System.Windows.Controls.Label + + #End ExternalSource + + + #ExternalSource("..\..\..\GrezzoUC.xaml",81) + _ + Friend WithEvents KerfBtn As System.Windows.Controls.Button + + #End ExternalSource + + + #ExternalSource("..\..\..\GrezzoUC.xaml",85) + _ + Friend WithEvents KerfThicknessLbl As System.Windows.Controls.Label + + #End ExternalSource + + + #ExternalSource("..\..\..\GrezzoUC.xaml",107) + _ + Friend WithEvents Lbl As System.Windows.Controls.Label + + #End ExternalSource + + Private _contentLoaded As Boolean + + ''' + '''InitializeComponent + ''' + _ + Public Sub InitializeComponent() Implements System.Windows.Markup.IComponentConnector.InitializeComponent + If _contentLoaded Then + Return + End If + _contentLoaded = true + Dim resourceLocater As System.Uri = New System.Uri("/OmagCUT;component/grezzouc.xaml", System.UriKind.Relative) + + #ExternalSource("..\..\..\GrezzoUC.xaml",1) + System.Windows.Application.LoadComponent(Me, resourceLocater) + + #End ExternalSource + End Sub + + _ + Sub System_Windows_Markup_IComponentConnector_Connect(ByVal connectionId As Integer, ByVal target As Object) Implements System.Windows.Markup.IComponentConnector.Connect + If (connectionId = 1) Then + + #ExternalSource("..\..\..\GrezzoUC.xaml",8) + AddHandler CType(target,GrezzoUC).Loaded, New System.Windows.RoutedEventHandler(AddressOf Me.GrezzoUC_Loaded) + + #End ExternalSource + + #ExternalSource("..\..\..\GrezzoUC.xaml",8) + AddHandler CType(target,GrezzoUC).Initialized, New System.EventHandler(AddressOf Me.GrezzoUC_Initialized) + + #End ExternalSource + Return + End If + If (connectionId = 2) Then + Me.RectangleBtn = CType(target,System.Windows.Controls.Button) + Return + End If + If (connectionId = 3) Then + Me.WidthLbl = CType(target,System.Windows.Controls.Label) + Return + End If + If (connectionId = 4) Then + Me.WidthTxBx = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 5) Then + Me.KerfLbl = CType(target,System.Windows.Controls.Label) + Return + End If + If (connectionId = 6) Then + Me.KerfBtn = CType(target,System.Windows.Controls.Button) + Return + End If + If (connectionId = 7) Then + Me.KerfThicknessLbl = CType(target,System.Windows.Controls.Label) + Return + End If + If (connectionId = 8) Then + Me.Lbl = CType(target,System.Windows.Controls.Label) + Return + End If + If (connectionId = 9) Then + + #ExternalSource("..\..\..\GrezzoUC.xaml",117) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.ExitBtnUC_Click) + + #End ExternalSource + Return + End If + If (connectionId = 10) Then + + #ExternalSource("..\..\..\GrezzoUC.xaml",118) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.ConfirmBtn_Click) + + #End ExternalSource + Return + End If + Me._contentLoaded = true + End Sub +End Class + diff --git a/obj/x86/Debug/GrezzoUC.g.vb b/obj/x86/Debug/GrezzoUC.g.vb new file mode 100644 index 0000000..ed975de --- /dev/null +++ b/obj/x86/Debug/GrezzoUC.g.vb @@ -0,0 +1,182 @@ +#ExternalChecksum("..\..\..\GrezzoUC.xaml","{406ea660-64cf-4c82-b6f0-42d48172a799}","AFF66DC0F7A0DDF130508D1E8E09B1DF") +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.34209 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict Off +Option Explicit On + +Imports System +Imports System.Diagnostics +Imports System.Windows +Imports System.Windows.Automation +Imports System.Windows.Controls +Imports System.Windows.Controls.Primitives +Imports System.Windows.Data +Imports System.Windows.Documents +Imports System.Windows.Forms.Integration +Imports System.Windows.Ink +Imports System.Windows.Input +Imports System.Windows.Markup +Imports System.Windows.Media +Imports System.Windows.Media.Animation +Imports System.Windows.Media.Effects +Imports System.Windows.Media.Imaging +Imports System.Windows.Media.Media3D +Imports System.Windows.Media.TextFormatting +Imports System.Windows.Navigation +Imports System.Windows.Shapes +Imports System.Windows.Shell + + +''' +'''GrezzoUC +''' + _ +Partial Public Class GrezzoUC + Inherits System.Windows.Controls.UserControl + Implements System.Windows.Markup.IComponentConnector + + + #ExternalSource("..\..\..\GrezzoUC.xaml",44) + _ + Friend WithEvents RectangleBtn As System.Windows.Controls.Button + + #End ExternalSource + + + #ExternalSource("..\..\..\GrezzoUC.xaml",47) + _ + Friend WithEvents WidthLbl As System.Windows.Controls.Label + + #End ExternalSource + + + #ExternalSource("..\..\..\GrezzoUC.xaml",50) + _ + Friend WithEvents WidthTxBx As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\GrezzoUC.xaml",79) + _ + Friend WithEvents KerfLbl As System.Windows.Controls.Label + + #End ExternalSource + + + #ExternalSource("..\..\..\GrezzoUC.xaml",81) + _ + Friend WithEvents KerfBtn As System.Windows.Controls.Button + + #End ExternalSource + + + #ExternalSource("..\..\..\GrezzoUC.xaml",85) + _ + Friend WithEvents KerfThicknessLbl As System.Windows.Controls.Label + + #End ExternalSource + + + #ExternalSource("..\..\..\GrezzoUC.xaml",107) + _ + Friend WithEvents Lbl As System.Windows.Controls.Label + + #End ExternalSource + + Private _contentLoaded As Boolean + + ''' + '''InitializeComponent + ''' + _ + Public Sub InitializeComponent() Implements System.Windows.Markup.IComponentConnector.InitializeComponent + If _contentLoaded Then + Return + End If + _contentLoaded = true + Dim resourceLocater As System.Uri = New System.Uri("/OmagCUT;component/grezzouc.xaml", System.UriKind.Relative) + + #ExternalSource("..\..\..\GrezzoUC.xaml",1) + System.Windows.Application.LoadComponent(Me, resourceLocater) + + #End ExternalSource + End Sub + + _ + Sub System_Windows_Markup_IComponentConnector_Connect(ByVal connectionId As Integer, ByVal target As Object) Implements System.Windows.Markup.IComponentConnector.Connect + If (connectionId = 1) Then + + #ExternalSource("..\..\..\GrezzoUC.xaml",8) + AddHandler CType(target,GrezzoUC).Loaded, New System.Windows.RoutedEventHandler(AddressOf Me.GrezzoUC_Loaded) + + #End ExternalSource + + #ExternalSource("..\..\..\GrezzoUC.xaml",8) + AddHandler CType(target,GrezzoUC).Initialized, New System.EventHandler(AddressOf Me.GrezzoUC_Initialized) + + #End ExternalSource + Return + End If + If (connectionId = 2) Then + Me.RectangleBtn = CType(target,System.Windows.Controls.Button) + Return + End If + If (connectionId = 3) Then + Me.WidthLbl = CType(target,System.Windows.Controls.Label) + Return + End If + If (connectionId = 4) Then + Me.WidthTxBx = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 5) Then + Me.KerfLbl = CType(target,System.Windows.Controls.Label) + Return + End If + If (connectionId = 6) Then + Me.KerfBtn = CType(target,System.Windows.Controls.Button) + Return + End If + If (connectionId = 7) Then + Me.KerfThicknessLbl = CType(target,System.Windows.Controls.Label) + Return + End If + If (connectionId = 8) Then + Me.Lbl = CType(target,System.Windows.Controls.Label) + Return + End If + If (connectionId = 9) Then + + #ExternalSource("..\..\..\GrezzoUC.xaml",117) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.ExitBtnUC_Click) + + #End ExternalSource + Return + End If + If (connectionId = 10) Then + + #ExternalSource("..\..\..\GrezzoUC.xaml",118) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.ConfirmBtn_Click) + + #End ExternalSource + Return + End If + Me._contentLoaded = true + End Sub +End Class + diff --git a/obj/x86/Debug/LavoroInCorsoUC.baml b/obj/x86/Debug/LavoroInCorsoUC.baml new file mode 100644 index 0000000..ef36ff1 Binary files /dev/null and b/obj/x86/Debug/LavoroInCorsoUC.baml differ diff --git a/obj/x86/Debug/LavoroInCorsoUC.g.i.vb b/obj/x86/Debug/LavoroInCorsoUC.g.i.vb new file mode 100644 index 0000000..c5d15cb --- /dev/null +++ b/obj/x86/Debug/LavoroInCorsoUC.g.i.vb @@ -0,0 +1,100 @@ +#ExternalChecksum("..\..\..\LavoroInCorsoUC.xaml","{406ea660-64cf-4c82-b6f0-42d48172a799}","71E237E960394571F1D2E9C83692A3E9") +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.34209 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict Off +Option Explicit On + +Imports System +Imports System.Diagnostics +Imports System.Windows +Imports System.Windows.Automation +Imports System.Windows.Controls +Imports System.Windows.Controls.Primitives +Imports System.Windows.Data +Imports System.Windows.Documents +Imports System.Windows.Forms.Integration +Imports System.Windows.Ink +Imports System.Windows.Input +Imports System.Windows.Markup +Imports System.Windows.Media +Imports System.Windows.Media.Animation +Imports System.Windows.Media.Effects +Imports System.Windows.Media.Imaging +Imports System.Windows.Media.Media3D +Imports System.Windows.Media.TextFormatting +Imports System.Windows.Navigation +Imports System.Windows.Shapes +Imports System.Windows.Shell + + +''' +'''LavoroInCorsoUC +''' + _ +Partial Public Class LavoroInCorsoUC + Inherits System.Windows.Controls.UserControl + Implements System.Windows.Markup.IComponentConnector + + + #ExternalSource("..\..\..\LavoroInCorsoUC.xaml",14) + _ + Friend WithEvents BackGroundGridLavoroInCorso As System.Windows.Controls.Grid + + #End ExternalSource + + Private _contentLoaded As Boolean + + ''' + '''InitializeComponent + ''' + _ + Public Sub InitializeComponent() Implements System.Windows.Markup.IComponentConnector.InitializeComponent + If _contentLoaded Then + Return + End If + _contentLoaded = true + Dim resourceLocater As System.Uri = New System.Uri("/OmagCUT;component/lavoroincorsouc.xaml", System.UriKind.Relative) + + #ExternalSource("..\..\..\LavoroInCorsoUC.xaml",1) + System.Windows.Application.LoadComponent(Me, resourceLocater) + + #End ExternalSource + End Sub + + _ + Sub System_Windows_Markup_IComponentConnector_Connect(ByVal connectionId As Integer, ByVal target As Object) Implements System.Windows.Markup.IComponentConnector.Connect + If (connectionId = 1) Then + + #ExternalSource("..\..\..\LavoroInCorsoUC.xaml",6) + AddHandler CType(target,LavoroInCorsoUC).Unloaded, New System.Windows.RoutedEventHandler(AddressOf Me.LavoroInCorsoUC_Unloaded) + + #End ExternalSource + + #ExternalSource("..\..\..\LavoroInCorsoUC.xaml",6) + AddHandler CType(target,LavoroInCorsoUC).Loaded, New System.Windows.RoutedEventHandler(AddressOf Me.LavoroInCorsoUC_Loaded) + + #End ExternalSource + Return + End If + If (connectionId = 2) Then + Me.BackGroundGridLavoroInCorso = CType(target,System.Windows.Controls.Grid) + Return + End If + Me._contentLoaded = true + End Sub +End Class + diff --git a/obj/x86/Debug/LavoroInCorsoUC.g.vb b/obj/x86/Debug/LavoroInCorsoUC.g.vb new file mode 100644 index 0000000..c5d15cb --- /dev/null +++ b/obj/x86/Debug/LavoroInCorsoUC.g.vb @@ -0,0 +1,100 @@ +#ExternalChecksum("..\..\..\LavoroInCorsoUC.xaml","{406ea660-64cf-4c82-b6f0-42d48172a799}","71E237E960394571F1D2E9C83692A3E9") +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.34209 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict Off +Option Explicit On + +Imports System +Imports System.Diagnostics +Imports System.Windows +Imports System.Windows.Automation +Imports System.Windows.Controls +Imports System.Windows.Controls.Primitives +Imports System.Windows.Data +Imports System.Windows.Documents +Imports System.Windows.Forms.Integration +Imports System.Windows.Ink +Imports System.Windows.Input +Imports System.Windows.Markup +Imports System.Windows.Media +Imports System.Windows.Media.Animation +Imports System.Windows.Media.Effects +Imports System.Windows.Media.Imaging +Imports System.Windows.Media.Media3D +Imports System.Windows.Media.TextFormatting +Imports System.Windows.Navigation +Imports System.Windows.Shapes +Imports System.Windows.Shell + + +''' +'''LavoroInCorsoUC +''' + _ +Partial Public Class LavoroInCorsoUC + Inherits System.Windows.Controls.UserControl + Implements System.Windows.Markup.IComponentConnector + + + #ExternalSource("..\..\..\LavoroInCorsoUC.xaml",14) + _ + Friend WithEvents BackGroundGridLavoroInCorso As System.Windows.Controls.Grid + + #End ExternalSource + + Private _contentLoaded As Boolean + + ''' + '''InitializeComponent + ''' + _ + Public Sub InitializeComponent() Implements System.Windows.Markup.IComponentConnector.InitializeComponent + If _contentLoaded Then + Return + End If + _contentLoaded = true + Dim resourceLocater As System.Uri = New System.Uri("/OmagCUT;component/lavoroincorsouc.xaml", System.UriKind.Relative) + + #ExternalSource("..\..\..\LavoroInCorsoUC.xaml",1) + System.Windows.Application.LoadComponent(Me, resourceLocater) + + #End ExternalSource + End Sub + + _ + Sub System_Windows_Markup_IComponentConnector_Connect(ByVal connectionId As Integer, ByVal target As Object) Implements System.Windows.Markup.IComponentConnector.Connect + If (connectionId = 1) Then + + #ExternalSource("..\..\..\LavoroInCorsoUC.xaml",6) + AddHandler CType(target,LavoroInCorsoUC).Unloaded, New System.Windows.RoutedEventHandler(AddressOf Me.LavoroInCorsoUC_Unloaded) + + #End ExternalSource + + #ExternalSource("..\..\..\LavoroInCorsoUC.xaml",6) + AddHandler CType(target,LavoroInCorsoUC).Loaded, New System.Windows.RoutedEventHandler(AddressOf Me.LavoroInCorsoUC_Loaded) + + #End ExternalSource + Return + End If + If (connectionId = 2) Then + Me.BackGroundGridLavoroInCorso = CType(target,System.Windows.Controls.Grid) + Return + End If + Me._contentLoaded = true + End Sub +End Class + diff --git a/obj/x86/Debug/MainWindow.baml b/obj/x86/Debug/MainWindow.baml new file mode 100644 index 0000000..44328e9 Binary files /dev/null and b/obj/x86/Debug/MainWindow.baml differ diff --git a/obj/x86/Debug/MainWindow.g.i.vb b/obj/x86/Debug/MainWindow.g.i.vb new file mode 100644 index 0000000..07ebb17 --- /dev/null +++ b/obj/x86/Debug/MainWindow.g.i.vb @@ -0,0 +1,256 @@ +#ExternalChecksum("..\..\..\MainWindow.xaml","{406ea660-64cf-4c82-b6f0-42d48172a799}","E5073DB6CC28CBA7046A3DF6DE3DBB4C") +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.34209 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict Off +Option Explicit On + +Imports OmagCUT +Imports System +Imports System.Diagnostics +Imports System.Windows +Imports System.Windows.Automation +Imports System.Windows.Controls +Imports System.Windows.Controls.Primitives +Imports System.Windows.Data +Imports System.Windows.Documents +Imports System.Windows.Forms.Integration +Imports System.Windows.Ink +Imports System.Windows.Input +Imports System.Windows.Markup +Imports System.Windows.Media +Imports System.Windows.Media.Animation +Imports System.Windows.Media.Effects +Imports System.Windows.Media.Imaging +Imports System.Windows.Media.Media3D +Imports System.Windows.Media.TextFormatting +Imports System.Windows.Navigation +Imports System.Windows.Shapes +Imports System.Windows.Shell + + +''' +'''MainWindow +''' + _ +Partial Public Class MainWindow + Inherits System.Windows.Window + Implements System.Windows.Markup.IComponentConnector + + + #ExternalSource("..\..\..\MainWindow.xaml",12) + _ + Friend WithEvents MainGrid As System.Windows.Controls.Grid + + #End ExternalSource + + + #ExternalSource("..\..\..\MainWindow.xaml",46) + _ + Friend WithEvents TabControl As System.Windows.Controls.TabControl + + #End ExternalSource + + + #ExternalSource("..\..\..\MainWindow.xaml",50) + _ + Friend WithEvents TabLavoroInCorso As System.Windows.Controls.TabItem + + #End ExternalSource + + + #ExternalSource("..\..\..\MainWindow.xaml",67) + _ + Friend WithEvents LavoroInCorsoUC As OmagCUT.LavoroInCorsoUC + + #End ExternalSource + + + #ExternalSource("..\..\..\MainWindow.xaml",74) + _ + Friend WithEvents TabTagliDiretti As System.Windows.Controls.TabItem + + #End ExternalSource + + + #ExternalSource("..\..\..\MainWindow.xaml",91) + _ + Friend WithEvents TagliDirettiUC As OmagCUT.TagliDirettiUC + + #End ExternalSource + + + #ExternalSource("..\..\..\MainWindow.xaml",98) + _ + Friend WithEvents TabTagliCad As System.Windows.Controls.TabItem + + #End ExternalSource + + + #ExternalSource("..\..\..\MainWindow.xaml",115) + _ + Friend WithEvents TagliCadContent As System.Windows.Controls.ContentPresenter + + #End ExternalSource + + + #ExternalSource("..\..\..\MainWindow.xaml",122) + _ + Friend WithEvents TabLavorazioneCornici As System.Windows.Controls.TabItem + + #End ExternalSource + + + #ExternalSource("..\..\..\MainWindow.xaml",139) + _ + Friend WithEvents CorniciUC As OmagCUT.CorniciUC + + #End ExternalSource + + + #ExternalSource("..\..\..\MainWindow.xaml",146) + _ + Friend WithEvents TabComandiMacchina As System.Windows.Controls.TabItem + + #End ExternalSource + + + #ExternalSource("..\..\..\MainWindow.xaml",171) + _ + Friend WithEvents TabAllarmi As System.Windows.Controls.TabItem + + #End ExternalSource + + + #ExternalSource("..\..\..\MainWindow.xaml",196) + _ + Friend WithEvents TabComandiConfigurazione As System.Windows.Controls.TabItem + + #End ExternalSource + + Private _contentLoaded As Boolean + + ''' + '''InitializeComponent + ''' + _ + Public Sub InitializeComponent() Implements System.Windows.Markup.IComponentConnector.InitializeComponent + If _contentLoaded Then + Return + End If + _contentLoaded = true + Dim resourceLocater As System.Uri = New System.Uri("/OmagCUT;component/mainwindow.xaml", System.UriKind.Relative) + + #ExternalSource("..\..\..\MainWindow.xaml",1) + System.Windows.Application.LoadComponent(Me, resourceLocater) + + #End ExternalSource + End Sub + + _ + Sub System_Windows_Markup_IComponentConnector_Connect(ByVal connectionId As Integer, ByVal target As Object) Implements System.Windows.Markup.IComponentConnector.Connect + If (connectionId = 1) Then + + #ExternalSource("..\..\..\MainWindow.xaml",5) + AddHandler CType(target,MainWindow).Loaded, New System.Windows.RoutedEventHandler(AddressOf Me.Window_Loaded) + + #End ExternalSource + + #ExternalSource("..\..\..\MainWindow.xaml",5) + AddHandler CType(target,MainWindow).Initialized, New System.EventHandler(AddressOf Me.Window_Initialized) + + #End ExternalSource + + #ExternalSource("..\..\..\MainWindow.xaml",5) + AddHandler CType(target,MainWindow).PreviewMouseDown, New System.Windows.Input.MouseButtonEventHandler(AddressOf Me.MainWindow_PreviewMouseDown) + + #End ExternalSource + + #ExternalSource("..\..\..\MainWindow.xaml",5) + AddHandler CType(target,MainWindow).KeyDown, New System.Windows.Input.KeyEventHandler(AddressOf Me.MainWindow_KeyDown) + + #End ExternalSource + Return + End If + If (connectionId = 2) Then + Me.MainGrid = CType(target,System.Windows.Controls.Grid) + Return + End If + If (connectionId = 3) Then + + #ExternalSource("..\..\..\MainWindow.xaml",37) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.ExitBtnMW_Click) + + #End ExternalSource + Return + End If + If (connectionId = 4) Then + Me.TabControl = CType(target,System.Windows.Controls.TabControl) + + #ExternalSource("..\..\..\MainWindow.xaml",47) + AddHandler Me.TabControl.SelectionChanged, New System.Windows.Controls.SelectionChangedEventHandler(AddressOf Me.TabControl_SelectionChanged) + + #End ExternalSource + Return + End If + If (connectionId = 5) Then + Me.TabLavoroInCorso = CType(target,System.Windows.Controls.TabItem) + Return + End If + If (connectionId = 6) Then + Me.LavoroInCorsoUC = CType(target,OmagCUT.LavoroInCorsoUC) + Return + End If + If (connectionId = 7) Then + Me.TabTagliDiretti = CType(target,System.Windows.Controls.TabItem) + Return + End If + If (connectionId = 8) Then + Me.TagliDirettiUC = CType(target,OmagCUT.TagliDirettiUC) + Return + End If + If (connectionId = 9) Then + Me.TabTagliCad = CType(target,System.Windows.Controls.TabItem) + Return + End If + If (connectionId = 10) Then + Me.TagliCadContent = CType(target,System.Windows.Controls.ContentPresenter) + Return + End If + If (connectionId = 11) Then + Me.TabLavorazioneCornici = CType(target,System.Windows.Controls.TabItem) + Return + End If + If (connectionId = 12) Then + Me.CorniciUC = CType(target,OmagCUT.CorniciUC) + Return + End If + If (connectionId = 13) Then + Me.TabComandiMacchina = CType(target,System.Windows.Controls.TabItem) + Return + End If + If (connectionId = 14) Then + Me.TabAllarmi = CType(target,System.Windows.Controls.TabItem) + Return + End If + If (connectionId = 15) Then + Me.TabComandiConfigurazione = CType(target,System.Windows.Controls.TabItem) + Return + End If + Me._contentLoaded = true + End Sub +End Class + diff --git a/obj/x86/Debug/MainWindow.g.vb b/obj/x86/Debug/MainWindow.g.vb new file mode 100644 index 0000000..07ebb17 --- /dev/null +++ b/obj/x86/Debug/MainWindow.g.vb @@ -0,0 +1,256 @@ +#ExternalChecksum("..\..\..\MainWindow.xaml","{406ea660-64cf-4c82-b6f0-42d48172a799}","E5073DB6CC28CBA7046A3DF6DE3DBB4C") +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.34209 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict Off +Option Explicit On + +Imports OmagCUT +Imports System +Imports System.Diagnostics +Imports System.Windows +Imports System.Windows.Automation +Imports System.Windows.Controls +Imports System.Windows.Controls.Primitives +Imports System.Windows.Data +Imports System.Windows.Documents +Imports System.Windows.Forms.Integration +Imports System.Windows.Ink +Imports System.Windows.Input +Imports System.Windows.Markup +Imports System.Windows.Media +Imports System.Windows.Media.Animation +Imports System.Windows.Media.Effects +Imports System.Windows.Media.Imaging +Imports System.Windows.Media.Media3D +Imports System.Windows.Media.TextFormatting +Imports System.Windows.Navigation +Imports System.Windows.Shapes +Imports System.Windows.Shell + + +''' +'''MainWindow +''' + _ +Partial Public Class MainWindow + Inherits System.Windows.Window + Implements System.Windows.Markup.IComponentConnector + + + #ExternalSource("..\..\..\MainWindow.xaml",12) + _ + Friend WithEvents MainGrid As System.Windows.Controls.Grid + + #End ExternalSource + + + #ExternalSource("..\..\..\MainWindow.xaml",46) + _ + Friend WithEvents TabControl As System.Windows.Controls.TabControl + + #End ExternalSource + + + #ExternalSource("..\..\..\MainWindow.xaml",50) + _ + Friend WithEvents TabLavoroInCorso As System.Windows.Controls.TabItem + + #End ExternalSource + + + #ExternalSource("..\..\..\MainWindow.xaml",67) + _ + Friend WithEvents LavoroInCorsoUC As OmagCUT.LavoroInCorsoUC + + #End ExternalSource + + + #ExternalSource("..\..\..\MainWindow.xaml",74) + _ + Friend WithEvents TabTagliDiretti As System.Windows.Controls.TabItem + + #End ExternalSource + + + #ExternalSource("..\..\..\MainWindow.xaml",91) + _ + Friend WithEvents TagliDirettiUC As OmagCUT.TagliDirettiUC + + #End ExternalSource + + + #ExternalSource("..\..\..\MainWindow.xaml",98) + _ + Friend WithEvents TabTagliCad As System.Windows.Controls.TabItem + + #End ExternalSource + + + #ExternalSource("..\..\..\MainWindow.xaml",115) + _ + Friend WithEvents TagliCadContent As System.Windows.Controls.ContentPresenter + + #End ExternalSource + + + #ExternalSource("..\..\..\MainWindow.xaml",122) + _ + Friend WithEvents TabLavorazioneCornici As System.Windows.Controls.TabItem + + #End ExternalSource + + + #ExternalSource("..\..\..\MainWindow.xaml",139) + _ + Friend WithEvents CorniciUC As OmagCUT.CorniciUC + + #End ExternalSource + + + #ExternalSource("..\..\..\MainWindow.xaml",146) + _ + Friend WithEvents TabComandiMacchina As System.Windows.Controls.TabItem + + #End ExternalSource + + + #ExternalSource("..\..\..\MainWindow.xaml",171) + _ + Friend WithEvents TabAllarmi As System.Windows.Controls.TabItem + + #End ExternalSource + + + #ExternalSource("..\..\..\MainWindow.xaml",196) + _ + Friend WithEvents TabComandiConfigurazione As System.Windows.Controls.TabItem + + #End ExternalSource + + Private _contentLoaded As Boolean + + ''' + '''InitializeComponent + ''' + _ + Public Sub InitializeComponent() Implements System.Windows.Markup.IComponentConnector.InitializeComponent + If _contentLoaded Then + Return + End If + _contentLoaded = true + Dim resourceLocater As System.Uri = New System.Uri("/OmagCUT;component/mainwindow.xaml", System.UriKind.Relative) + + #ExternalSource("..\..\..\MainWindow.xaml",1) + System.Windows.Application.LoadComponent(Me, resourceLocater) + + #End ExternalSource + End Sub + + _ + Sub System_Windows_Markup_IComponentConnector_Connect(ByVal connectionId As Integer, ByVal target As Object) Implements System.Windows.Markup.IComponentConnector.Connect + If (connectionId = 1) Then + + #ExternalSource("..\..\..\MainWindow.xaml",5) + AddHandler CType(target,MainWindow).Loaded, New System.Windows.RoutedEventHandler(AddressOf Me.Window_Loaded) + + #End ExternalSource + + #ExternalSource("..\..\..\MainWindow.xaml",5) + AddHandler CType(target,MainWindow).Initialized, New System.EventHandler(AddressOf Me.Window_Initialized) + + #End ExternalSource + + #ExternalSource("..\..\..\MainWindow.xaml",5) + AddHandler CType(target,MainWindow).PreviewMouseDown, New System.Windows.Input.MouseButtonEventHandler(AddressOf Me.MainWindow_PreviewMouseDown) + + #End ExternalSource + + #ExternalSource("..\..\..\MainWindow.xaml",5) + AddHandler CType(target,MainWindow).KeyDown, New System.Windows.Input.KeyEventHandler(AddressOf Me.MainWindow_KeyDown) + + #End ExternalSource + Return + End If + If (connectionId = 2) Then + Me.MainGrid = CType(target,System.Windows.Controls.Grid) + Return + End If + If (connectionId = 3) Then + + #ExternalSource("..\..\..\MainWindow.xaml",37) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.ExitBtnMW_Click) + + #End ExternalSource + Return + End If + If (connectionId = 4) Then + Me.TabControl = CType(target,System.Windows.Controls.TabControl) + + #ExternalSource("..\..\..\MainWindow.xaml",47) + AddHandler Me.TabControl.SelectionChanged, New System.Windows.Controls.SelectionChangedEventHandler(AddressOf Me.TabControl_SelectionChanged) + + #End ExternalSource + Return + End If + If (connectionId = 5) Then + Me.TabLavoroInCorso = CType(target,System.Windows.Controls.TabItem) + Return + End If + If (connectionId = 6) Then + Me.LavoroInCorsoUC = CType(target,OmagCUT.LavoroInCorsoUC) + Return + End If + If (connectionId = 7) Then + Me.TabTagliDiretti = CType(target,System.Windows.Controls.TabItem) + Return + End If + If (connectionId = 8) Then + Me.TagliDirettiUC = CType(target,OmagCUT.TagliDirettiUC) + Return + End If + If (connectionId = 9) Then + Me.TabTagliCad = CType(target,System.Windows.Controls.TabItem) + Return + End If + If (connectionId = 10) Then + Me.TagliCadContent = CType(target,System.Windows.Controls.ContentPresenter) + Return + End If + If (connectionId = 11) Then + Me.TabLavorazioneCornici = CType(target,System.Windows.Controls.TabItem) + Return + End If + If (connectionId = 12) Then + Me.CorniciUC = CType(target,OmagCUT.CorniciUC) + Return + End If + If (connectionId = 13) Then + Me.TabComandiMacchina = CType(target,System.Windows.Controls.TabItem) + Return + End If + If (connectionId = 14) Then + Me.TabAllarmi = CType(target,System.Windows.Controls.TabItem) + Return + End If + If (connectionId = 15) Then + Me.TabComandiConfigurazione = CType(target,System.Windows.Controls.TabItem) + Return + End If + Me._contentLoaded = true + End Sub +End Class + diff --git a/obj/x86/Debug/NumericKeyboadUC.g.i.vb b/obj/x86/Debug/NumericKeyboadUC.g.i.vb new file mode 100644 index 0000000..38ba2df --- /dev/null +++ b/obj/x86/Debug/NumericKeyboadUC.g.i.vb @@ -0,0 +1,76 @@ +#ExternalChecksum("..\..\..\NumericKeyboadUC.xaml","{406ea660-64cf-4c82-b6f0-42d48172a799}","8221F7E3B754C620E0BA9DA9400DAC10") +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.34209 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict Off +Option Explicit On + +Imports System +Imports System.Diagnostics +Imports System.Windows +Imports System.Windows.Automation +Imports System.Windows.Controls +Imports System.Windows.Controls.Primitives +Imports System.Windows.Data +Imports System.Windows.Documents +Imports System.Windows.Forms.Integration +Imports System.Windows.Ink +Imports System.Windows.Input +Imports System.Windows.Markup +Imports System.Windows.Media +Imports System.Windows.Media.Animation +Imports System.Windows.Media.Effects +Imports System.Windows.Media.Imaging +Imports System.Windows.Media.Media3D +Imports System.Windows.Media.TextFormatting +Imports System.Windows.Navigation +Imports System.Windows.Shapes +Imports System.Windows.Shell + + +''' +'''NumericKeyboadWD +''' + _ +Partial Public Class NumericKeyboadWD + Inherits System.Windows.Window + Implements System.Windows.Markup.IComponentConnector + + Private _contentLoaded As Boolean + + ''' + '''InitializeComponent + ''' + _ + Public Sub InitializeComponent() Implements System.Windows.Markup.IComponentConnector.InitializeComponent + If _contentLoaded Then + Return + End If + _contentLoaded = true + Dim resourceLocater As System.Uri = New System.Uri("/OmagCUT;component/numerickeyboaduc.xaml", System.UriKind.Relative) + + #ExternalSource("..\..\..\NumericKeyboadUC.xaml",1) + System.Windows.Application.LoadComponent(Me, resourceLocater) + + #End ExternalSource + End Sub + + _ + Sub System_Windows_Markup_IComponentConnector_Connect(ByVal connectionId As Integer, ByVal target As Object) Implements System.Windows.Markup.IComponentConnector.Connect + Me._contentLoaded = true + End Sub +End Class + diff --git a/obj/x86/Debug/NumericKeyboardUC.g.i.vb b/obj/x86/Debug/NumericKeyboardUC.g.i.vb new file mode 100644 index 0000000..3455fd4 --- /dev/null +++ b/obj/x86/Debug/NumericKeyboardUC.g.i.vb @@ -0,0 +1,84 @@ +#ExternalChecksum("..\..\..\NumericKeyboardUC.xaml","{406ea660-64cf-4c82-b6f0-42d48172a799}","8B79F214505861335D8D7C738DA0BD0B") +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.34209 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict Off +Option Explicit On + +Imports System +Imports System.Diagnostics +Imports System.Windows +Imports System.Windows.Automation +Imports System.Windows.Controls +Imports System.Windows.Controls.Primitives +Imports System.Windows.Data +Imports System.Windows.Documents +Imports System.Windows.Forms.Integration +Imports System.Windows.Ink +Imports System.Windows.Input +Imports System.Windows.Markup +Imports System.Windows.Media +Imports System.Windows.Media.Animation +Imports System.Windows.Media.Effects +Imports System.Windows.Media.Imaging +Imports System.Windows.Media.Media3D +Imports System.Windows.Media.TextFormatting +Imports System.Windows.Navigation +Imports System.Windows.Shapes +Imports System.Windows.Shell + + +''' +'''NumericKeyboardUC +''' + _ +Partial Public Class NumericKeyboardUC + Inherits System.Windows.Controls.UserControl + Implements System.Windows.Markup.IComponentConnector + + Private _contentLoaded As Boolean + + ''' + '''InitializeComponent + ''' + _ + Public Sub InitializeComponent() Implements System.Windows.Markup.IComponentConnector.InitializeComponent + If _contentLoaded Then + Return + End If + _contentLoaded = true + Dim resourceLocater As System.Uri = New System.Uri("/OmagCUT;component/numerickeyboarduc.xaml", System.UriKind.Relative) + + #ExternalSource("..\..\..\NumericKeyboardUC.xaml",1) + System.Windows.Application.LoadComponent(Me, resourceLocater) + + #End ExternalSource + End Sub + + _ + Sub System_Windows_Markup_IComponentConnector_Connect(ByVal connectionId As Integer, ByVal target As Object) Implements System.Windows.Markup.IComponentConnector.Connect + If (connectionId = 1) Then + + #ExternalSource("..\..\..\NumericKeyboardUC.xaml",49) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.ExitBtnUC_Click) + + #End ExternalSource + Return + End If + Me._contentLoaded = true + End Sub +End Class + diff --git a/obj/x86/Debug/NumericKeyboardWD.baml b/obj/x86/Debug/NumericKeyboardWD.baml new file mode 100644 index 0000000..53b4763 Binary files /dev/null and b/obj/x86/Debug/NumericKeyboardWD.baml differ diff --git a/obj/x86/Debug/NumericKeyboardWD.g.vb b/obj/x86/Debug/NumericKeyboardWD.g.vb new file mode 100644 index 0000000..37031c2 --- /dev/null +++ b/obj/x86/Debug/NumericKeyboardWD.g.vb @@ -0,0 +1,252 @@ +#ExternalChecksum("..\..\..\NumericKeyboardWD.xaml","{406ea660-64cf-4c82-b6f0-42d48172a799}","F5823A8BBA05EFFC3BBB9577A6E4A5A2") +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.34209 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict Off +Option Explicit On + +Imports System +Imports System.Diagnostics +Imports System.Windows +Imports System.Windows.Automation +Imports System.Windows.Controls +Imports System.Windows.Controls.Primitives +Imports System.Windows.Data +Imports System.Windows.Documents +Imports System.Windows.Forms.Integration +Imports System.Windows.Ink +Imports System.Windows.Input +Imports System.Windows.Markup +Imports System.Windows.Media +Imports System.Windows.Media.Animation +Imports System.Windows.Media.Effects +Imports System.Windows.Media.Imaging +Imports System.Windows.Media.Media3D +Imports System.Windows.Media.TextFormatting +Imports System.Windows.Navigation +Imports System.Windows.Shapes +Imports System.Windows.Shell + + +''' +'''NumericKeyboardWD +''' + _ +Partial Public Class NumericKeyboardWD + Inherits System.Windows.Window + Implements System.Windows.Markup.IComponentConnector + + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",44) + _ + Friend WithEvents NumericKeyboardWDTitle As System.Windows.Controls.TextBlock + + #End ExternalSource + + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",46) + _ + Friend WithEvents NumericKeyboardWDTextBox As System.Windows.Controls.TextBox + + #End ExternalSource + + Private _contentLoaded As Boolean + + ''' + '''InitializeComponent + ''' + _ + Public Sub InitializeComponent() Implements System.Windows.Markup.IComponentConnector.InitializeComponent + If _contentLoaded Then + Return + End If + _contentLoaded = true + Dim resourceLocater As System.Uri = New System.Uri("/OmagCUT;component/numerickeyboardwd.xaml", System.UriKind.Relative) + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",1) + System.Windows.Application.LoadComponent(Me, resourceLocater) + + #End ExternalSource + End Sub + + _ + Sub System_Windows_Markup_IComponentConnector_Connect(ByVal connectionId As Integer, ByVal target As Object) Implements System.Windows.Markup.IComponentConnector.Connect + If (connectionId = 1) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",4) + AddHandler CType(target,NumericKeyboardWD).Unloaded, New System.Windows.RoutedEventHandler(AddressOf Me.NumericKeyboardWD_Unloaded) + + #End ExternalSource + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",4) + AddHandler CType(target,NumericKeyboardWD).KeyDown, New System.Windows.Input.KeyEventHandler(AddressOf Me.NumericKeyboardWD_KeyDown) + + #End ExternalSource + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",4) + AddHandler CType(target,NumericKeyboardWD).IsVisibleChanged, New System.Windows.DependencyPropertyChangedEventHandler(AddressOf Me.NumericKeyboardWD_IsVisibleChanged) + + #End ExternalSource + Return + End If + If (connectionId = 2) Then + Me.NumericKeyboardWDTitle = CType(target,System.Windows.Controls.TextBlock) + Return + End If + If (connectionId = 3) Then + Me.NumericKeyboardWDTextBox = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 4) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",51) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.BtnPlusWD_Click) + + #End ExternalSource + Return + End If + If (connectionId = 5) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",52) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.BtnDeleteWD_Click) + + #End ExternalSource + Return + End If + If (connectionId = 6) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",53) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.Btn4WD_Click) + + #End ExternalSource + Return + End If + If (connectionId = 7) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",54) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.Btn5WD_Click) + + #End ExternalSource + Return + End If + If (connectionId = 8) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",55) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.Btn6WD_Click) + + #End ExternalSource + Return + End If + If (connectionId = 9) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",56) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.BtnMinusWD_Click) + + #End ExternalSource + Return + End If + If (connectionId = 10) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",57) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.BtnCancelWD_Click) + + #End ExternalSource + Return + End If + If (connectionId = 11) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",58) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.Btn1WD_Click) + + #End ExternalSource + Return + End If + If (connectionId = 12) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",59) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.Btn2WD_Click) + + #End ExternalSource + Return + End If + If (connectionId = 13) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",60) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.Btn3WD_Click) + + #End ExternalSource + Return + End If + If (connectionId = 14) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",61) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.BtnMultiplicationWD_Click) + + #End ExternalSource + Return + End If + If (connectionId = 15) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",62) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.BtnExitWD_Click) + + #End ExternalSource + Return + End If + If (connectionId = 16) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",63) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.Btn0WD_Click) + + #End ExternalSource + Return + End If + If (connectionId = 17) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",64) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.BtnDotWD_Click) + + #End ExternalSource + Return + End If + If (connectionId = 18) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",65) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.BtnEvaluateWD_Click) + + #End ExternalSource + Return + End If + If (connectionId = 19) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",66) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.BtnDivisionWD_Click) + + #End ExternalSource + Return + End If + If (connectionId = 20) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",67) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.BtnApplyWD_Click) + + #End ExternalSource + Return + End If + Me._contentLoaded = true + End Sub +End Class + diff --git a/obj/x86/Debug/NumericKeyboardWd.g.i.vb b/obj/x86/Debug/NumericKeyboardWd.g.i.vb new file mode 100644 index 0000000..37031c2 --- /dev/null +++ b/obj/x86/Debug/NumericKeyboardWd.g.i.vb @@ -0,0 +1,252 @@ +#ExternalChecksum("..\..\..\NumericKeyboardWD.xaml","{406ea660-64cf-4c82-b6f0-42d48172a799}","F5823A8BBA05EFFC3BBB9577A6E4A5A2") +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.34209 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict Off +Option Explicit On + +Imports System +Imports System.Diagnostics +Imports System.Windows +Imports System.Windows.Automation +Imports System.Windows.Controls +Imports System.Windows.Controls.Primitives +Imports System.Windows.Data +Imports System.Windows.Documents +Imports System.Windows.Forms.Integration +Imports System.Windows.Ink +Imports System.Windows.Input +Imports System.Windows.Markup +Imports System.Windows.Media +Imports System.Windows.Media.Animation +Imports System.Windows.Media.Effects +Imports System.Windows.Media.Imaging +Imports System.Windows.Media.Media3D +Imports System.Windows.Media.TextFormatting +Imports System.Windows.Navigation +Imports System.Windows.Shapes +Imports System.Windows.Shell + + +''' +'''NumericKeyboardWD +''' + _ +Partial Public Class NumericKeyboardWD + Inherits System.Windows.Window + Implements System.Windows.Markup.IComponentConnector + + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",44) + _ + Friend WithEvents NumericKeyboardWDTitle As System.Windows.Controls.TextBlock + + #End ExternalSource + + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",46) + _ + Friend WithEvents NumericKeyboardWDTextBox As System.Windows.Controls.TextBox + + #End ExternalSource + + Private _contentLoaded As Boolean + + ''' + '''InitializeComponent + ''' + _ + Public Sub InitializeComponent() Implements System.Windows.Markup.IComponentConnector.InitializeComponent + If _contentLoaded Then + Return + End If + _contentLoaded = true + Dim resourceLocater As System.Uri = New System.Uri("/OmagCUT;component/numerickeyboardwd.xaml", System.UriKind.Relative) + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",1) + System.Windows.Application.LoadComponent(Me, resourceLocater) + + #End ExternalSource + End Sub + + _ + Sub System_Windows_Markup_IComponentConnector_Connect(ByVal connectionId As Integer, ByVal target As Object) Implements System.Windows.Markup.IComponentConnector.Connect + If (connectionId = 1) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",4) + AddHandler CType(target,NumericKeyboardWD).Unloaded, New System.Windows.RoutedEventHandler(AddressOf Me.NumericKeyboardWD_Unloaded) + + #End ExternalSource + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",4) + AddHandler CType(target,NumericKeyboardWD).KeyDown, New System.Windows.Input.KeyEventHandler(AddressOf Me.NumericKeyboardWD_KeyDown) + + #End ExternalSource + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",4) + AddHandler CType(target,NumericKeyboardWD).IsVisibleChanged, New System.Windows.DependencyPropertyChangedEventHandler(AddressOf Me.NumericKeyboardWD_IsVisibleChanged) + + #End ExternalSource + Return + End If + If (connectionId = 2) Then + Me.NumericKeyboardWDTitle = CType(target,System.Windows.Controls.TextBlock) + Return + End If + If (connectionId = 3) Then + Me.NumericKeyboardWDTextBox = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 4) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",51) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.BtnPlusWD_Click) + + #End ExternalSource + Return + End If + If (connectionId = 5) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",52) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.BtnDeleteWD_Click) + + #End ExternalSource + Return + End If + If (connectionId = 6) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",53) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.Btn4WD_Click) + + #End ExternalSource + Return + End If + If (connectionId = 7) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",54) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.Btn5WD_Click) + + #End ExternalSource + Return + End If + If (connectionId = 8) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",55) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.Btn6WD_Click) + + #End ExternalSource + Return + End If + If (connectionId = 9) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",56) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.BtnMinusWD_Click) + + #End ExternalSource + Return + End If + If (connectionId = 10) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",57) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.BtnCancelWD_Click) + + #End ExternalSource + Return + End If + If (connectionId = 11) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",58) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.Btn1WD_Click) + + #End ExternalSource + Return + End If + If (connectionId = 12) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",59) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.Btn2WD_Click) + + #End ExternalSource + Return + End If + If (connectionId = 13) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",60) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.Btn3WD_Click) + + #End ExternalSource + Return + End If + If (connectionId = 14) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",61) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.BtnMultiplicationWD_Click) + + #End ExternalSource + Return + End If + If (connectionId = 15) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",62) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.BtnExitWD_Click) + + #End ExternalSource + Return + End If + If (connectionId = 16) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",63) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.Btn0WD_Click) + + #End ExternalSource + Return + End If + If (connectionId = 17) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",64) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.BtnDotWD_Click) + + #End ExternalSource + Return + End If + If (connectionId = 18) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",65) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.BtnEvaluateWD_Click) + + #End ExternalSource + Return + End If + If (connectionId = 19) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",66) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.BtnDivisionWD_Click) + + #End ExternalSource + Return + End If + If (connectionId = 20) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",67) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.BtnApplyWD_Click) + + #End ExternalSource + Return + End If + Me._contentLoaded = true + End Sub +End Class + diff --git a/obj/x86/Debug/OmagCUT.Resources.resources b/obj/x86/Debug/OmagCUT.Resources.resources new file mode 100644 index 0000000..6c05a97 Binary files /dev/null and b/obj/x86/Debug/OmagCUT.Resources.resources differ diff --git a/obj/x86/Debug/OmagCUT.exe b/obj/x86/Debug/OmagCUT.exe new file mode 100644 index 0000000..839ae9e Binary files /dev/null and b/obj/x86/Debug/OmagCUT.exe differ diff --git a/obj/x86/Debug/OmagCUT.g.resources b/obj/x86/Debug/OmagCUT.g.resources new file mode 100644 index 0000000..5aa23b8 Binary files /dev/null and b/obj/x86/Debug/OmagCUT.g.resources differ diff --git a/obj/x86/Debug/OmagCUT.pdb b/obj/x86/Debug/OmagCUT.pdb new file mode 100644 index 0000000..a9e25c2 Binary files /dev/null and b/obj/x86/Debug/OmagCUT.pdb differ diff --git a/obj/x86/Debug/OmagCUT.vbproj.FileListAbsolute.txt b/obj/x86/Debug/OmagCUT.vbproj.FileListAbsolute.txt new file mode 100644 index 0000000..4009b8e --- /dev/null +++ b/obj/x86/Debug/OmagCUT.vbproj.FileListAbsolute.txt @@ -0,0 +1,40 @@ +C:\EgtDev\OmagCUT\bin\x86\Debug\OmagCUT.exe.config +C:\EgtDev\OmagCUT\bin\x86\Debug\OmagCUT.exe +C:\EgtDev\OmagCUT\bin\x86\Debug\OmagCUT.pdb +C:\EgtDev\OmagCUT\bin\x86\Debug\OmagCUT.xml +C:\EgtDev\OmagCUT\bin\x86\Debug\EgtUILib.dll +C:\EgtDev\OmagCUT\obj\x86\Debug\BarLavoraUC.baml +C:\EgtDev\OmagCUT\obj\x86\Debug\BarNestingUC.baml +C:\EgtDev\OmagCUT\obj\x86\Debug\ComponentiUC.baml +C:\EgtDev\OmagCUT\obj\x86\Debug\CorniciUC.baml +C:\EgtDev\OmagCUT\obj\x86\Debug\FlatPartsImportUC.baml +C:\EgtDev\OmagCUT\obj\x86\Debug\LavoroInCorsoUC.baml +C:\EgtDev\OmagCUT\obj\x86\Debug\OmagCUTDictionary.baml +C:\EgtDev\OmagCUT\obj\x86\Debug\TagliCadUC.baml +C:\EgtDev\OmagCUT\obj\x86\Debug\TagliDirettiUC.baml +C:\EgtDev\OmagCUT\obj\x86\Debug\BarLavoraUC.g.vb +C:\EgtDev\OmagCUT\obj\x86\Debug\BarNestingUC.g.vb +C:\EgtDev\OmagCUT\obj\x86\Debug\ComponentiUC.g.vb +C:\EgtDev\OmagCUT\obj\x86\Debug\CorniciUC.g.vb +C:\EgtDev\OmagCUT\obj\x86\Debug\FlatPartsImportUC.g.vb +C:\EgtDev\OmagCUT\obj\x86\Debug\LavoroInCorsoUC.g.vb +C:\EgtDev\OmagCUT\obj\x86\Debug\MainWindow.g.vb +C:\EgtDev\OmagCUT\obj\x86\Debug\TagliCadUC.g.vb +C:\EgtDev\OmagCUT\obj\x86\Debug\TagliDirettiUC.g.vb +C:\EgtDev\OmagCUT\obj\x86\Debug\Application.g.vb +C:\EgtDev\OmagCUT\obj\x86\Debug\GeneratedInternalTypeHelper.g.vb +C:\EgtDev\OmagCUT\obj\x86\Debug\OmagCUT_MarkupCompile.cache +C:\EgtDev\OmagCUT\obj\x86\Debug\OmagCUT_MarkupCompile.lref +C:\EgtDev\OmagCUT\obj\x86\Debug\MainWindow.baml +C:\EgtDev\OmagCUT\obj\x86\Debug\OmagCUT.g.resources +C:\EgtDev\OmagCUT\obj\x86\Debug\OmagCUT.Resources.resources +C:\EgtDev\OmagCUT\obj\x86\Debug\OmagCUT.vbproj.GenerateResource.Cache +C:\EgtDev\OmagCUT\obj\x86\Debug\OmagCUT.exe +C:\EgtDev\OmagCUT\obj\x86\Debug\OmagCUT.xml +C:\EgtDev\OmagCUT\obj\x86\Debug\OmagCUT.pdb +C:\EgtDev\OmagCUT\obj\x86\Debug\GrezzoUC.baml +C:\EgtDev\OmagCUT\obj\x86\Debug\GrezzoUC.g.vb +C:\EgtDev\OmagCUT\obj\x86\Debug\NumericKeyboardWD.baml +C:\EgtDev\OmagCUT\obj\x86\Debug\NumericKeyboardWD.g.vb +C:\EgtDev\OmagCUT\obj\x86\Debug\OmagCUTDictionary.g.vb +C:\EgtDev\OmagCUT\obj\x86\Debug\OmagCUT.vbprojResolveAssemblyReference.cache diff --git a/obj/x86/Debug/OmagCUT.vbproj.GenerateResource.Cache b/obj/x86/Debug/OmagCUT.vbproj.GenerateResource.Cache new file mode 100644 index 0000000..451699b Binary files /dev/null and b/obj/x86/Debug/OmagCUT.vbproj.GenerateResource.Cache differ diff --git a/obj/x86/Debug/OmagCUT.vbprojResolveAssemblyReference.cache b/obj/x86/Debug/OmagCUT.vbprojResolveAssemblyReference.cache new file mode 100644 index 0000000..aaa4493 Binary files /dev/null and b/obj/x86/Debug/OmagCUT.vbprojResolveAssemblyReference.cache differ diff --git a/obj/x86/Debug/OmagCUT.xml b/obj/x86/Debug/OmagCUT.xml new file mode 100644 index 0000000..50897d4 --- /dev/null +++ b/obj/x86/Debug/OmagCUT.xml @@ -0,0 +1,178 @@ + + + + +OmagCUT + + + + + +InitializeComponent + + + +NumericKeyboardWD + + + +InitializeComponent + + + +TagliCadUC + + + +InitializeComponent + + + +ComponentiUC + + + +InitializeComponent + + + +MainWindow + + + +CreateInstance + + + +GetPropertyValue + + + +SetPropertyValue + + + +CreateDelegate + + + +AddEventHandler + + + +GeneratedInternalTypeHelper + + + +InitializeComponent + + + +FlatPartsImportUC + + + +InitializeComponent + + + +OmagCUTDictionary + + + +InitializeComponent + + + +GrezzoUC + + + +InitializeComponent + + + +BarNestingUC + + + +InitializeComponent + + + +CorniciUC + + + +InitializeComponent + + + +TagliDirettiUC + + + +InitializeComponent + + + +BarLavoraUC + + + +InitializeComponent + + + +LavoroInCorsoUC + + + +Application Entry Point. + + + +Application + + + + Returns the application object for the running application + + + + Returns information about the host computer. + + + + Returns information for the current user. If you wish to run the application with the current + Windows user credentials, call My.User.InitializeWithWindowsUser(). + + + + Returns the application log. The listeners can be configured by the application's configuration file. + + + + Returns the collection of Windows defined in the project. + + + + Module used to define the properties that are available in the My Namespace for WPF + + + + + Returns the cached ResourceManager instance used by this class. + + + + Overrides the current thread's CurrentUICulture property for all + resource lookups using this strongly typed resource class. + + + + A strongly-typed resource class, for looking up localized strings, etc. + + + + \ No newline at end of file diff --git a/obj/x86/Debug/OmagCUTDictionary.baml b/obj/x86/Debug/OmagCUTDictionary.baml new file mode 100644 index 0000000..806fc41 Binary files /dev/null and b/obj/x86/Debug/OmagCUTDictionary.baml differ diff --git a/obj/x86/Debug/OmagCUTDictionary.g.i.vb b/obj/x86/Debug/OmagCUTDictionary.g.i.vb new file mode 100644 index 0000000..8397c9c --- /dev/null +++ b/obj/x86/Debug/OmagCUTDictionary.g.i.vb @@ -0,0 +1,96 @@ +#ExternalChecksum("..\..\..\OmagCUTDictionary.xaml","{406ea660-64cf-4c82-b6f0-42d48172a799}","A73AE24B633F0AD0730C6E2D884010FB") +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.34209 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict Off +Option Explicit On + +Imports System +Imports System.Diagnostics +Imports System.Windows +Imports System.Windows.Automation +Imports System.Windows.Controls +Imports System.Windows.Controls.Primitives +Imports System.Windows.Data +Imports System.Windows.Documents +Imports System.Windows.Forms.Integration +Imports System.Windows.Ink +Imports System.Windows.Input +Imports System.Windows.Markup +Imports System.Windows.Media +Imports System.Windows.Media.Animation +Imports System.Windows.Media.Effects +Imports System.Windows.Media.Imaging +Imports System.Windows.Media.Media3D +Imports System.Windows.Media.TextFormatting +Imports System.Windows.Navigation +Imports System.Windows.Shapes +Imports System.Windows.Shell + + +''' +'''OmagCUTDictionary +''' + _ +Partial Public Class OmagCUTDictionary + Inherits System.Windows.ResourceDictionary + Implements System.Windows.Markup.IComponentConnector, System.Windows.Markup.IStyleConnector + + Private _contentLoaded As Boolean + + ''' + '''InitializeComponent + ''' + _ + Public Sub InitializeComponent() Implements System.Windows.Markup.IComponentConnector.InitializeComponent + If _contentLoaded Then + Return + End If + _contentLoaded = true + Dim resourceLocater As System.Uri = New System.Uri("/OmagCUT;component/omagcutdictionary.xaml", System.UriKind.Relative) + + #ExternalSource("..\..\..\OmagCUTDictionary.xaml",1) + System.Windows.Application.LoadComponent(Me, resourceLocater) + + #End ExternalSource + End Sub + + _ + Sub System_Windows_Markup_IComponentConnector_Connect(ByVal connectionId As Integer, ByVal target As Object) Implements System.Windows.Markup.IComponentConnector.Connect + Me._contentLoaded = true + End Sub + + _ + Sub System_Windows_Markup_IStyleConnector_Connect(ByVal connectionId As Integer, ByVal target As Object) Implements System.Windows.Markup.IStyleConnector.Connect + Dim eventSetter As System.Windows.EventSetter + If (connectionId = 1) Then + eventSetter = New System.Windows.EventSetter() + eventSetter.Event = System.Windows.UIElement.PreviewMouseDownEvent + + #ExternalSource("..\..\..\OmagCUTDictionary.xaml",282) + eventSetter.Handler = New System.Windows.Input.MouseButtonEventHandler(AddressOf Me.PreviewMouseDown) + + #End ExternalSource + CType(target,System.Windows.Style).Setters.Add(eventSetter) + End If + End Sub +End Class + diff --git a/obj/x86/Debug/OmagCUTDictionary.g.vb b/obj/x86/Debug/OmagCUTDictionary.g.vb new file mode 100644 index 0000000..8397c9c --- /dev/null +++ b/obj/x86/Debug/OmagCUTDictionary.g.vb @@ -0,0 +1,96 @@ +#ExternalChecksum("..\..\..\OmagCUTDictionary.xaml","{406ea660-64cf-4c82-b6f0-42d48172a799}","A73AE24B633F0AD0730C6E2D884010FB") +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.34209 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict Off +Option Explicit On + +Imports System +Imports System.Diagnostics +Imports System.Windows +Imports System.Windows.Automation +Imports System.Windows.Controls +Imports System.Windows.Controls.Primitives +Imports System.Windows.Data +Imports System.Windows.Documents +Imports System.Windows.Forms.Integration +Imports System.Windows.Ink +Imports System.Windows.Input +Imports System.Windows.Markup +Imports System.Windows.Media +Imports System.Windows.Media.Animation +Imports System.Windows.Media.Effects +Imports System.Windows.Media.Imaging +Imports System.Windows.Media.Media3D +Imports System.Windows.Media.TextFormatting +Imports System.Windows.Navigation +Imports System.Windows.Shapes +Imports System.Windows.Shell + + +''' +'''OmagCUTDictionary +''' + _ +Partial Public Class OmagCUTDictionary + Inherits System.Windows.ResourceDictionary + Implements System.Windows.Markup.IComponentConnector, System.Windows.Markup.IStyleConnector + + Private _contentLoaded As Boolean + + ''' + '''InitializeComponent + ''' + _ + Public Sub InitializeComponent() Implements System.Windows.Markup.IComponentConnector.InitializeComponent + If _contentLoaded Then + Return + End If + _contentLoaded = true + Dim resourceLocater As System.Uri = New System.Uri("/OmagCUT;component/omagcutdictionary.xaml", System.UriKind.Relative) + + #ExternalSource("..\..\..\OmagCUTDictionary.xaml",1) + System.Windows.Application.LoadComponent(Me, resourceLocater) + + #End ExternalSource + End Sub + + _ + Sub System_Windows_Markup_IComponentConnector_Connect(ByVal connectionId As Integer, ByVal target As Object) Implements System.Windows.Markup.IComponentConnector.Connect + Me._contentLoaded = true + End Sub + + _ + Sub System_Windows_Markup_IStyleConnector_Connect(ByVal connectionId As Integer, ByVal target As Object) Implements System.Windows.Markup.IStyleConnector.Connect + Dim eventSetter As System.Windows.EventSetter + If (connectionId = 1) Then + eventSetter = New System.Windows.EventSetter() + eventSetter.Event = System.Windows.UIElement.PreviewMouseDownEvent + + #ExternalSource("..\..\..\OmagCUTDictionary.xaml",282) + eventSetter.Handler = New System.Windows.Input.MouseButtonEventHandler(AddressOf Me.PreviewMouseDown) + + #End ExternalSource + CType(target,System.Windows.Style).Setters.Add(eventSetter) + End If + End Sub +End Class + diff --git a/obj/x86/Debug/OmagCUT_MarkupCompile.cache b/obj/x86/Debug/OmagCUT_MarkupCompile.cache new file mode 100644 index 0000000..5ea8ea5 --- /dev/null +++ b/obj/x86/Debug/OmagCUT_MarkupCompile.cache @@ -0,0 +1,20 @@ +OmagCUT + + +winexe +VB +.vb +C:\EgtDev\OmagCUT\obj\x86\Debug\ +OmagCUT +none +false + +C:\EgtDev\OmagCUT\Application.xaml +121793083531 + +20756340056 +14-108013422 +BarLavoraUC.xaml;BarNestingUC.xaml;ComponentiUC.xaml;CorniciUC.xaml;FlatPartsImportUC.xaml;GrezzoUC.xaml;LavoroInCorsoUC.xaml;MainWindow.xaml;NumericKeyboardWD.xaml;OmagCUTDictionary.xaml;TagliCadUC.xaml;TagliDirettiUC.xaml; + +False + diff --git a/obj/x86/Debug/OmagCUT_MarkupCompile.i.cache b/obj/x86/Debug/OmagCUT_MarkupCompile.i.cache new file mode 100644 index 0000000..a7a28c1 --- /dev/null +++ b/obj/x86/Debug/OmagCUT_MarkupCompile.i.cache @@ -0,0 +1,20 @@ +OmagCUT + + +winexe +VB +.vb +C:\EgtDev\OmagCUT\obj\x86\Debug\ +OmagCUT +none +false + +C:\EgtDev\OmagCUT\Application.xaml +121793083531 + +21-898126682 +14-108013422 +BarLavoraUC.xaml;BarNestingUC.xaml;ComponentiUC.xaml;CorniciUC.xaml;FlatPartsImportUC.xaml;GrezzoUC.xaml;LavoroInCorsoUC.xaml;MainWindow.xaml;NumericKeyboardWD.xaml;OmagCUTDictionary.xaml;TagliCadUC.xaml;TagliDirettiUC.xaml; + +False + diff --git a/obj/x86/Debug/OmagCUT_MarkupCompile.lref b/obj/x86/Debug/OmagCUT_MarkupCompile.lref new file mode 100644 index 0000000..efb3095 --- /dev/null +++ b/obj/x86/Debug/OmagCUT_MarkupCompile.lref @@ -0,0 +1,4 @@ + + +FC:\EgtDev\OmagCUT\MainWindow.xaml;; + diff --git a/obj/x86/Debug/TagliCadUC.baml b/obj/x86/Debug/TagliCadUC.baml new file mode 100644 index 0000000..c4af19b Binary files /dev/null and b/obj/x86/Debug/TagliCadUC.baml differ diff --git a/obj/x86/Debug/TagliCadUC.g.i.vb b/obj/x86/Debug/TagliCadUC.g.i.vb new file mode 100644 index 0000000..01f1e66 --- /dev/null +++ b/obj/x86/Debug/TagliCadUC.g.i.vb @@ -0,0 +1,143 @@ +#ExternalChecksum("..\..\..\TagliCadUC.xaml","{406ea660-64cf-4c82-b6f0-42d48172a799}","7232BDFB8D5FD82E8024715ABCF85488") +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.34209 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict Off +Option Explicit On + +Imports System +Imports System.Diagnostics +Imports System.Windows +Imports System.Windows.Automation +Imports System.Windows.Controls +Imports System.Windows.Controls.Primitives +Imports System.Windows.Data +Imports System.Windows.Documents +Imports System.Windows.Forms.Integration +Imports System.Windows.Ink +Imports System.Windows.Input +Imports System.Windows.Markup +Imports System.Windows.Media +Imports System.Windows.Media.Animation +Imports System.Windows.Media.Effects +Imports System.Windows.Media.Imaging +Imports System.Windows.Media.Media3D +Imports System.Windows.Media.TextFormatting +Imports System.Windows.Navigation +Imports System.Windows.Shapes +Imports System.Windows.Shell + + +''' +'''TagliCadUC +''' + _ +Partial Public Class TagliCadUC + Inherits System.Windows.Controls.UserControl + Implements System.Windows.Markup.IComponentConnector + + + #ExternalSource("..\..\..\TagliCadUC.xaml",15) + _ + Friend WithEvents BackGroundGridLavorazioniPiane As System.Windows.Controls.Grid + + #End ExternalSource + + + #ExternalSource("..\..\..\TagliCadUC.xaml",64) + _ + Friend WithEvents RightBtnBarContent As System.Windows.Controls.ContentPresenter + + #End ExternalSource + + Private _contentLoaded As Boolean + + ''' + '''InitializeComponent + ''' + _ + Public Sub InitializeComponent() Implements System.Windows.Markup.IComponentConnector.InitializeComponent + If _contentLoaded Then + Return + End If + _contentLoaded = true + Dim resourceLocater As System.Uri = New System.Uri("/OmagCUT;component/taglicaduc.xaml", System.UriKind.Relative) + + #ExternalSource("..\..\..\TagliCadUC.xaml",1) + System.Windows.Application.LoadComponent(Me, resourceLocater) + + #End ExternalSource + End Sub + + _ + Sub System_Windows_Markup_IComponentConnector_Connect(ByVal connectionId As Integer, ByVal target As Object) Implements System.Windows.Markup.IComponentConnector.Connect + If (connectionId = 1) Then + + #ExternalSource("..\..\..\TagliCadUC.xaml",7) + AddHandler CType(target,TagliCadUC).Loaded, New System.Windows.RoutedEventHandler(AddressOf Me.TagliCadUC_Loaded) + + #End ExternalSource + + #ExternalSource("..\..\..\TagliCadUC.xaml",7) + AddHandler CType(target,TagliCadUC).Initialized, New System.EventHandler(AddressOf Me.TagliCadUC_Initialized) + + #End ExternalSource + Return + End If + If (connectionId = 2) Then + Me.BackGroundGridLavorazioniPiane = CType(target,System.Windows.Controls.Grid) + Return + End If + If (connectionId = 3) Then + + #ExternalSource("..\..\..\TagliCadUC.xaml",30) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.ComponentsBtnUC_Click) + + #End ExternalSource + Return + End If + If (connectionId = 4) Then + + #ExternalSource("..\..\..\TagliCadUC.xaml",38) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.ZoomAllBtnUC_Click) + + #End ExternalSource + Return + End If + If (connectionId = 5) Then + + #ExternalSource("..\..\..\TagliCadUC.xaml",46) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.LavoraBtnUC_Click) + + #End ExternalSource + Return + End If + If (connectionId = 6) Then + + #ExternalSource("..\..\..\TagliCadUC.xaml",54) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.GrezzoBtnUC_Click) + + #End ExternalSource + Return + End If + If (connectionId = 7) Then + Me.RightBtnBarContent = CType(target,System.Windows.Controls.ContentPresenter) + Return + End If + Me._contentLoaded = true + End Sub +End Class + diff --git a/obj/x86/Debug/TagliCadUC.g.vb b/obj/x86/Debug/TagliCadUC.g.vb new file mode 100644 index 0000000..01f1e66 --- /dev/null +++ b/obj/x86/Debug/TagliCadUC.g.vb @@ -0,0 +1,143 @@ +#ExternalChecksum("..\..\..\TagliCadUC.xaml","{406ea660-64cf-4c82-b6f0-42d48172a799}","7232BDFB8D5FD82E8024715ABCF85488") +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.34209 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict Off +Option Explicit On + +Imports System +Imports System.Diagnostics +Imports System.Windows +Imports System.Windows.Automation +Imports System.Windows.Controls +Imports System.Windows.Controls.Primitives +Imports System.Windows.Data +Imports System.Windows.Documents +Imports System.Windows.Forms.Integration +Imports System.Windows.Ink +Imports System.Windows.Input +Imports System.Windows.Markup +Imports System.Windows.Media +Imports System.Windows.Media.Animation +Imports System.Windows.Media.Effects +Imports System.Windows.Media.Imaging +Imports System.Windows.Media.Media3D +Imports System.Windows.Media.TextFormatting +Imports System.Windows.Navigation +Imports System.Windows.Shapes +Imports System.Windows.Shell + + +''' +'''TagliCadUC +''' + _ +Partial Public Class TagliCadUC + Inherits System.Windows.Controls.UserControl + Implements System.Windows.Markup.IComponentConnector + + + #ExternalSource("..\..\..\TagliCadUC.xaml",15) + _ + Friend WithEvents BackGroundGridLavorazioniPiane As System.Windows.Controls.Grid + + #End ExternalSource + + + #ExternalSource("..\..\..\TagliCadUC.xaml",64) + _ + Friend WithEvents RightBtnBarContent As System.Windows.Controls.ContentPresenter + + #End ExternalSource + + Private _contentLoaded As Boolean + + ''' + '''InitializeComponent + ''' + _ + Public Sub InitializeComponent() Implements System.Windows.Markup.IComponentConnector.InitializeComponent + If _contentLoaded Then + Return + End If + _contentLoaded = true + Dim resourceLocater As System.Uri = New System.Uri("/OmagCUT;component/taglicaduc.xaml", System.UriKind.Relative) + + #ExternalSource("..\..\..\TagliCadUC.xaml",1) + System.Windows.Application.LoadComponent(Me, resourceLocater) + + #End ExternalSource + End Sub + + _ + Sub System_Windows_Markup_IComponentConnector_Connect(ByVal connectionId As Integer, ByVal target As Object) Implements System.Windows.Markup.IComponentConnector.Connect + If (connectionId = 1) Then + + #ExternalSource("..\..\..\TagliCadUC.xaml",7) + AddHandler CType(target,TagliCadUC).Loaded, New System.Windows.RoutedEventHandler(AddressOf Me.TagliCadUC_Loaded) + + #End ExternalSource + + #ExternalSource("..\..\..\TagliCadUC.xaml",7) + AddHandler CType(target,TagliCadUC).Initialized, New System.EventHandler(AddressOf Me.TagliCadUC_Initialized) + + #End ExternalSource + Return + End If + If (connectionId = 2) Then + Me.BackGroundGridLavorazioniPiane = CType(target,System.Windows.Controls.Grid) + Return + End If + If (connectionId = 3) Then + + #ExternalSource("..\..\..\TagliCadUC.xaml",30) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.ComponentsBtnUC_Click) + + #End ExternalSource + Return + End If + If (connectionId = 4) Then + + #ExternalSource("..\..\..\TagliCadUC.xaml",38) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.ZoomAllBtnUC_Click) + + #End ExternalSource + Return + End If + If (connectionId = 5) Then + + #ExternalSource("..\..\..\TagliCadUC.xaml",46) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.LavoraBtnUC_Click) + + #End ExternalSource + Return + End If + If (connectionId = 6) Then + + #ExternalSource("..\..\..\TagliCadUC.xaml",54) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.GrezzoBtnUC_Click) + + #End ExternalSource + Return + End If + If (connectionId = 7) Then + Me.RightBtnBarContent = CType(target,System.Windows.Controls.ContentPresenter) + Return + End If + Me._contentLoaded = true + End Sub +End Class + diff --git a/obj/x86/Debug/TagliDirettiUC.baml b/obj/x86/Debug/TagliDirettiUC.baml new file mode 100644 index 0000000..41bd172 Binary files /dev/null and b/obj/x86/Debug/TagliDirettiUC.baml differ diff --git a/obj/x86/Debug/TagliDirettiUC.g.i.vb b/obj/x86/Debug/TagliDirettiUC.g.i.vb new file mode 100644 index 0000000..7918328 --- /dev/null +++ b/obj/x86/Debug/TagliDirettiUC.g.i.vb @@ -0,0 +1,87 @@ +#ExternalChecksum("..\..\..\TagliDirettiUC.xaml","{406ea660-64cf-4c82-b6f0-42d48172a799}","F67B1096A8DE84C42CEAC81A11012456") +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.34209 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict Off +Option Explicit On + +Imports System +Imports System.Diagnostics +Imports System.Windows +Imports System.Windows.Automation +Imports System.Windows.Controls +Imports System.Windows.Controls.Primitives +Imports System.Windows.Data +Imports System.Windows.Documents +Imports System.Windows.Forms.Integration +Imports System.Windows.Ink +Imports System.Windows.Input +Imports System.Windows.Markup +Imports System.Windows.Media +Imports System.Windows.Media.Animation +Imports System.Windows.Media.Effects +Imports System.Windows.Media.Imaging +Imports System.Windows.Media.Media3D +Imports System.Windows.Media.TextFormatting +Imports System.Windows.Navigation +Imports System.Windows.Shapes +Imports System.Windows.Shell + + +''' +'''TagliDirettiUC +''' + _ +Partial Public Class TagliDirettiUC + Inherits System.Windows.Controls.UserControl + Implements System.Windows.Markup.IComponentConnector + + + #ExternalSource("..\..\..\TagliDirettiUC.xaml",15) + _ + Friend WithEvents BackGroundGridTagliDiretti As System.Windows.Controls.Grid + + #End ExternalSource + + Private _contentLoaded As Boolean + + ''' + '''InitializeComponent + ''' + _ + Public Sub InitializeComponent() Implements System.Windows.Markup.IComponentConnector.InitializeComponent + If _contentLoaded Then + Return + End If + _contentLoaded = true + Dim resourceLocater As System.Uri = New System.Uri("/OmagCUT;component/taglidirettiuc.xaml", System.UriKind.Relative) + + #ExternalSource("..\..\..\TagliDirettiUC.xaml",1) + System.Windows.Application.LoadComponent(Me, resourceLocater) + + #End ExternalSource + End Sub + + _ + Sub System_Windows_Markup_IComponentConnector_Connect(ByVal connectionId As Integer, ByVal target As Object) Implements System.Windows.Markup.IComponentConnector.Connect + If (connectionId = 1) Then + Me.BackGroundGridTagliDiretti = CType(target,System.Windows.Controls.Grid) + Return + End If + Me._contentLoaded = true + End Sub +End Class + diff --git a/obj/x86/Debug/TagliDirettiUC.g.vb b/obj/x86/Debug/TagliDirettiUC.g.vb new file mode 100644 index 0000000..7918328 --- /dev/null +++ b/obj/x86/Debug/TagliDirettiUC.g.vb @@ -0,0 +1,87 @@ +#ExternalChecksum("..\..\..\TagliDirettiUC.xaml","{406ea660-64cf-4c82-b6f0-42d48172a799}","F67B1096A8DE84C42CEAC81A11012456") +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.34209 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict Off +Option Explicit On + +Imports System +Imports System.Diagnostics +Imports System.Windows +Imports System.Windows.Automation +Imports System.Windows.Controls +Imports System.Windows.Controls.Primitives +Imports System.Windows.Data +Imports System.Windows.Documents +Imports System.Windows.Forms.Integration +Imports System.Windows.Ink +Imports System.Windows.Input +Imports System.Windows.Markup +Imports System.Windows.Media +Imports System.Windows.Media.Animation +Imports System.Windows.Media.Effects +Imports System.Windows.Media.Imaging +Imports System.Windows.Media.Media3D +Imports System.Windows.Media.TextFormatting +Imports System.Windows.Navigation +Imports System.Windows.Shapes +Imports System.Windows.Shell + + +''' +'''TagliDirettiUC +''' + _ +Partial Public Class TagliDirettiUC + Inherits System.Windows.Controls.UserControl + Implements System.Windows.Markup.IComponentConnector + + + #ExternalSource("..\..\..\TagliDirettiUC.xaml",15) + _ + Friend WithEvents BackGroundGridTagliDiretti As System.Windows.Controls.Grid + + #End ExternalSource + + Private _contentLoaded As Boolean + + ''' + '''InitializeComponent + ''' + _ + Public Sub InitializeComponent() Implements System.Windows.Markup.IComponentConnector.InitializeComponent + If _contentLoaded Then + Return + End If + _contentLoaded = true + Dim resourceLocater As System.Uri = New System.Uri("/OmagCUT;component/taglidirettiuc.xaml", System.UriKind.Relative) + + #ExternalSource("..\..\..\TagliDirettiUC.xaml",1) + System.Windows.Application.LoadComponent(Me, resourceLocater) + + #End ExternalSource + End Sub + + _ + Sub System_Windows_Markup_IComponentConnector_Connect(ByVal connectionId As Integer, ByVal target As Object) Implements System.Windows.Markup.IComponentConnector.Connect + If (connectionId = 1) Then + Me.BackGroundGridTagliDiretti = CType(target,System.Windows.Controls.Grid) + Return + End If + Me._contentLoaded = true + End Sub +End Class + diff --git a/obj/x86/Debug/TempPE/My Project.Resources.Designer.vb.dll b/obj/x86/Debug/TempPE/My Project.Resources.Designer.vb.dll new file mode 100644 index 0000000..79d9e63 Binary files /dev/null and b/obj/x86/Debug/TempPE/My Project.Resources.Designer.vb.dll differ diff --git a/obj/x86/Release/Application.g.i.vb b/obj/x86/Release/Application.g.i.vb new file mode 100644 index 0000000..f64896b --- /dev/null +++ b/obj/x86/Release/Application.g.i.vb @@ -0,0 +1,55 @@ +#ExternalChecksum("..\..\..\Application.xaml","{406ea660-64cf-4c82-b6f0-42d48172a799}","DBA653743C9CD3D62AEE54B1F64816CF") +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.34209 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict Off +Option Explicit On + +Imports System +Imports System.Diagnostics +Imports System.Windows +Imports System.Windows.Automation +Imports System.Windows.Controls +Imports System.Windows.Controls.Primitives +Imports System.Windows.Data +Imports System.Windows.Documents +Imports System.Windows.Forms.Integration +Imports System.Windows.Ink +Imports System.Windows.Input +Imports System.Windows.Markup +Imports System.Windows.Media +Imports System.Windows.Media.Animation +Imports System.Windows.Media.Effects +Imports System.Windows.Media.Imaging +Imports System.Windows.Media.Media3D +Imports System.Windows.Media.TextFormatting +Imports System.Windows.Navigation +Imports System.Windows.Shapes +Imports System.Windows.Shell + + +''' +'''Application +''' +Partial Public Class Application + Inherits System.Windows.Application + + ''' + '''Application Entry Point. + ''' + _ + Public Shared Sub Main() + Dim app As Application = New Application() + app.Run + End Sub +End Class + diff --git a/obj/x86/Release/Application.g.vb b/obj/x86/Release/Application.g.vb new file mode 100644 index 0000000..f64896b --- /dev/null +++ b/obj/x86/Release/Application.g.vb @@ -0,0 +1,55 @@ +#ExternalChecksum("..\..\..\Application.xaml","{406ea660-64cf-4c82-b6f0-42d48172a799}","DBA653743C9CD3D62AEE54B1F64816CF") +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.34209 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict Off +Option Explicit On + +Imports System +Imports System.Diagnostics +Imports System.Windows +Imports System.Windows.Automation +Imports System.Windows.Controls +Imports System.Windows.Controls.Primitives +Imports System.Windows.Data +Imports System.Windows.Documents +Imports System.Windows.Forms.Integration +Imports System.Windows.Ink +Imports System.Windows.Input +Imports System.Windows.Markup +Imports System.Windows.Media +Imports System.Windows.Media.Animation +Imports System.Windows.Media.Effects +Imports System.Windows.Media.Imaging +Imports System.Windows.Media.Media3D +Imports System.Windows.Media.TextFormatting +Imports System.Windows.Navigation +Imports System.Windows.Shapes +Imports System.Windows.Shell + + +''' +'''Application +''' +Partial Public Class Application + Inherits System.Windows.Application + + ''' + '''Application Entry Point. + ''' + _ + Public Shared Sub Main() + Dim app As Application = New Application() + app.Run + End Sub +End Class + diff --git a/obj/x86/Release/BarLavoraUC.baml b/obj/x86/Release/BarLavoraUC.baml new file mode 100644 index 0000000..c4b94f6 Binary files /dev/null and b/obj/x86/Release/BarLavoraUC.baml differ diff --git a/obj/x86/Release/BarLavoraUC.g.i.vb b/obj/x86/Release/BarLavoraUC.g.i.vb new file mode 100644 index 0000000..bfc6203 --- /dev/null +++ b/obj/x86/Release/BarLavoraUC.g.i.vb @@ -0,0 +1,76 @@ +#ExternalChecksum("..\..\..\BarLavoraUC.xaml","{406ea660-64cf-4c82-b6f0-42d48172a799}","D8A4CAA590C339CA79EE4CC672A19558") +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.34209 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict Off +Option Explicit On + +Imports System +Imports System.Diagnostics +Imports System.Windows +Imports System.Windows.Automation +Imports System.Windows.Controls +Imports System.Windows.Controls.Primitives +Imports System.Windows.Data +Imports System.Windows.Documents +Imports System.Windows.Forms.Integration +Imports System.Windows.Ink +Imports System.Windows.Input +Imports System.Windows.Markup +Imports System.Windows.Media +Imports System.Windows.Media.Animation +Imports System.Windows.Media.Effects +Imports System.Windows.Media.Imaging +Imports System.Windows.Media.Media3D +Imports System.Windows.Media.TextFormatting +Imports System.Windows.Navigation +Imports System.Windows.Shapes +Imports System.Windows.Shell + + +''' +'''BarLavoraUC +''' + _ +Partial Public Class BarLavoraUC + Inherits System.Windows.Controls.UserControl + Implements System.Windows.Markup.IComponentConnector + + Private _contentLoaded As Boolean + + ''' + '''InitializeComponent + ''' + _ + Public Sub InitializeComponent() Implements System.Windows.Markup.IComponentConnector.InitializeComponent + If _contentLoaded Then + Return + End If + _contentLoaded = true + Dim resourceLocater As System.Uri = New System.Uri("/OmagCUT;component/barlavorauc.xaml", System.UriKind.Relative) + + #ExternalSource("..\..\..\BarLavoraUC.xaml",1) + System.Windows.Application.LoadComponent(Me, resourceLocater) + + #End ExternalSource + End Sub + + _ + Sub System_Windows_Markup_IComponentConnector_Connect(ByVal connectionId As Integer, ByVal target As Object) Implements System.Windows.Markup.IComponentConnector.Connect + Me._contentLoaded = true + End Sub +End Class + diff --git a/obj/x86/Release/BarLavoraUC.g.vb b/obj/x86/Release/BarLavoraUC.g.vb new file mode 100644 index 0000000..bfc6203 --- /dev/null +++ b/obj/x86/Release/BarLavoraUC.g.vb @@ -0,0 +1,76 @@ +#ExternalChecksum("..\..\..\BarLavoraUC.xaml","{406ea660-64cf-4c82-b6f0-42d48172a799}","D8A4CAA590C339CA79EE4CC672A19558") +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.34209 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict Off +Option Explicit On + +Imports System +Imports System.Diagnostics +Imports System.Windows +Imports System.Windows.Automation +Imports System.Windows.Controls +Imports System.Windows.Controls.Primitives +Imports System.Windows.Data +Imports System.Windows.Documents +Imports System.Windows.Forms.Integration +Imports System.Windows.Ink +Imports System.Windows.Input +Imports System.Windows.Markup +Imports System.Windows.Media +Imports System.Windows.Media.Animation +Imports System.Windows.Media.Effects +Imports System.Windows.Media.Imaging +Imports System.Windows.Media.Media3D +Imports System.Windows.Media.TextFormatting +Imports System.Windows.Navigation +Imports System.Windows.Shapes +Imports System.Windows.Shell + + +''' +'''BarLavoraUC +''' + _ +Partial Public Class BarLavoraUC + Inherits System.Windows.Controls.UserControl + Implements System.Windows.Markup.IComponentConnector + + Private _contentLoaded As Boolean + + ''' + '''InitializeComponent + ''' + _ + Public Sub InitializeComponent() Implements System.Windows.Markup.IComponentConnector.InitializeComponent + If _contentLoaded Then + Return + End If + _contentLoaded = true + Dim resourceLocater As System.Uri = New System.Uri("/OmagCUT;component/barlavorauc.xaml", System.UriKind.Relative) + + #ExternalSource("..\..\..\BarLavoraUC.xaml",1) + System.Windows.Application.LoadComponent(Me, resourceLocater) + + #End ExternalSource + End Sub + + _ + Sub System_Windows_Markup_IComponentConnector_Connect(ByVal connectionId As Integer, ByVal target As Object) Implements System.Windows.Markup.IComponentConnector.Connect + Me._contentLoaded = true + End Sub +End Class + diff --git a/obj/x86/Release/BarNestingUC.baml b/obj/x86/Release/BarNestingUC.baml new file mode 100644 index 0000000..22d1b86 Binary files /dev/null and b/obj/x86/Release/BarNestingUC.baml differ diff --git a/obj/x86/Release/BarNestingUC.g.i.vb b/obj/x86/Release/BarNestingUC.g.i.vb new file mode 100644 index 0000000..4a839d4 --- /dev/null +++ b/obj/x86/Release/BarNestingUC.g.i.vb @@ -0,0 +1,76 @@ +#ExternalChecksum("..\..\..\BarNestingUC.xaml","{406ea660-64cf-4c82-b6f0-42d48172a799}","8A00543EB74AD4345398B906D86232A1") +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.34209 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict Off +Option Explicit On + +Imports System +Imports System.Diagnostics +Imports System.Windows +Imports System.Windows.Automation +Imports System.Windows.Controls +Imports System.Windows.Controls.Primitives +Imports System.Windows.Data +Imports System.Windows.Documents +Imports System.Windows.Forms.Integration +Imports System.Windows.Ink +Imports System.Windows.Input +Imports System.Windows.Markup +Imports System.Windows.Media +Imports System.Windows.Media.Animation +Imports System.Windows.Media.Effects +Imports System.Windows.Media.Imaging +Imports System.Windows.Media.Media3D +Imports System.Windows.Media.TextFormatting +Imports System.Windows.Navigation +Imports System.Windows.Shapes +Imports System.Windows.Shell + + +''' +'''BarNestingUC +''' + _ +Partial Public Class BarNestingUC + Inherits System.Windows.Controls.UserControl + Implements System.Windows.Markup.IComponentConnector + + Private _contentLoaded As Boolean + + ''' + '''InitializeComponent + ''' + _ + Public Sub InitializeComponent() Implements System.Windows.Markup.IComponentConnector.InitializeComponent + If _contentLoaded Then + Return + End If + _contentLoaded = true + Dim resourceLocater As System.Uri = New System.Uri("/OmagCUT;component/barnestinguc.xaml", System.UriKind.Relative) + + #ExternalSource("..\..\..\BarNestingUC.xaml",1) + System.Windows.Application.LoadComponent(Me, resourceLocater) + + #End ExternalSource + End Sub + + _ + Sub System_Windows_Markup_IComponentConnector_Connect(ByVal connectionId As Integer, ByVal target As Object) Implements System.Windows.Markup.IComponentConnector.Connect + Me._contentLoaded = true + End Sub +End Class + diff --git a/obj/x86/Release/BarNestingUC.g.vb b/obj/x86/Release/BarNestingUC.g.vb new file mode 100644 index 0000000..4a839d4 --- /dev/null +++ b/obj/x86/Release/BarNestingUC.g.vb @@ -0,0 +1,76 @@ +#ExternalChecksum("..\..\..\BarNestingUC.xaml","{406ea660-64cf-4c82-b6f0-42d48172a799}","8A00543EB74AD4345398B906D86232A1") +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.34209 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict Off +Option Explicit On + +Imports System +Imports System.Diagnostics +Imports System.Windows +Imports System.Windows.Automation +Imports System.Windows.Controls +Imports System.Windows.Controls.Primitives +Imports System.Windows.Data +Imports System.Windows.Documents +Imports System.Windows.Forms.Integration +Imports System.Windows.Ink +Imports System.Windows.Input +Imports System.Windows.Markup +Imports System.Windows.Media +Imports System.Windows.Media.Animation +Imports System.Windows.Media.Effects +Imports System.Windows.Media.Imaging +Imports System.Windows.Media.Media3D +Imports System.Windows.Media.TextFormatting +Imports System.Windows.Navigation +Imports System.Windows.Shapes +Imports System.Windows.Shell + + +''' +'''BarNestingUC +''' + _ +Partial Public Class BarNestingUC + Inherits System.Windows.Controls.UserControl + Implements System.Windows.Markup.IComponentConnector + + Private _contentLoaded As Boolean + + ''' + '''InitializeComponent + ''' + _ + Public Sub InitializeComponent() Implements System.Windows.Markup.IComponentConnector.InitializeComponent + If _contentLoaded Then + Return + End If + _contentLoaded = true + Dim resourceLocater As System.Uri = New System.Uri("/OmagCUT;component/barnestinguc.xaml", System.UriKind.Relative) + + #ExternalSource("..\..\..\BarNestingUC.xaml",1) + System.Windows.Application.LoadComponent(Me, resourceLocater) + + #End ExternalSource + End Sub + + _ + Sub System_Windows_Markup_IComponentConnector_Connect(ByVal connectionId As Integer, ByVal target As Object) Implements System.Windows.Markup.IComponentConnector.Connect + Me._contentLoaded = true + End Sub +End Class + diff --git a/obj/x86/Release/ComponentiUC.baml b/obj/x86/Release/ComponentiUC.baml new file mode 100644 index 0000000..e243983 Binary files /dev/null and b/obj/x86/Release/ComponentiUC.baml differ diff --git a/obj/x86/Release/ComponentiUC.g.i.vb b/obj/x86/Release/ComponentiUC.g.i.vb new file mode 100644 index 0000000..d5381d3 --- /dev/null +++ b/obj/x86/Release/ComponentiUC.g.i.vb @@ -0,0 +1,411 @@ +#ExternalChecksum("..\..\..\ComponentiUC.xaml","{406ea660-64cf-4c82-b6f0-42d48172a799}","8B4CDE654F67A9C21802EA0A8EA97213") +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.34209 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict Off +Option Explicit On + +Imports System +Imports System.Diagnostics +Imports System.Windows +Imports System.Windows.Automation +Imports System.Windows.Controls +Imports System.Windows.Controls.Primitives +Imports System.Windows.Data +Imports System.Windows.Documents +Imports System.Windows.Forms.Integration +Imports System.Windows.Ink +Imports System.Windows.Input +Imports System.Windows.Markup +Imports System.Windows.Media +Imports System.Windows.Media.Animation +Imports System.Windows.Media.Effects +Imports System.Windows.Media.Imaging +Imports System.Windows.Media.Media3D +Imports System.Windows.Media.TextFormatting +Imports System.Windows.Navigation +Imports System.Windows.Shapes +Imports System.Windows.Shell + + +''' +'''ComponentiUC +''' + _ +Partial Public Class ComponentiUC + Inherits System.Windows.Controls.UserControl + Implements System.Windows.Markup.IComponentConnector + + + #ExternalSource("..\..\..\ComponentiUC.xaml",15) + _ + Friend WithEvents BackGroundGridComponenti As System.Windows.Controls.Grid + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",98) + _ + Friend WithEvents tbName1 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",99) + _ + Friend WithEvents tbName2 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",100) + _ + Friend WithEvents tbName3 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",101) + _ + Friend WithEvents tbName4 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",102) + _ + Friend WithEvents tbName5 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",103) + _ + Friend WithEvents tbName6 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",104) + _ + Friend WithEvents tbName7 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",105) + _ + Friend WithEvents tbName8 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",106) + _ + Friend WithEvents tbName9 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",107) + _ + Friend WithEvents tbName10 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",108) + _ + Friend WithEvents tbValue1 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",109) + _ + Friend WithEvents tbValue2 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",110) + _ + Friend WithEvents tbValue3 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",111) + _ + Friend WithEvents tbValue4 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",112) + _ + Friend WithEvents tbValue5 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",113) + _ + Friend WithEvents tbValue6 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",114) + _ + Friend WithEvents tbValue7 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",115) + _ + Friend WithEvents tbValue8 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",116) + _ + Friend WithEvents tbValue9 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",117) + _ + Friend WithEvents tbValue10 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",118) + _ + Friend WithEvents tbMsg As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",119) + _ + Friend WithEvents btnView As System.Windows.Controls.Button + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",121) + _ + Friend WithEvents btnInsert As System.Windows.Controls.Button + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",123) + _ + Friend WithEvents btnX As System.Windows.Controls.Button + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",126) + _ + Friend WithEvents tbNbr As System.Windows.Controls.TextBox + + #End ExternalSource + + Private _contentLoaded As Boolean + + ''' + '''InitializeComponent + ''' + _ + Public Sub InitializeComponent() Implements System.Windows.Markup.IComponentConnector.InitializeComponent + If _contentLoaded Then + Return + End If + _contentLoaded = true + Dim resourceLocater As System.Uri = New System.Uri("/OmagCUT;component/componentiuc.xaml", System.UriKind.Relative) + + #ExternalSource("..\..\..\ComponentiUC.xaml",1) + System.Windows.Application.LoadComponent(Me, resourceLocater) + + #End ExternalSource + End Sub + + _ + Sub System_Windows_Markup_IComponentConnector_Connect(ByVal connectionId As Integer, ByVal target As Object) Implements System.Windows.Markup.IComponentConnector.Connect + If (connectionId = 1) Then + + #ExternalSource("..\..\..\ComponentiUC.xaml",7) + AddHandler CType(target,ComponentiUC).Loaded, New System.Windows.RoutedEventHandler(AddressOf Me.ComponentiUC_Loaded) + + #End ExternalSource + + #ExternalSource("..\..\..\ComponentiUC.xaml",7) + AddHandler CType(target,ComponentiUC).Unloaded, New System.Windows.RoutedEventHandler(AddressOf Me.ComponentiUC_Unloaded) + + #End ExternalSource + + #ExternalSource("..\..\..\ComponentiUC.xaml",7) + AddHandler CType(target,ComponentiUC).Initialized, New System.EventHandler(AddressOf Me.ComponentiUC_Initialized) + + #End ExternalSource + Return + End If + If (connectionId = 2) Then + Me.BackGroundGridComponenti = CType(target,System.Windows.Controls.Grid) + Return + End If + If (connectionId = 3) Then + + #ExternalSource("..\..\..\ComponentiUC.xaml",39) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.TriangleBtnUC_Click) + + #End ExternalSource + Return + End If + If (connectionId = 4) Then + + #ExternalSource("..\..\..\ComponentiUC.xaml",56) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.RectangleTrapeziumBtnUC_Click) + + #End ExternalSource + Return + End If + If (connectionId = 5) Then + Me.tbName1 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 6) Then + Me.tbName2 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 7) Then + Me.tbName3 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 8) Then + Me.tbName4 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 9) Then + Me.tbName5 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 10) Then + Me.tbName6 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 11) Then + Me.tbName7 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 12) Then + Me.tbName8 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 13) Then + Me.tbName9 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 14) Then + Me.tbName10 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 15) Then + Me.tbValue1 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 16) Then + Me.tbValue2 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 17) Then + Me.tbValue3 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 18) Then + Me.tbValue4 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 19) Then + Me.tbValue5 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 20) Then + Me.tbValue6 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 21) Then + Me.tbValue7 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 22) Then + Me.tbValue8 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 23) Then + Me.tbValue9 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 24) Then + Me.tbValue10 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 25) Then + Me.tbMsg = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 26) Then + Me.btnView = CType(target,System.Windows.Controls.Button) + + #ExternalSource("..\..\..\ComponentiUC.xaml",120) + AddHandler Me.btnView.Click, New System.Windows.RoutedEventHandler(AddressOf Me.ViewBtnUC_Click) + + #End ExternalSource + Return + End If + If (connectionId = 27) Then + Me.btnInsert = CType(target,System.Windows.Controls.Button) + + #ExternalSource("..\..\..\ComponentiUC.xaml",122) + AddHandler Me.btnInsert.Click, New System.Windows.RoutedEventHandler(AddressOf Me.InsertBtnUC_Click) + + #End ExternalSource + Return + End If + If (connectionId = 28) Then + Me.btnX = CType(target,System.Windows.Controls.Button) + + #ExternalSource("..\..\..\ComponentiUC.xaml",123) + AddHandler Me.btnX.Click, New System.Windows.RoutedEventHandler(AddressOf Me.CloseBtnUC_Click) + + #End ExternalSource + Return + End If + If (connectionId = 29) Then + Me.tbNbr = CType(target,System.Windows.Controls.TextBox) + Return + End If + Me._contentLoaded = true + End Sub +End Class + diff --git a/obj/x86/Release/ComponentiUC.g.vb b/obj/x86/Release/ComponentiUC.g.vb new file mode 100644 index 0000000..d5381d3 --- /dev/null +++ b/obj/x86/Release/ComponentiUC.g.vb @@ -0,0 +1,411 @@ +#ExternalChecksum("..\..\..\ComponentiUC.xaml","{406ea660-64cf-4c82-b6f0-42d48172a799}","8B4CDE654F67A9C21802EA0A8EA97213") +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.34209 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict Off +Option Explicit On + +Imports System +Imports System.Diagnostics +Imports System.Windows +Imports System.Windows.Automation +Imports System.Windows.Controls +Imports System.Windows.Controls.Primitives +Imports System.Windows.Data +Imports System.Windows.Documents +Imports System.Windows.Forms.Integration +Imports System.Windows.Ink +Imports System.Windows.Input +Imports System.Windows.Markup +Imports System.Windows.Media +Imports System.Windows.Media.Animation +Imports System.Windows.Media.Effects +Imports System.Windows.Media.Imaging +Imports System.Windows.Media.Media3D +Imports System.Windows.Media.TextFormatting +Imports System.Windows.Navigation +Imports System.Windows.Shapes +Imports System.Windows.Shell + + +''' +'''ComponentiUC +''' + _ +Partial Public Class ComponentiUC + Inherits System.Windows.Controls.UserControl + Implements System.Windows.Markup.IComponentConnector + + + #ExternalSource("..\..\..\ComponentiUC.xaml",15) + _ + Friend WithEvents BackGroundGridComponenti As System.Windows.Controls.Grid + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",98) + _ + Friend WithEvents tbName1 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",99) + _ + Friend WithEvents tbName2 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",100) + _ + Friend WithEvents tbName3 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",101) + _ + Friend WithEvents tbName4 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",102) + _ + Friend WithEvents tbName5 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",103) + _ + Friend WithEvents tbName6 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",104) + _ + Friend WithEvents tbName7 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",105) + _ + Friend WithEvents tbName8 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",106) + _ + Friend WithEvents tbName9 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",107) + _ + Friend WithEvents tbName10 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",108) + _ + Friend WithEvents tbValue1 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",109) + _ + Friend WithEvents tbValue2 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",110) + _ + Friend WithEvents tbValue3 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",111) + _ + Friend WithEvents tbValue4 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",112) + _ + Friend WithEvents tbValue5 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",113) + _ + Friend WithEvents tbValue6 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",114) + _ + Friend WithEvents tbValue7 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",115) + _ + Friend WithEvents tbValue8 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",116) + _ + Friend WithEvents tbValue9 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",117) + _ + Friend WithEvents tbValue10 As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",118) + _ + Friend WithEvents tbMsg As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",119) + _ + Friend WithEvents btnView As System.Windows.Controls.Button + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",121) + _ + Friend WithEvents btnInsert As System.Windows.Controls.Button + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",123) + _ + Friend WithEvents btnX As System.Windows.Controls.Button + + #End ExternalSource + + + #ExternalSource("..\..\..\ComponentiUC.xaml",126) + _ + Friend WithEvents tbNbr As System.Windows.Controls.TextBox + + #End ExternalSource + + Private _contentLoaded As Boolean + + ''' + '''InitializeComponent + ''' + _ + Public Sub InitializeComponent() Implements System.Windows.Markup.IComponentConnector.InitializeComponent + If _contentLoaded Then + Return + End If + _contentLoaded = true + Dim resourceLocater As System.Uri = New System.Uri("/OmagCUT;component/componentiuc.xaml", System.UriKind.Relative) + + #ExternalSource("..\..\..\ComponentiUC.xaml",1) + System.Windows.Application.LoadComponent(Me, resourceLocater) + + #End ExternalSource + End Sub + + _ + Sub System_Windows_Markup_IComponentConnector_Connect(ByVal connectionId As Integer, ByVal target As Object) Implements System.Windows.Markup.IComponentConnector.Connect + If (connectionId = 1) Then + + #ExternalSource("..\..\..\ComponentiUC.xaml",7) + AddHandler CType(target,ComponentiUC).Loaded, New System.Windows.RoutedEventHandler(AddressOf Me.ComponentiUC_Loaded) + + #End ExternalSource + + #ExternalSource("..\..\..\ComponentiUC.xaml",7) + AddHandler CType(target,ComponentiUC).Unloaded, New System.Windows.RoutedEventHandler(AddressOf Me.ComponentiUC_Unloaded) + + #End ExternalSource + + #ExternalSource("..\..\..\ComponentiUC.xaml",7) + AddHandler CType(target,ComponentiUC).Initialized, New System.EventHandler(AddressOf Me.ComponentiUC_Initialized) + + #End ExternalSource + Return + End If + If (connectionId = 2) Then + Me.BackGroundGridComponenti = CType(target,System.Windows.Controls.Grid) + Return + End If + If (connectionId = 3) Then + + #ExternalSource("..\..\..\ComponentiUC.xaml",39) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.TriangleBtnUC_Click) + + #End ExternalSource + Return + End If + If (connectionId = 4) Then + + #ExternalSource("..\..\..\ComponentiUC.xaml",56) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.RectangleTrapeziumBtnUC_Click) + + #End ExternalSource + Return + End If + If (connectionId = 5) Then + Me.tbName1 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 6) Then + Me.tbName2 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 7) Then + Me.tbName3 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 8) Then + Me.tbName4 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 9) Then + Me.tbName5 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 10) Then + Me.tbName6 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 11) Then + Me.tbName7 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 12) Then + Me.tbName8 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 13) Then + Me.tbName9 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 14) Then + Me.tbName10 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 15) Then + Me.tbValue1 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 16) Then + Me.tbValue2 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 17) Then + Me.tbValue3 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 18) Then + Me.tbValue4 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 19) Then + Me.tbValue5 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 20) Then + Me.tbValue6 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 21) Then + Me.tbValue7 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 22) Then + Me.tbValue8 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 23) Then + Me.tbValue9 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 24) Then + Me.tbValue10 = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 25) Then + Me.tbMsg = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 26) Then + Me.btnView = CType(target,System.Windows.Controls.Button) + + #ExternalSource("..\..\..\ComponentiUC.xaml",120) + AddHandler Me.btnView.Click, New System.Windows.RoutedEventHandler(AddressOf Me.ViewBtnUC_Click) + + #End ExternalSource + Return + End If + If (connectionId = 27) Then + Me.btnInsert = CType(target,System.Windows.Controls.Button) + + #ExternalSource("..\..\..\ComponentiUC.xaml",122) + AddHandler Me.btnInsert.Click, New System.Windows.RoutedEventHandler(AddressOf Me.InsertBtnUC_Click) + + #End ExternalSource + Return + End If + If (connectionId = 28) Then + Me.btnX = CType(target,System.Windows.Controls.Button) + + #ExternalSource("..\..\..\ComponentiUC.xaml",123) + AddHandler Me.btnX.Click, New System.Windows.RoutedEventHandler(AddressOf Me.CloseBtnUC_Click) + + #End ExternalSource + Return + End If + If (connectionId = 29) Then + Me.tbNbr = CType(target,System.Windows.Controls.TextBox) + Return + End If + Me._contentLoaded = true + End Sub +End Class + diff --git a/obj/x86/Release/CorniciUC.baml b/obj/x86/Release/CorniciUC.baml new file mode 100644 index 0000000..cd4f81b Binary files /dev/null and b/obj/x86/Release/CorniciUC.baml differ diff --git a/obj/x86/Release/CorniciUC.g.i.vb b/obj/x86/Release/CorniciUC.g.i.vb new file mode 100644 index 0000000..c68985b --- /dev/null +++ b/obj/x86/Release/CorniciUC.g.i.vb @@ -0,0 +1,87 @@ +#ExternalChecksum("..\..\..\CorniciUC.xaml","{406ea660-64cf-4c82-b6f0-42d48172a799}","B7D528832F33B356523629F44C82D88B") +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.34209 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict Off +Option Explicit On + +Imports System +Imports System.Diagnostics +Imports System.Windows +Imports System.Windows.Automation +Imports System.Windows.Controls +Imports System.Windows.Controls.Primitives +Imports System.Windows.Data +Imports System.Windows.Documents +Imports System.Windows.Forms.Integration +Imports System.Windows.Ink +Imports System.Windows.Input +Imports System.Windows.Markup +Imports System.Windows.Media +Imports System.Windows.Media.Animation +Imports System.Windows.Media.Effects +Imports System.Windows.Media.Imaging +Imports System.Windows.Media.Media3D +Imports System.Windows.Media.TextFormatting +Imports System.Windows.Navigation +Imports System.Windows.Shapes +Imports System.Windows.Shell + + +''' +'''CorniciUC +''' + _ +Partial Public Class CorniciUC + Inherits System.Windows.Controls.UserControl + Implements System.Windows.Markup.IComponentConnector + + + #ExternalSource("..\..\..\CorniciUC.xaml",15) + _ + Friend WithEvents BackGroundGridLavorazioneCornici As System.Windows.Controls.Grid + + #End ExternalSource + + Private _contentLoaded As Boolean + + ''' + '''InitializeComponent + ''' + _ + Public Sub InitializeComponent() Implements System.Windows.Markup.IComponentConnector.InitializeComponent + If _contentLoaded Then + Return + End If + _contentLoaded = true + Dim resourceLocater As System.Uri = New System.Uri("/OmagCUT;component/corniciuc.xaml", System.UriKind.Relative) + + #ExternalSource("..\..\..\CorniciUC.xaml",1) + System.Windows.Application.LoadComponent(Me, resourceLocater) + + #End ExternalSource + End Sub + + _ + Sub System_Windows_Markup_IComponentConnector_Connect(ByVal connectionId As Integer, ByVal target As Object) Implements System.Windows.Markup.IComponentConnector.Connect + If (connectionId = 1) Then + Me.BackGroundGridLavorazioneCornici = CType(target,System.Windows.Controls.Grid) + Return + End If + Me._contentLoaded = true + End Sub +End Class + diff --git a/obj/x86/Release/CorniciUC.g.vb b/obj/x86/Release/CorniciUC.g.vb new file mode 100644 index 0000000..c68985b --- /dev/null +++ b/obj/x86/Release/CorniciUC.g.vb @@ -0,0 +1,87 @@ +#ExternalChecksum("..\..\..\CorniciUC.xaml","{406ea660-64cf-4c82-b6f0-42d48172a799}","B7D528832F33B356523629F44C82D88B") +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.34209 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict Off +Option Explicit On + +Imports System +Imports System.Diagnostics +Imports System.Windows +Imports System.Windows.Automation +Imports System.Windows.Controls +Imports System.Windows.Controls.Primitives +Imports System.Windows.Data +Imports System.Windows.Documents +Imports System.Windows.Forms.Integration +Imports System.Windows.Ink +Imports System.Windows.Input +Imports System.Windows.Markup +Imports System.Windows.Media +Imports System.Windows.Media.Animation +Imports System.Windows.Media.Effects +Imports System.Windows.Media.Imaging +Imports System.Windows.Media.Media3D +Imports System.Windows.Media.TextFormatting +Imports System.Windows.Navigation +Imports System.Windows.Shapes +Imports System.Windows.Shell + + +''' +'''CorniciUC +''' + _ +Partial Public Class CorniciUC + Inherits System.Windows.Controls.UserControl + Implements System.Windows.Markup.IComponentConnector + + + #ExternalSource("..\..\..\CorniciUC.xaml",15) + _ + Friend WithEvents BackGroundGridLavorazioneCornici As System.Windows.Controls.Grid + + #End ExternalSource + + Private _contentLoaded As Boolean + + ''' + '''InitializeComponent + ''' + _ + Public Sub InitializeComponent() Implements System.Windows.Markup.IComponentConnector.InitializeComponent + If _contentLoaded Then + Return + End If + _contentLoaded = true + Dim resourceLocater As System.Uri = New System.Uri("/OmagCUT;component/corniciuc.xaml", System.UriKind.Relative) + + #ExternalSource("..\..\..\CorniciUC.xaml",1) + System.Windows.Application.LoadComponent(Me, resourceLocater) + + #End ExternalSource + End Sub + + _ + Sub System_Windows_Markup_IComponentConnector_Connect(ByVal connectionId As Integer, ByVal target As Object) Implements System.Windows.Markup.IComponentConnector.Connect + If (connectionId = 1) Then + Me.BackGroundGridLavorazioneCornici = CType(target,System.Windows.Controls.Grid) + Return + End If + Me._contentLoaded = true + End Sub +End Class + diff --git a/obj/x86/Release/DesignTimeResolveAssemblyReferences.cache b/obj/x86/Release/DesignTimeResolveAssemblyReferences.cache new file mode 100644 index 0000000..a13c570 Binary files /dev/null and b/obj/x86/Release/DesignTimeResolveAssemblyReferences.cache differ diff --git a/obj/x86/Release/DesignTimeResolveAssemblyReferencesInput.cache b/obj/x86/Release/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 0000000..2a1eadd Binary files /dev/null and b/obj/x86/Release/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/obj/x86/Release/FlatPartsImportUC.baml b/obj/x86/Release/FlatPartsImportUC.baml new file mode 100644 index 0000000..a9c9248 Binary files /dev/null and b/obj/x86/Release/FlatPartsImportUC.baml differ diff --git a/obj/x86/Release/FlatPartsImportUC.g.i.vb b/obj/x86/Release/FlatPartsImportUC.g.i.vb new file mode 100644 index 0000000..9c08058 --- /dev/null +++ b/obj/x86/Release/FlatPartsImportUC.g.i.vb @@ -0,0 +1,116 @@ +#ExternalChecksum("..\..\..\FlatPartsImportUC.xaml","{406ea660-64cf-4c82-b6f0-42d48172a799}","D268B6D2AC690553285DD8AF1F594C67") +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.34209 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict Off +Option Explicit On + +Imports System +Imports System.Diagnostics +Imports System.Windows +Imports System.Windows.Automation +Imports System.Windows.Controls +Imports System.Windows.Controls.Primitives +Imports System.Windows.Data +Imports System.Windows.Documents +Imports System.Windows.Forms.Integration +Imports System.Windows.Ink +Imports System.Windows.Input +Imports System.Windows.Markup +Imports System.Windows.Media +Imports System.Windows.Media.Animation +Imports System.Windows.Media.Effects +Imports System.Windows.Media.Imaging +Imports System.Windows.Media.Media3D +Imports System.Windows.Media.TextFormatting +Imports System.Windows.Navigation +Imports System.Windows.Shapes +Imports System.Windows.Shell + + +''' +'''FlatPartsImportUC +''' + _ +Partial Public Class FlatPartsImportUC + Inherits System.Windows.Controls.UserControl + Implements System.Windows.Markup.IComponentConnector + + + #ExternalSource("..\..\..\FlatPartsImportUC.xaml",15) + _ + Friend WithEvents BackGroundGridFlatPartsImport As System.Windows.Controls.Grid + + #End ExternalSource + + + #ExternalSource("..\..\..\FlatPartsImportUC.xaml",28) + _ + Friend WithEvents ListView1 As System.Windows.Controls.ListView + + #End ExternalSource + + Private _contentLoaded As Boolean + + ''' + '''InitializeComponent + ''' + _ + Public Sub InitializeComponent() Implements System.Windows.Markup.IComponentConnector.InitializeComponent + If _contentLoaded Then + Return + End If + _contentLoaded = true + Dim resourceLocater As System.Uri = New System.Uri("/OmagCUT;component/flatpartsimportuc.xaml", System.UriKind.Relative) + + #ExternalSource("..\..\..\FlatPartsImportUC.xaml",1) + System.Windows.Application.LoadComponent(Me, resourceLocater) + + #End ExternalSource + End Sub + + _ + Sub System_Windows_Markup_IComponentConnector_Connect(ByVal connectionId As Integer, ByVal target As Object) Implements System.Windows.Markup.IComponentConnector.Connect + If (connectionId = 1) Then + + #ExternalSource("..\..\..\FlatPartsImportUC.xaml",7) + AddHandler CType(target,FlatPartsImportUC).Loaded, New System.Windows.RoutedEventHandler(AddressOf Me.FlatPartsImportUC_Loaded) + + #End ExternalSource + + #ExternalSource("..\..\..\FlatPartsImportUC.xaml",7) + AddHandler CType(target,FlatPartsImportUC).Initialized, New System.EventHandler(AddressOf Me.FlatPartsImportUC_Initialized) + + #End ExternalSource + Return + End If + If (connectionId = 2) Then + Me.BackGroundGridFlatPartsImport = CType(target,System.Windows.Controls.Grid) + Return + End If + If (connectionId = 3) Then + Me.ListView1 = CType(target,System.Windows.Controls.ListView) + + #ExternalSource("..\..\..\FlatPartsImportUC.xaml",28) + AddHandler Me.ListView1.SelectionChanged, New System.Windows.Controls.SelectionChangedEventHandler(AddressOf Me.ScenaFlatPartsImportUC_SelectionChanged) + + #End ExternalSource + Return + End If + Me._contentLoaded = true + End Sub +End Class + diff --git a/obj/x86/Release/FlatPartsImportUC.g.vb b/obj/x86/Release/FlatPartsImportUC.g.vb new file mode 100644 index 0000000..9c08058 --- /dev/null +++ b/obj/x86/Release/FlatPartsImportUC.g.vb @@ -0,0 +1,116 @@ +#ExternalChecksum("..\..\..\FlatPartsImportUC.xaml","{406ea660-64cf-4c82-b6f0-42d48172a799}","D268B6D2AC690553285DD8AF1F594C67") +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.34209 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict Off +Option Explicit On + +Imports System +Imports System.Diagnostics +Imports System.Windows +Imports System.Windows.Automation +Imports System.Windows.Controls +Imports System.Windows.Controls.Primitives +Imports System.Windows.Data +Imports System.Windows.Documents +Imports System.Windows.Forms.Integration +Imports System.Windows.Ink +Imports System.Windows.Input +Imports System.Windows.Markup +Imports System.Windows.Media +Imports System.Windows.Media.Animation +Imports System.Windows.Media.Effects +Imports System.Windows.Media.Imaging +Imports System.Windows.Media.Media3D +Imports System.Windows.Media.TextFormatting +Imports System.Windows.Navigation +Imports System.Windows.Shapes +Imports System.Windows.Shell + + +''' +'''FlatPartsImportUC +''' + _ +Partial Public Class FlatPartsImportUC + Inherits System.Windows.Controls.UserControl + Implements System.Windows.Markup.IComponentConnector + + + #ExternalSource("..\..\..\FlatPartsImportUC.xaml",15) + _ + Friend WithEvents BackGroundGridFlatPartsImport As System.Windows.Controls.Grid + + #End ExternalSource + + + #ExternalSource("..\..\..\FlatPartsImportUC.xaml",28) + _ + Friend WithEvents ListView1 As System.Windows.Controls.ListView + + #End ExternalSource + + Private _contentLoaded As Boolean + + ''' + '''InitializeComponent + ''' + _ + Public Sub InitializeComponent() Implements System.Windows.Markup.IComponentConnector.InitializeComponent + If _contentLoaded Then + Return + End If + _contentLoaded = true + Dim resourceLocater As System.Uri = New System.Uri("/OmagCUT;component/flatpartsimportuc.xaml", System.UriKind.Relative) + + #ExternalSource("..\..\..\FlatPartsImportUC.xaml",1) + System.Windows.Application.LoadComponent(Me, resourceLocater) + + #End ExternalSource + End Sub + + _ + Sub System_Windows_Markup_IComponentConnector_Connect(ByVal connectionId As Integer, ByVal target As Object) Implements System.Windows.Markup.IComponentConnector.Connect + If (connectionId = 1) Then + + #ExternalSource("..\..\..\FlatPartsImportUC.xaml",7) + AddHandler CType(target,FlatPartsImportUC).Loaded, New System.Windows.RoutedEventHandler(AddressOf Me.FlatPartsImportUC_Loaded) + + #End ExternalSource + + #ExternalSource("..\..\..\FlatPartsImportUC.xaml",7) + AddHandler CType(target,FlatPartsImportUC).Initialized, New System.EventHandler(AddressOf Me.FlatPartsImportUC_Initialized) + + #End ExternalSource + Return + End If + If (connectionId = 2) Then + Me.BackGroundGridFlatPartsImport = CType(target,System.Windows.Controls.Grid) + Return + End If + If (connectionId = 3) Then + Me.ListView1 = CType(target,System.Windows.Controls.ListView) + + #ExternalSource("..\..\..\FlatPartsImportUC.xaml",28) + AddHandler Me.ListView1.SelectionChanged, New System.Windows.Controls.SelectionChangedEventHandler(AddressOf Me.ScenaFlatPartsImportUC_SelectionChanged) + + #End ExternalSource + Return + End If + Me._contentLoaded = true + End Sub +End Class + diff --git a/obj/x86/Release/GeneratedInternalTypeHelper.g.i.vb b/obj/x86/Release/GeneratedInternalTypeHelper.g.i.vb new file mode 100644 index 0000000..68a15d0 --- /dev/null +++ b/obj/x86/Release/GeneratedInternalTypeHelper.g.i.vb @@ -0,0 +1,65 @@ +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.34209 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict Off +Option Explicit On + + + +Namespace XamlGeneratedNamespace + + ''' + '''GeneratedInternalTypeHelper + ''' + _ + Public NotInheritable Class GeneratedInternalTypeHelper + Inherits System.Windows.Markup.InternalTypeHelper + + ''' + '''CreateInstance + ''' + Protected Overrides Function CreateInstance(ByVal type As System.Type, ByVal culture As System.Globalization.CultureInfo) As Object + Return System.Activator.CreateInstance(type, ((System.Reflection.BindingFlags.[Public] Or System.Reflection.BindingFlags.NonPublic) _ + Or (System.Reflection.BindingFlags.Instance Or System.Reflection.BindingFlags.CreateInstance)), Nothing, Nothing, culture) + End Function + + ''' + '''GetPropertyValue + ''' + Protected Overrides Function GetPropertyValue(ByVal propertyInfo As System.Reflection.PropertyInfo, ByVal target As Object, ByVal culture As System.Globalization.CultureInfo) As Object + Return propertyInfo.GetValue(target, System.Reflection.BindingFlags.[Default], Nothing, Nothing, culture) + End Function + + ''' + '''SetPropertyValue + ''' + Protected Overrides Sub SetPropertyValue(ByVal propertyInfo As System.Reflection.PropertyInfo, ByVal target As Object, ByVal value As Object, ByVal culture As System.Globalization.CultureInfo) + propertyInfo.SetValue(target, value, System.Reflection.BindingFlags.[Default], Nothing, Nothing, culture) + End Sub + + ''' + '''CreateDelegate + ''' + Protected Overrides Function CreateDelegate(ByVal delegateType As System.Type, ByVal target As Object, ByVal handler As String) As System.[Delegate] + Return CType(target.GetType.InvokeMember("_CreateDelegate", (System.Reflection.BindingFlags.InvokeMethod _ + Or (System.Reflection.BindingFlags.NonPublic Or System.Reflection.BindingFlags.Instance)), Nothing, target, New Object() {delegateType, handler}, Nothing),System.[Delegate]) + End Function + + ''' + '''AddEventHandler + ''' + Protected Overrides Sub AddEventHandler(ByVal eventInfo As System.Reflection.EventInfo, ByVal target As Object, ByVal handler As System.[Delegate]) + eventInfo.AddEventHandler(target, handler) + End Sub + End Class +End Namespace + diff --git a/obj/x86/Release/GeneratedInternalTypeHelper.g.vb b/obj/x86/Release/GeneratedInternalTypeHelper.g.vb new file mode 100644 index 0000000..68a15d0 --- /dev/null +++ b/obj/x86/Release/GeneratedInternalTypeHelper.g.vb @@ -0,0 +1,65 @@ +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.34209 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict Off +Option Explicit On + + + +Namespace XamlGeneratedNamespace + + ''' + '''GeneratedInternalTypeHelper + ''' + _ + Public NotInheritable Class GeneratedInternalTypeHelper + Inherits System.Windows.Markup.InternalTypeHelper + + ''' + '''CreateInstance + ''' + Protected Overrides Function CreateInstance(ByVal type As System.Type, ByVal culture As System.Globalization.CultureInfo) As Object + Return System.Activator.CreateInstance(type, ((System.Reflection.BindingFlags.[Public] Or System.Reflection.BindingFlags.NonPublic) _ + Or (System.Reflection.BindingFlags.Instance Or System.Reflection.BindingFlags.CreateInstance)), Nothing, Nothing, culture) + End Function + + ''' + '''GetPropertyValue + ''' + Protected Overrides Function GetPropertyValue(ByVal propertyInfo As System.Reflection.PropertyInfo, ByVal target As Object, ByVal culture As System.Globalization.CultureInfo) As Object + Return propertyInfo.GetValue(target, System.Reflection.BindingFlags.[Default], Nothing, Nothing, culture) + End Function + + ''' + '''SetPropertyValue + ''' + Protected Overrides Sub SetPropertyValue(ByVal propertyInfo As System.Reflection.PropertyInfo, ByVal target As Object, ByVal value As Object, ByVal culture As System.Globalization.CultureInfo) + propertyInfo.SetValue(target, value, System.Reflection.BindingFlags.[Default], Nothing, Nothing, culture) + End Sub + + ''' + '''CreateDelegate + ''' + Protected Overrides Function CreateDelegate(ByVal delegateType As System.Type, ByVal target As Object, ByVal handler As String) As System.[Delegate] + Return CType(target.GetType.InvokeMember("_CreateDelegate", (System.Reflection.BindingFlags.InvokeMethod _ + Or (System.Reflection.BindingFlags.NonPublic Or System.Reflection.BindingFlags.Instance)), Nothing, target, New Object() {delegateType, handler}, Nothing),System.[Delegate]) + End Function + + ''' + '''AddEventHandler + ''' + Protected Overrides Sub AddEventHandler(ByVal eventInfo As System.Reflection.EventInfo, ByVal target As Object, ByVal handler As System.[Delegate]) + eventInfo.AddEventHandler(target, handler) + End Sub + End Class +End Namespace + diff --git a/obj/x86/Release/GrezzoUC.baml b/obj/x86/Release/GrezzoUC.baml new file mode 100644 index 0000000..6bd2fc5 Binary files /dev/null and b/obj/x86/Release/GrezzoUC.baml differ diff --git a/obj/x86/Release/GrezzoUC.g.i.vb b/obj/x86/Release/GrezzoUC.g.i.vb new file mode 100644 index 0000000..195b376 --- /dev/null +++ b/obj/x86/Release/GrezzoUC.g.i.vb @@ -0,0 +1,209 @@ +#ExternalChecksum("..\..\..\GrezzoUC.xaml","{406ea660-64cf-4c82-b6f0-42d48172a799}","F96E403BAC1D8140199689EC0FB3FB5E") +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.34209 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict Off +Option Explicit On + +Imports System +Imports System.Diagnostics +Imports System.Windows +Imports System.Windows.Automation +Imports System.Windows.Controls +Imports System.Windows.Controls.Primitives +Imports System.Windows.Data +Imports System.Windows.Documents +Imports System.Windows.Forms.Integration +Imports System.Windows.Ink +Imports System.Windows.Input +Imports System.Windows.Markup +Imports System.Windows.Media +Imports System.Windows.Media.Animation +Imports System.Windows.Media.Effects +Imports System.Windows.Media.Imaging +Imports System.Windows.Media.Media3D +Imports System.Windows.Media.TextFormatting +Imports System.Windows.Navigation +Imports System.Windows.Shapes +Imports System.Windows.Shell + + +''' +'''GrezzoUC +''' + _ +Partial Public Class GrezzoUC + Inherits System.Windows.Controls.UserControl + Implements System.Windows.Markup.IComponentConnector + + + #ExternalSource("..\..\..\GrezzoUC.xaml",45) + _ + Friend WithEvents RectangleBtn As System.Windows.Controls.Button + + #End ExternalSource + + + #ExternalSource("..\..\..\GrezzoUC.xaml",46) + _ + Friend WithEvents ByPointsBtn As System.Windows.Controls.Button + + #End ExternalSource + + + #ExternalSource("..\..\..\GrezzoUC.xaml",48) + _ + Friend WithEvents WidthLbl As System.Windows.Controls.Label + + #End ExternalSource + + + #ExternalSource("..\..\..\GrezzoUC.xaml",51) + _ + Friend WithEvents WidthTxBx As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\GrezzoUC.xaml",80) + _ + Friend WithEvents KerfLbl As System.Windows.Controls.Label + + #End ExternalSource + + + #ExternalSource("..\..\..\GrezzoUC.xaml",82) + _ + Friend WithEvents KerfBtn As System.Windows.Controls.Button + + #End ExternalSource + + + #ExternalSource("..\..\..\GrezzoUC.xaml",86) + _ + Friend WithEvents KerfThicknessLbl As System.Windows.Controls.Label + + #End ExternalSource + + + #ExternalSource("..\..\..\GrezzoUC.xaml",108) + _ + Friend WithEvents Lbl As System.Windows.Controls.Label + + #End ExternalSource + + + #ExternalSource("..\..\..\GrezzoUC.xaml",131) + _ + Friend WithEvents Ldfbl As System.Windows.Controls.Label + + #End ExternalSource + + Private _contentLoaded As Boolean + + ''' + '''InitializeComponent + ''' + _ + Public Sub InitializeComponent() Implements System.Windows.Markup.IComponentConnector.InitializeComponent + If _contentLoaded Then + Return + End If + _contentLoaded = true + Dim resourceLocater As System.Uri = New System.Uri("/OmagCUT;component/grezzouc.xaml", System.UriKind.Relative) + + #ExternalSource("..\..\..\GrezzoUC.xaml",1) + System.Windows.Application.LoadComponent(Me, resourceLocater) + + #End ExternalSource + End Sub + + _ + Sub System_Windows_Markup_IComponentConnector_Connect(ByVal connectionId As Integer, ByVal target As Object) Implements System.Windows.Markup.IComponentConnector.Connect + If (connectionId = 1) Then + + #ExternalSource("..\..\..\GrezzoUC.xaml",8) + AddHandler CType(target,GrezzoUC).Loaded, New System.Windows.RoutedEventHandler(AddressOf Me.GrezzoUC_Loaded) + + #End ExternalSource + + #ExternalSource("..\..\..\GrezzoUC.xaml",8) + AddHandler CType(target,GrezzoUC).Initialized, New System.EventHandler(AddressOf Me.GrezzoUC_Initialized) + + #End ExternalSource + Return + End If + If (connectionId = 2) Then + Me.RectangleBtn = CType(target,System.Windows.Controls.Button) + Return + End If + If (connectionId = 3) Then + Me.ByPointsBtn = CType(target,System.Windows.Controls.Button) + + #ExternalSource("..\..\..\GrezzoUC.xaml",46) + AddHandler Me.ByPointsBtn.Click, New System.Windows.RoutedEventHandler(AddressOf Me.ByPointsBtnUC_Click) + + #End ExternalSource + Return + End If + If (connectionId = 4) Then + Me.WidthLbl = CType(target,System.Windows.Controls.Label) + Return + End If + If (connectionId = 5) Then + Me.WidthTxBx = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 6) Then + Me.KerfLbl = CType(target,System.Windows.Controls.Label) + Return + End If + If (connectionId = 7) Then + Me.KerfBtn = CType(target,System.Windows.Controls.Button) + Return + End If + If (connectionId = 8) Then + Me.KerfThicknessLbl = CType(target,System.Windows.Controls.Label) + Return + End If + If (connectionId = 9) Then + Me.Lbl = CType(target,System.Windows.Controls.Label) + Return + End If + If (connectionId = 10) Then + Me.Ldfbl = CType(target,System.Windows.Controls.Label) + Return + End If + If (connectionId = 11) Then + + #ExternalSource("..\..\..\GrezzoUC.xaml",139) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.ExitBtnUC_Click) + + #End ExternalSource + Return + End If + If (connectionId = 12) Then + + #ExternalSource("..\..\..\GrezzoUC.xaml",140) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.ConfirmBtn_Click) + + #End ExternalSource + Return + End If + Me._contentLoaded = true + End Sub +End Class + diff --git a/obj/x86/Release/GrezzoUC.g.vb b/obj/x86/Release/GrezzoUC.g.vb new file mode 100644 index 0000000..195b376 --- /dev/null +++ b/obj/x86/Release/GrezzoUC.g.vb @@ -0,0 +1,209 @@ +#ExternalChecksum("..\..\..\GrezzoUC.xaml","{406ea660-64cf-4c82-b6f0-42d48172a799}","F96E403BAC1D8140199689EC0FB3FB5E") +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.34209 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict Off +Option Explicit On + +Imports System +Imports System.Diagnostics +Imports System.Windows +Imports System.Windows.Automation +Imports System.Windows.Controls +Imports System.Windows.Controls.Primitives +Imports System.Windows.Data +Imports System.Windows.Documents +Imports System.Windows.Forms.Integration +Imports System.Windows.Ink +Imports System.Windows.Input +Imports System.Windows.Markup +Imports System.Windows.Media +Imports System.Windows.Media.Animation +Imports System.Windows.Media.Effects +Imports System.Windows.Media.Imaging +Imports System.Windows.Media.Media3D +Imports System.Windows.Media.TextFormatting +Imports System.Windows.Navigation +Imports System.Windows.Shapes +Imports System.Windows.Shell + + +''' +'''GrezzoUC +''' + _ +Partial Public Class GrezzoUC + Inherits System.Windows.Controls.UserControl + Implements System.Windows.Markup.IComponentConnector + + + #ExternalSource("..\..\..\GrezzoUC.xaml",45) + _ + Friend WithEvents RectangleBtn As System.Windows.Controls.Button + + #End ExternalSource + + + #ExternalSource("..\..\..\GrezzoUC.xaml",46) + _ + Friend WithEvents ByPointsBtn As System.Windows.Controls.Button + + #End ExternalSource + + + #ExternalSource("..\..\..\GrezzoUC.xaml",48) + _ + Friend WithEvents WidthLbl As System.Windows.Controls.Label + + #End ExternalSource + + + #ExternalSource("..\..\..\GrezzoUC.xaml",51) + _ + Friend WithEvents WidthTxBx As System.Windows.Controls.TextBox + + #End ExternalSource + + + #ExternalSource("..\..\..\GrezzoUC.xaml",80) + _ + Friend WithEvents KerfLbl As System.Windows.Controls.Label + + #End ExternalSource + + + #ExternalSource("..\..\..\GrezzoUC.xaml",82) + _ + Friend WithEvents KerfBtn As System.Windows.Controls.Button + + #End ExternalSource + + + #ExternalSource("..\..\..\GrezzoUC.xaml",86) + _ + Friend WithEvents KerfThicknessLbl As System.Windows.Controls.Label + + #End ExternalSource + + + #ExternalSource("..\..\..\GrezzoUC.xaml",108) + _ + Friend WithEvents Lbl As System.Windows.Controls.Label + + #End ExternalSource + + + #ExternalSource("..\..\..\GrezzoUC.xaml",131) + _ + Friend WithEvents Ldfbl As System.Windows.Controls.Label + + #End ExternalSource + + Private _contentLoaded As Boolean + + ''' + '''InitializeComponent + ''' + _ + Public Sub InitializeComponent() Implements System.Windows.Markup.IComponentConnector.InitializeComponent + If _contentLoaded Then + Return + End If + _contentLoaded = true + Dim resourceLocater As System.Uri = New System.Uri("/OmagCUT;component/grezzouc.xaml", System.UriKind.Relative) + + #ExternalSource("..\..\..\GrezzoUC.xaml",1) + System.Windows.Application.LoadComponent(Me, resourceLocater) + + #End ExternalSource + End Sub + + _ + Sub System_Windows_Markup_IComponentConnector_Connect(ByVal connectionId As Integer, ByVal target As Object) Implements System.Windows.Markup.IComponentConnector.Connect + If (connectionId = 1) Then + + #ExternalSource("..\..\..\GrezzoUC.xaml",8) + AddHandler CType(target,GrezzoUC).Loaded, New System.Windows.RoutedEventHandler(AddressOf Me.GrezzoUC_Loaded) + + #End ExternalSource + + #ExternalSource("..\..\..\GrezzoUC.xaml",8) + AddHandler CType(target,GrezzoUC).Initialized, New System.EventHandler(AddressOf Me.GrezzoUC_Initialized) + + #End ExternalSource + Return + End If + If (connectionId = 2) Then + Me.RectangleBtn = CType(target,System.Windows.Controls.Button) + Return + End If + If (connectionId = 3) Then + Me.ByPointsBtn = CType(target,System.Windows.Controls.Button) + + #ExternalSource("..\..\..\GrezzoUC.xaml",46) + AddHandler Me.ByPointsBtn.Click, New System.Windows.RoutedEventHandler(AddressOf Me.ByPointsBtnUC_Click) + + #End ExternalSource + Return + End If + If (connectionId = 4) Then + Me.WidthLbl = CType(target,System.Windows.Controls.Label) + Return + End If + If (connectionId = 5) Then + Me.WidthTxBx = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 6) Then + Me.KerfLbl = CType(target,System.Windows.Controls.Label) + Return + End If + If (connectionId = 7) Then + Me.KerfBtn = CType(target,System.Windows.Controls.Button) + Return + End If + If (connectionId = 8) Then + Me.KerfThicknessLbl = CType(target,System.Windows.Controls.Label) + Return + End If + If (connectionId = 9) Then + Me.Lbl = CType(target,System.Windows.Controls.Label) + Return + End If + If (connectionId = 10) Then + Me.Ldfbl = CType(target,System.Windows.Controls.Label) + Return + End If + If (connectionId = 11) Then + + #ExternalSource("..\..\..\GrezzoUC.xaml",139) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.ExitBtnUC_Click) + + #End ExternalSource + Return + End If + If (connectionId = 12) Then + + #ExternalSource("..\..\..\GrezzoUC.xaml",140) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.ConfirmBtn_Click) + + #End ExternalSource + Return + End If + Me._contentLoaded = true + End Sub +End Class + diff --git a/obj/x86/Release/LavoroInCorsoUC.baml b/obj/x86/Release/LavoroInCorsoUC.baml new file mode 100644 index 0000000..fffa8d3 Binary files /dev/null and b/obj/x86/Release/LavoroInCorsoUC.baml differ diff --git a/obj/x86/Release/LavoroInCorsoUC.g.i.vb b/obj/x86/Release/LavoroInCorsoUC.g.i.vb new file mode 100644 index 0000000..c5d15cb --- /dev/null +++ b/obj/x86/Release/LavoroInCorsoUC.g.i.vb @@ -0,0 +1,100 @@ +#ExternalChecksum("..\..\..\LavoroInCorsoUC.xaml","{406ea660-64cf-4c82-b6f0-42d48172a799}","71E237E960394571F1D2E9C83692A3E9") +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.34209 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict Off +Option Explicit On + +Imports System +Imports System.Diagnostics +Imports System.Windows +Imports System.Windows.Automation +Imports System.Windows.Controls +Imports System.Windows.Controls.Primitives +Imports System.Windows.Data +Imports System.Windows.Documents +Imports System.Windows.Forms.Integration +Imports System.Windows.Ink +Imports System.Windows.Input +Imports System.Windows.Markup +Imports System.Windows.Media +Imports System.Windows.Media.Animation +Imports System.Windows.Media.Effects +Imports System.Windows.Media.Imaging +Imports System.Windows.Media.Media3D +Imports System.Windows.Media.TextFormatting +Imports System.Windows.Navigation +Imports System.Windows.Shapes +Imports System.Windows.Shell + + +''' +'''LavoroInCorsoUC +''' + _ +Partial Public Class LavoroInCorsoUC + Inherits System.Windows.Controls.UserControl + Implements System.Windows.Markup.IComponentConnector + + + #ExternalSource("..\..\..\LavoroInCorsoUC.xaml",14) + _ + Friend WithEvents BackGroundGridLavoroInCorso As System.Windows.Controls.Grid + + #End ExternalSource + + Private _contentLoaded As Boolean + + ''' + '''InitializeComponent + ''' + _ + Public Sub InitializeComponent() Implements System.Windows.Markup.IComponentConnector.InitializeComponent + If _contentLoaded Then + Return + End If + _contentLoaded = true + Dim resourceLocater As System.Uri = New System.Uri("/OmagCUT;component/lavoroincorsouc.xaml", System.UriKind.Relative) + + #ExternalSource("..\..\..\LavoroInCorsoUC.xaml",1) + System.Windows.Application.LoadComponent(Me, resourceLocater) + + #End ExternalSource + End Sub + + _ + Sub System_Windows_Markup_IComponentConnector_Connect(ByVal connectionId As Integer, ByVal target As Object) Implements System.Windows.Markup.IComponentConnector.Connect + If (connectionId = 1) Then + + #ExternalSource("..\..\..\LavoroInCorsoUC.xaml",6) + AddHandler CType(target,LavoroInCorsoUC).Unloaded, New System.Windows.RoutedEventHandler(AddressOf Me.LavoroInCorsoUC_Unloaded) + + #End ExternalSource + + #ExternalSource("..\..\..\LavoroInCorsoUC.xaml",6) + AddHandler CType(target,LavoroInCorsoUC).Loaded, New System.Windows.RoutedEventHandler(AddressOf Me.LavoroInCorsoUC_Loaded) + + #End ExternalSource + Return + End If + If (connectionId = 2) Then + Me.BackGroundGridLavoroInCorso = CType(target,System.Windows.Controls.Grid) + Return + End If + Me._contentLoaded = true + End Sub +End Class + diff --git a/obj/x86/Release/LavoroInCorsoUC.g.vb b/obj/x86/Release/LavoroInCorsoUC.g.vb new file mode 100644 index 0000000..c5d15cb --- /dev/null +++ b/obj/x86/Release/LavoroInCorsoUC.g.vb @@ -0,0 +1,100 @@ +#ExternalChecksum("..\..\..\LavoroInCorsoUC.xaml","{406ea660-64cf-4c82-b6f0-42d48172a799}","71E237E960394571F1D2E9C83692A3E9") +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.34209 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict Off +Option Explicit On + +Imports System +Imports System.Diagnostics +Imports System.Windows +Imports System.Windows.Automation +Imports System.Windows.Controls +Imports System.Windows.Controls.Primitives +Imports System.Windows.Data +Imports System.Windows.Documents +Imports System.Windows.Forms.Integration +Imports System.Windows.Ink +Imports System.Windows.Input +Imports System.Windows.Markup +Imports System.Windows.Media +Imports System.Windows.Media.Animation +Imports System.Windows.Media.Effects +Imports System.Windows.Media.Imaging +Imports System.Windows.Media.Media3D +Imports System.Windows.Media.TextFormatting +Imports System.Windows.Navigation +Imports System.Windows.Shapes +Imports System.Windows.Shell + + +''' +'''LavoroInCorsoUC +''' + _ +Partial Public Class LavoroInCorsoUC + Inherits System.Windows.Controls.UserControl + Implements System.Windows.Markup.IComponentConnector + + + #ExternalSource("..\..\..\LavoroInCorsoUC.xaml",14) + _ + Friend WithEvents BackGroundGridLavoroInCorso As System.Windows.Controls.Grid + + #End ExternalSource + + Private _contentLoaded As Boolean + + ''' + '''InitializeComponent + ''' + _ + Public Sub InitializeComponent() Implements System.Windows.Markup.IComponentConnector.InitializeComponent + If _contentLoaded Then + Return + End If + _contentLoaded = true + Dim resourceLocater As System.Uri = New System.Uri("/OmagCUT;component/lavoroincorsouc.xaml", System.UriKind.Relative) + + #ExternalSource("..\..\..\LavoroInCorsoUC.xaml",1) + System.Windows.Application.LoadComponent(Me, resourceLocater) + + #End ExternalSource + End Sub + + _ + Sub System_Windows_Markup_IComponentConnector_Connect(ByVal connectionId As Integer, ByVal target As Object) Implements System.Windows.Markup.IComponentConnector.Connect + If (connectionId = 1) Then + + #ExternalSource("..\..\..\LavoroInCorsoUC.xaml",6) + AddHandler CType(target,LavoroInCorsoUC).Unloaded, New System.Windows.RoutedEventHandler(AddressOf Me.LavoroInCorsoUC_Unloaded) + + #End ExternalSource + + #ExternalSource("..\..\..\LavoroInCorsoUC.xaml",6) + AddHandler CType(target,LavoroInCorsoUC).Loaded, New System.Windows.RoutedEventHandler(AddressOf Me.LavoroInCorsoUC_Loaded) + + #End ExternalSource + Return + End If + If (connectionId = 2) Then + Me.BackGroundGridLavoroInCorso = CType(target,System.Windows.Controls.Grid) + Return + End If + Me._contentLoaded = true + End Sub +End Class + diff --git a/obj/x86/Release/MainWindow.baml b/obj/x86/Release/MainWindow.baml new file mode 100644 index 0000000..626b382 Binary files /dev/null and b/obj/x86/Release/MainWindow.baml differ diff --git a/obj/x86/Release/MainWindow.g.i.vb b/obj/x86/Release/MainWindow.g.i.vb new file mode 100644 index 0000000..07ebb17 --- /dev/null +++ b/obj/x86/Release/MainWindow.g.i.vb @@ -0,0 +1,256 @@ +#ExternalChecksum("..\..\..\MainWindow.xaml","{406ea660-64cf-4c82-b6f0-42d48172a799}","E5073DB6CC28CBA7046A3DF6DE3DBB4C") +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.34209 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict Off +Option Explicit On + +Imports OmagCUT +Imports System +Imports System.Diagnostics +Imports System.Windows +Imports System.Windows.Automation +Imports System.Windows.Controls +Imports System.Windows.Controls.Primitives +Imports System.Windows.Data +Imports System.Windows.Documents +Imports System.Windows.Forms.Integration +Imports System.Windows.Ink +Imports System.Windows.Input +Imports System.Windows.Markup +Imports System.Windows.Media +Imports System.Windows.Media.Animation +Imports System.Windows.Media.Effects +Imports System.Windows.Media.Imaging +Imports System.Windows.Media.Media3D +Imports System.Windows.Media.TextFormatting +Imports System.Windows.Navigation +Imports System.Windows.Shapes +Imports System.Windows.Shell + + +''' +'''MainWindow +''' + _ +Partial Public Class MainWindow + Inherits System.Windows.Window + Implements System.Windows.Markup.IComponentConnector + + + #ExternalSource("..\..\..\MainWindow.xaml",12) + _ + Friend WithEvents MainGrid As System.Windows.Controls.Grid + + #End ExternalSource + + + #ExternalSource("..\..\..\MainWindow.xaml",46) + _ + Friend WithEvents TabControl As System.Windows.Controls.TabControl + + #End ExternalSource + + + #ExternalSource("..\..\..\MainWindow.xaml",50) + _ + Friend WithEvents TabLavoroInCorso As System.Windows.Controls.TabItem + + #End ExternalSource + + + #ExternalSource("..\..\..\MainWindow.xaml",67) + _ + Friend WithEvents LavoroInCorsoUC As OmagCUT.LavoroInCorsoUC + + #End ExternalSource + + + #ExternalSource("..\..\..\MainWindow.xaml",74) + _ + Friend WithEvents TabTagliDiretti As System.Windows.Controls.TabItem + + #End ExternalSource + + + #ExternalSource("..\..\..\MainWindow.xaml",91) + _ + Friend WithEvents TagliDirettiUC As OmagCUT.TagliDirettiUC + + #End ExternalSource + + + #ExternalSource("..\..\..\MainWindow.xaml",98) + _ + Friend WithEvents TabTagliCad As System.Windows.Controls.TabItem + + #End ExternalSource + + + #ExternalSource("..\..\..\MainWindow.xaml",115) + _ + Friend WithEvents TagliCadContent As System.Windows.Controls.ContentPresenter + + #End ExternalSource + + + #ExternalSource("..\..\..\MainWindow.xaml",122) + _ + Friend WithEvents TabLavorazioneCornici As System.Windows.Controls.TabItem + + #End ExternalSource + + + #ExternalSource("..\..\..\MainWindow.xaml",139) + _ + Friend WithEvents CorniciUC As OmagCUT.CorniciUC + + #End ExternalSource + + + #ExternalSource("..\..\..\MainWindow.xaml",146) + _ + Friend WithEvents TabComandiMacchina As System.Windows.Controls.TabItem + + #End ExternalSource + + + #ExternalSource("..\..\..\MainWindow.xaml",171) + _ + Friend WithEvents TabAllarmi As System.Windows.Controls.TabItem + + #End ExternalSource + + + #ExternalSource("..\..\..\MainWindow.xaml",196) + _ + Friend WithEvents TabComandiConfigurazione As System.Windows.Controls.TabItem + + #End ExternalSource + + Private _contentLoaded As Boolean + + ''' + '''InitializeComponent + ''' + _ + Public Sub InitializeComponent() Implements System.Windows.Markup.IComponentConnector.InitializeComponent + If _contentLoaded Then + Return + End If + _contentLoaded = true + Dim resourceLocater As System.Uri = New System.Uri("/OmagCUT;component/mainwindow.xaml", System.UriKind.Relative) + + #ExternalSource("..\..\..\MainWindow.xaml",1) + System.Windows.Application.LoadComponent(Me, resourceLocater) + + #End ExternalSource + End Sub + + _ + Sub System_Windows_Markup_IComponentConnector_Connect(ByVal connectionId As Integer, ByVal target As Object) Implements System.Windows.Markup.IComponentConnector.Connect + If (connectionId = 1) Then + + #ExternalSource("..\..\..\MainWindow.xaml",5) + AddHandler CType(target,MainWindow).Loaded, New System.Windows.RoutedEventHandler(AddressOf Me.Window_Loaded) + + #End ExternalSource + + #ExternalSource("..\..\..\MainWindow.xaml",5) + AddHandler CType(target,MainWindow).Initialized, New System.EventHandler(AddressOf Me.Window_Initialized) + + #End ExternalSource + + #ExternalSource("..\..\..\MainWindow.xaml",5) + AddHandler CType(target,MainWindow).PreviewMouseDown, New System.Windows.Input.MouseButtonEventHandler(AddressOf Me.MainWindow_PreviewMouseDown) + + #End ExternalSource + + #ExternalSource("..\..\..\MainWindow.xaml",5) + AddHandler CType(target,MainWindow).KeyDown, New System.Windows.Input.KeyEventHandler(AddressOf Me.MainWindow_KeyDown) + + #End ExternalSource + Return + End If + If (connectionId = 2) Then + Me.MainGrid = CType(target,System.Windows.Controls.Grid) + Return + End If + If (connectionId = 3) Then + + #ExternalSource("..\..\..\MainWindow.xaml",37) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.ExitBtnMW_Click) + + #End ExternalSource + Return + End If + If (connectionId = 4) Then + Me.TabControl = CType(target,System.Windows.Controls.TabControl) + + #ExternalSource("..\..\..\MainWindow.xaml",47) + AddHandler Me.TabControl.SelectionChanged, New System.Windows.Controls.SelectionChangedEventHandler(AddressOf Me.TabControl_SelectionChanged) + + #End ExternalSource + Return + End If + If (connectionId = 5) Then + Me.TabLavoroInCorso = CType(target,System.Windows.Controls.TabItem) + Return + End If + If (connectionId = 6) Then + Me.LavoroInCorsoUC = CType(target,OmagCUT.LavoroInCorsoUC) + Return + End If + If (connectionId = 7) Then + Me.TabTagliDiretti = CType(target,System.Windows.Controls.TabItem) + Return + End If + If (connectionId = 8) Then + Me.TagliDirettiUC = CType(target,OmagCUT.TagliDirettiUC) + Return + End If + If (connectionId = 9) Then + Me.TabTagliCad = CType(target,System.Windows.Controls.TabItem) + Return + End If + If (connectionId = 10) Then + Me.TagliCadContent = CType(target,System.Windows.Controls.ContentPresenter) + Return + End If + If (connectionId = 11) Then + Me.TabLavorazioneCornici = CType(target,System.Windows.Controls.TabItem) + Return + End If + If (connectionId = 12) Then + Me.CorniciUC = CType(target,OmagCUT.CorniciUC) + Return + End If + If (connectionId = 13) Then + Me.TabComandiMacchina = CType(target,System.Windows.Controls.TabItem) + Return + End If + If (connectionId = 14) Then + Me.TabAllarmi = CType(target,System.Windows.Controls.TabItem) + Return + End If + If (connectionId = 15) Then + Me.TabComandiConfigurazione = CType(target,System.Windows.Controls.TabItem) + Return + End If + Me._contentLoaded = true + End Sub +End Class + diff --git a/obj/x86/Release/MainWindow.g.vb b/obj/x86/Release/MainWindow.g.vb new file mode 100644 index 0000000..07ebb17 --- /dev/null +++ b/obj/x86/Release/MainWindow.g.vb @@ -0,0 +1,256 @@ +#ExternalChecksum("..\..\..\MainWindow.xaml","{406ea660-64cf-4c82-b6f0-42d48172a799}","E5073DB6CC28CBA7046A3DF6DE3DBB4C") +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.34209 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict Off +Option Explicit On + +Imports OmagCUT +Imports System +Imports System.Diagnostics +Imports System.Windows +Imports System.Windows.Automation +Imports System.Windows.Controls +Imports System.Windows.Controls.Primitives +Imports System.Windows.Data +Imports System.Windows.Documents +Imports System.Windows.Forms.Integration +Imports System.Windows.Ink +Imports System.Windows.Input +Imports System.Windows.Markup +Imports System.Windows.Media +Imports System.Windows.Media.Animation +Imports System.Windows.Media.Effects +Imports System.Windows.Media.Imaging +Imports System.Windows.Media.Media3D +Imports System.Windows.Media.TextFormatting +Imports System.Windows.Navigation +Imports System.Windows.Shapes +Imports System.Windows.Shell + + +''' +'''MainWindow +''' + _ +Partial Public Class MainWindow + Inherits System.Windows.Window + Implements System.Windows.Markup.IComponentConnector + + + #ExternalSource("..\..\..\MainWindow.xaml",12) + _ + Friend WithEvents MainGrid As System.Windows.Controls.Grid + + #End ExternalSource + + + #ExternalSource("..\..\..\MainWindow.xaml",46) + _ + Friend WithEvents TabControl As System.Windows.Controls.TabControl + + #End ExternalSource + + + #ExternalSource("..\..\..\MainWindow.xaml",50) + _ + Friend WithEvents TabLavoroInCorso As System.Windows.Controls.TabItem + + #End ExternalSource + + + #ExternalSource("..\..\..\MainWindow.xaml",67) + _ + Friend WithEvents LavoroInCorsoUC As OmagCUT.LavoroInCorsoUC + + #End ExternalSource + + + #ExternalSource("..\..\..\MainWindow.xaml",74) + _ + Friend WithEvents TabTagliDiretti As System.Windows.Controls.TabItem + + #End ExternalSource + + + #ExternalSource("..\..\..\MainWindow.xaml",91) + _ + Friend WithEvents TagliDirettiUC As OmagCUT.TagliDirettiUC + + #End ExternalSource + + + #ExternalSource("..\..\..\MainWindow.xaml",98) + _ + Friend WithEvents TabTagliCad As System.Windows.Controls.TabItem + + #End ExternalSource + + + #ExternalSource("..\..\..\MainWindow.xaml",115) + _ + Friend WithEvents TagliCadContent As System.Windows.Controls.ContentPresenter + + #End ExternalSource + + + #ExternalSource("..\..\..\MainWindow.xaml",122) + _ + Friend WithEvents TabLavorazioneCornici As System.Windows.Controls.TabItem + + #End ExternalSource + + + #ExternalSource("..\..\..\MainWindow.xaml",139) + _ + Friend WithEvents CorniciUC As OmagCUT.CorniciUC + + #End ExternalSource + + + #ExternalSource("..\..\..\MainWindow.xaml",146) + _ + Friend WithEvents TabComandiMacchina As System.Windows.Controls.TabItem + + #End ExternalSource + + + #ExternalSource("..\..\..\MainWindow.xaml",171) + _ + Friend WithEvents TabAllarmi As System.Windows.Controls.TabItem + + #End ExternalSource + + + #ExternalSource("..\..\..\MainWindow.xaml",196) + _ + Friend WithEvents TabComandiConfigurazione As System.Windows.Controls.TabItem + + #End ExternalSource + + Private _contentLoaded As Boolean + + ''' + '''InitializeComponent + ''' + _ + Public Sub InitializeComponent() Implements System.Windows.Markup.IComponentConnector.InitializeComponent + If _contentLoaded Then + Return + End If + _contentLoaded = true + Dim resourceLocater As System.Uri = New System.Uri("/OmagCUT;component/mainwindow.xaml", System.UriKind.Relative) + + #ExternalSource("..\..\..\MainWindow.xaml",1) + System.Windows.Application.LoadComponent(Me, resourceLocater) + + #End ExternalSource + End Sub + + _ + Sub System_Windows_Markup_IComponentConnector_Connect(ByVal connectionId As Integer, ByVal target As Object) Implements System.Windows.Markup.IComponentConnector.Connect + If (connectionId = 1) Then + + #ExternalSource("..\..\..\MainWindow.xaml",5) + AddHandler CType(target,MainWindow).Loaded, New System.Windows.RoutedEventHandler(AddressOf Me.Window_Loaded) + + #End ExternalSource + + #ExternalSource("..\..\..\MainWindow.xaml",5) + AddHandler CType(target,MainWindow).Initialized, New System.EventHandler(AddressOf Me.Window_Initialized) + + #End ExternalSource + + #ExternalSource("..\..\..\MainWindow.xaml",5) + AddHandler CType(target,MainWindow).PreviewMouseDown, New System.Windows.Input.MouseButtonEventHandler(AddressOf Me.MainWindow_PreviewMouseDown) + + #End ExternalSource + + #ExternalSource("..\..\..\MainWindow.xaml",5) + AddHandler CType(target,MainWindow).KeyDown, New System.Windows.Input.KeyEventHandler(AddressOf Me.MainWindow_KeyDown) + + #End ExternalSource + Return + End If + If (connectionId = 2) Then + Me.MainGrid = CType(target,System.Windows.Controls.Grid) + Return + End If + If (connectionId = 3) Then + + #ExternalSource("..\..\..\MainWindow.xaml",37) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.ExitBtnMW_Click) + + #End ExternalSource + Return + End If + If (connectionId = 4) Then + Me.TabControl = CType(target,System.Windows.Controls.TabControl) + + #ExternalSource("..\..\..\MainWindow.xaml",47) + AddHandler Me.TabControl.SelectionChanged, New System.Windows.Controls.SelectionChangedEventHandler(AddressOf Me.TabControl_SelectionChanged) + + #End ExternalSource + Return + End If + If (connectionId = 5) Then + Me.TabLavoroInCorso = CType(target,System.Windows.Controls.TabItem) + Return + End If + If (connectionId = 6) Then + Me.LavoroInCorsoUC = CType(target,OmagCUT.LavoroInCorsoUC) + Return + End If + If (connectionId = 7) Then + Me.TabTagliDiretti = CType(target,System.Windows.Controls.TabItem) + Return + End If + If (connectionId = 8) Then + Me.TagliDirettiUC = CType(target,OmagCUT.TagliDirettiUC) + Return + End If + If (connectionId = 9) Then + Me.TabTagliCad = CType(target,System.Windows.Controls.TabItem) + Return + End If + If (connectionId = 10) Then + Me.TagliCadContent = CType(target,System.Windows.Controls.ContentPresenter) + Return + End If + If (connectionId = 11) Then + Me.TabLavorazioneCornici = CType(target,System.Windows.Controls.TabItem) + Return + End If + If (connectionId = 12) Then + Me.CorniciUC = CType(target,OmagCUT.CorniciUC) + Return + End If + If (connectionId = 13) Then + Me.TabComandiMacchina = CType(target,System.Windows.Controls.TabItem) + Return + End If + If (connectionId = 14) Then + Me.TabAllarmi = CType(target,System.Windows.Controls.TabItem) + Return + End If + If (connectionId = 15) Then + Me.TabComandiConfigurazione = CType(target,System.Windows.Controls.TabItem) + Return + End If + Me._contentLoaded = true + End Sub +End Class + diff --git a/obj/x86/Release/NumericKeyboadUC.g.i.vb b/obj/x86/Release/NumericKeyboadUC.g.i.vb new file mode 100644 index 0000000..38ba2df --- /dev/null +++ b/obj/x86/Release/NumericKeyboadUC.g.i.vb @@ -0,0 +1,76 @@ +#ExternalChecksum("..\..\..\NumericKeyboadUC.xaml","{406ea660-64cf-4c82-b6f0-42d48172a799}","8221F7E3B754C620E0BA9DA9400DAC10") +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.34209 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict Off +Option Explicit On + +Imports System +Imports System.Diagnostics +Imports System.Windows +Imports System.Windows.Automation +Imports System.Windows.Controls +Imports System.Windows.Controls.Primitives +Imports System.Windows.Data +Imports System.Windows.Documents +Imports System.Windows.Forms.Integration +Imports System.Windows.Ink +Imports System.Windows.Input +Imports System.Windows.Markup +Imports System.Windows.Media +Imports System.Windows.Media.Animation +Imports System.Windows.Media.Effects +Imports System.Windows.Media.Imaging +Imports System.Windows.Media.Media3D +Imports System.Windows.Media.TextFormatting +Imports System.Windows.Navigation +Imports System.Windows.Shapes +Imports System.Windows.Shell + + +''' +'''NumericKeyboadWD +''' + _ +Partial Public Class NumericKeyboadWD + Inherits System.Windows.Window + Implements System.Windows.Markup.IComponentConnector + + Private _contentLoaded As Boolean + + ''' + '''InitializeComponent + ''' + _ + Public Sub InitializeComponent() Implements System.Windows.Markup.IComponentConnector.InitializeComponent + If _contentLoaded Then + Return + End If + _contentLoaded = true + Dim resourceLocater As System.Uri = New System.Uri("/OmagCUT;component/numerickeyboaduc.xaml", System.UriKind.Relative) + + #ExternalSource("..\..\..\NumericKeyboadUC.xaml",1) + System.Windows.Application.LoadComponent(Me, resourceLocater) + + #End ExternalSource + End Sub + + _ + Sub System_Windows_Markup_IComponentConnector_Connect(ByVal connectionId As Integer, ByVal target As Object) Implements System.Windows.Markup.IComponentConnector.Connect + Me._contentLoaded = true + End Sub +End Class + diff --git a/obj/x86/Release/NumericKeyboardUC.g.i.vb b/obj/x86/Release/NumericKeyboardUC.g.i.vb new file mode 100644 index 0000000..3455fd4 --- /dev/null +++ b/obj/x86/Release/NumericKeyboardUC.g.i.vb @@ -0,0 +1,84 @@ +#ExternalChecksum("..\..\..\NumericKeyboardUC.xaml","{406ea660-64cf-4c82-b6f0-42d48172a799}","8B79F214505861335D8D7C738DA0BD0B") +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.34209 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict Off +Option Explicit On + +Imports System +Imports System.Diagnostics +Imports System.Windows +Imports System.Windows.Automation +Imports System.Windows.Controls +Imports System.Windows.Controls.Primitives +Imports System.Windows.Data +Imports System.Windows.Documents +Imports System.Windows.Forms.Integration +Imports System.Windows.Ink +Imports System.Windows.Input +Imports System.Windows.Markup +Imports System.Windows.Media +Imports System.Windows.Media.Animation +Imports System.Windows.Media.Effects +Imports System.Windows.Media.Imaging +Imports System.Windows.Media.Media3D +Imports System.Windows.Media.TextFormatting +Imports System.Windows.Navigation +Imports System.Windows.Shapes +Imports System.Windows.Shell + + +''' +'''NumericKeyboardUC +''' + _ +Partial Public Class NumericKeyboardUC + Inherits System.Windows.Controls.UserControl + Implements System.Windows.Markup.IComponentConnector + + Private _contentLoaded As Boolean + + ''' + '''InitializeComponent + ''' + _ + Public Sub InitializeComponent() Implements System.Windows.Markup.IComponentConnector.InitializeComponent + If _contentLoaded Then + Return + End If + _contentLoaded = true + Dim resourceLocater As System.Uri = New System.Uri("/OmagCUT;component/numerickeyboarduc.xaml", System.UriKind.Relative) + + #ExternalSource("..\..\..\NumericKeyboardUC.xaml",1) + System.Windows.Application.LoadComponent(Me, resourceLocater) + + #End ExternalSource + End Sub + + _ + Sub System_Windows_Markup_IComponentConnector_Connect(ByVal connectionId As Integer, ByVal target As Object) Implements System.Windows.Markup.IComponentConnector.Connect + If (connectionId = 1) Then + + #ExternalSource("..\..\..\NumericKeyboardUC.xaml",49) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.ExitBtnUC_Click) + + #End ExternalSource + Return + End If + Me._contentLoaded = true + End Sub +End Class + diff --git a/obj/x86/Release/NumericKeyboardWD.baml b/obj/x86/Release/NumericKeyboardWD.baml new file mode 100644 index 0000000..6eddc5d Binary files /dev/null and b/obj/x86/Release/NumericKeyboardWD.baml differ diff --git a/obj/x86/Release/NumericKeyboardWD.g.i.vb b/obj/x86/Release/NumericKeyboardWD.g.i.vb new file mode 100644 index 0000000..daa8c8b --- /dev/null +++ b/obj/x86/Release/NumericKeyboardWD.g.i.vb @@ -0,0 +1,276 @@ +#ExternalChecksum("..\..\..\NumericKeyboardWD.xaml","{406ea660-64cf-4c82-b6f0-42d48172a799}","05C0DCF18B92B6F4BF55081AF0EF8E23") +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.34209 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict Off +Option Explicit On + +Imports System +Imports System.Diagnostics +Imports System.Windows +Imports System.Windows.Automation +Imports System.Windows.Controls +Imports System.Windows.Controls.Primitives +Imports System.Windows.Data +Imports System.Windows.Documents +Imports System.Windows.Forms.Integration +Imports System.Windows.Ink +Imports System.Windows.Input +Imports System.Windows.Markup +Imports System.Windows.Media +Imports System.Windows.Media.Animation +Imports System.Windows.Media.Effects +Imports System.Windows.Media.Imaging +Imports System.Windows.Media.Media3D +Imports System.Windows.Media.TextFormatting +Imports System.Windows.Navigation +Imports System.Windows.Shapes +Imports System.Windows.Shell + + +''' +'''NumericKeyboardWD +''' + _ +Partial Public Class NumericKeyboardWD + Inherits System.Windows.Window + Implements System.Windows.Markup.IComponentConnector + + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",44) + _ + Friend WithEvents NumericKeyboardWDTitle As System.Windows.Controls.TextBlock + + #End ExternalSource + + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",46) + _ + Friend WithEvents NumericKeyboardWDTextBox As System.Windows.Controls.TextBox + + #End ExternalSource + + Private _contentLoaded As Boolean + + ''' + '''InitializeComponent + ''' + _ + Public Sub InitializeComponent() Implements System.Windows.Markup.IComponentConnector.InitializeComponent + If _contentLoaded Then + Return + End If + _contentLoaded = true + Dim resourceLocater As System.Uri = New System.Uri("/OmagCUT;component/numerickeyboardwd.xaml", System.UriKind.Relative) + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",1) + System.Windows.Application.LoadComponent(Me, resourceLocater) + + #End ExternalSource + End Sub + + _ + Sub System_Windows_Markup_IComponentConnector_Connect(ByVal connectionId As Integer, ByVal target As Object) Implements System.Windows.Markup.IComponentConnector.Connect + If (connectionId = 1) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",4) + AddHandler CType(target,NumericKeyboardWD).Unloaded, New System.Windows.RoutedEventHandler(AddressOf Me.NumericKeyboardWD_Unloaded) + + #End ExternalSource + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",4) + AddHandler CType(target,NumericKeyboardWD).KeyDown, New System.Windows.Input.KeyEventHandler(AddressOf Me.NumericKeyboardWD_KeyDown) + + #End ExternalSource + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",4) + AddHandler CType(target,NumericKeyboardWD).IsVisibleChanged, New System.Windows.DependencyPropertyChangedEventHandler(AddressOf Me.NumericKeyboardWD_IsVisibleChanged) + + #End ExternalSource + Return + End If + If (connectionId = 2) Then + Me.NumericKeyboardWDTitle = CType(target,System.Windows.Controls.TextBlock) + Return + End If + If (connectionId = 3) Then + Me.NumericKeyboardWDTextBox = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 4) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",48) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.Btn7WD_Click) + + #End ExternalSource + Return + End If + If (connectionId = 5) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",49) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.Btn8WD_Click) + + #End ExternalSource + Return + End If + If (connectionId = 6) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",50) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.Btn9WD_Click) + + #End ExternalSource + Return + End If + If (connectionId = 7) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",51) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.BtnPlusWD_Click) + + #End ExternalSource + Return + End If + If (connectionId = 8) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",52) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.BtnDeleteWD_Click) + + #End ExternalSource + Return + End If + If (connectionId = 9) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",53) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.Btn4WD_Click) + + #End ExternalSource + Return + End If + If (connectionId = 10) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",54) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.Btn5WD_Click) + + #End ExternalSource + Return + End If + If (connectionId = 11) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",55) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.Btn6WD_Click) + + #End ExternalSource + Return + End If + If (connectionId = 12) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",56) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.BtnMinusWD_Click) + + #End ExternalSource + Return + End If + If (connectionId = 13) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",57) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.BtnCancelWD_Click) + + #End ExternalSource + Return + End If + If (connectionId = 14) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",58) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.Btn1WD_Click) + + #End ExternalSource + Return + End If + If (connectionId = 15) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",59) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.Btn2WD_Click) + + #End ExternalSource + Return + End If + If (connectionId = 16) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",60) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.Btn3WD_Click) + + #End ExternalSource + Return + End If + If (connectionId = 17) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",61) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.BtnMultiplicationWD_Click) + + #End ExternalSource + Return + End If + If (connectionId = 18) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",62) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.BtnExitWD_Click) + + #End ExternalSource + Return + End If + If (connectionId = 19) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",63) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.Btn0WD_Click) + + #End ExternalSource + Return + End If + If (connectionId = 20) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",64) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.BtnDotWD_Click) + + #End ExternalSource + Return + End If + If (connectionId = 21) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",65) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.BtnEvaluateWD_Click) + + #End ExternalSource + Return + End If + If (connectionId = 22) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",66) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.BtnDivisionWD_Click) + + #End ExternalSource + Return + End If + If (connectionId = 23) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",67) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.BtnApplyWD_Click) + + #End ExternalSource + Return + End If + Me._contentLoaded = true + End Sub +End Class + diff --git a/obj/x86/Release/NumericKeyboardWD.g.vb b/obj/x86/Release/NumericKeyboardWD.g.vb new file mode 100644 index 0000000..daa8c8b --- /dev/null +++ b/obj/x86/Release/NumericKeyboardWD.g.vb @@ -0,0 +1,276 @@ +#ExternalChecksum("..\..\..\NumericKeyboardWD.xaml","{406ea660-64cf-4c82-b6f0-42d48172a799}","05C0DCF18B92B6F4BF55081AF0EF8E23") +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.34209 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict Off +Option Explicit On + +Imports System +Imports System.Diagnostics +Imports System.Windows +Imports System.Windows.Automation +Imports System.Windows.Controls +Imports System.Windows.Controls.Primitives +Imports System.Windows.Data +Imports System.Windows.Documents +Imports System.Windows.Forms.Integration +Imports System.Windows.Ink +Imports System.Windows.Input +Imports System.Windows.Markup +Imports System.Windows.Media +Imports System.Windows.Media.Animation +Imports System.Windows.Media.Effects +Imports System.Windows.Media.Imaging +Imports System.Windows.Media.Media3D +Imports System.Windows.Media.TextFormatting +Imports System.Windows.Navigation +Imports System.Windows.Shapes +Imports System.Windows.Shell + + +''' +'''NumericKeyboardWD +''' + _ +Partial Public Class NumericKeyboardWD + Inherits System.Windows.Window + Implements System.Windows.Markup.IComponentConnector + + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",44) + _ + Friend WithEvents NumericKeyboardWDTitle As System.Windows.Controls.TextBlock + + #End ExternalSource + + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",46) + _ + Friend WithEvents NumericKeyboardWDTextBox As System.Windows.Controls.TextBox + + #End ExternalSource + + Private _contentLoaded As Boolean + + ''' + '''InitializeComponent + ''' + _ + Public Sub InitializeComponent() Implements System.Windows.Markup.IComponentConnector.InitializeComponent + If _contentLoaded Then + Return + End If + _contentLoaded = true + Dim resourceLocater As System.Uri = New System.Uri("/OmagCUT;component/numerickeyboardwd.xaml", System.UriKind.Relative) + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",1) + System.Windows.Application.LoadComponent(Me, resourceLocater) + + #End ExternalSource + End Sub + + _ + Sub System_Windows_Markup_IComponentConnector_Connect(ByVal connectionId As Integer, ByVal target As Object) Implements System.Windows.Markup.IComponentConnector.Connect + If (connectionId = 1) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",4) + AddHandler CType(target,NumericKeyboardWD).Unloaded, New System.Windows.RoutedEventHandler(AddressOf Me.NumericKeyboardWD_Unloaded) + + #End ExternalSource + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",4) + AddHandler CType(target,NumericKeyboardWD).KeyDown, New System.Windows.Input.KeyEventHandler(AddressOf Me.NumericKeyboardWD_KeyDown) + + #End ExternalSource + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",4) + AddHandler CType(target,NumericKeyboardWD).IsVisibleChanged, New System.Windows.DependencyPropertyChangedEventHandler(AddressOf Me.NumericKeyboardWD_IsVisibleChanged) + + #End ExternalSource + Return + End If + If (connectionId = 2) Then + Me.NumericKeyboardWDTitle = CType(target,System.Windows.Controls.TextBlock) + Return + End If + If (connectionId = 3) Then + Me.NumericKeyboardWDTextBox = CType(target,System.Windows.Controls.TextBox) + Return + End If + If (connectionId = 4) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",48) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.Btn7WD_Click) + + #End ExternalSource + Return + End If + If (connectionId = 5) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",49) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.Btn8WD_Click) + + #End ExternalSource + Return + End If + If (connectionId = 6) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",50) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.Btn9WD_Click) + + #End ExternalSource + Return + End If + If (connectionId = 7) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",51) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.BtnPlusWD_Click) + + #End ExternalSource + Return + End If + If (connectionId = 8) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",52) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.BtnDeleteWD_Click) + + #End ExternalSource + Return + End If + If (connectionId = 9) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",53) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.Btn4WD_Click) + + #End ExternalSource + Return + End If + If (connectionId = 10) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",54) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.Btn5WD_Click) + + #End ExternalSource + Return + End If + If (connectionId = 11) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",55) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.Btn6WD_Click) + + #End ExternalSource + Return + End If + If (connectionId = 12) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",56) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.BtnMinusWD_Click) + + #End ExternalSource + Return + End If + If (connectionId = 13) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",57) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.BtnCancelWD_Click) + + #End ExternalSource + Return + End If + If (connectionId = 14) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",58) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.Btn1WD_Click) + + #End ExternalSource + Return + End If + If (connectionId = 15) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",59) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.Btn2WD_Click) + + #End ExternalSource + Return + End If + If (connectionId = 16) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",60) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.Btn3WD_Click) + + #End ExternalSource + Return + End If + If (connectionId = 17) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",61) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.BtnMultiplicationWD_Click) + + #End ExternalSource + Return + End If + If (connectionId = 18) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",62) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.BtnExitWD_Click) + + #End ExternalSource + Return + End If + If (connectionId = 19) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",63) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.Btn0WD_Click) + + #End ExternalSource + Return + End If + If (connectionId = 20) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",64) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.BtnDotWD_Click) + + #End ExternalSource + Return + End If + If (connectionId = 21) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",65) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.BtnEvaluateWD_Click) + + #End ExternalSource + Return + End If + If (connectionId = 22) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",66) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.BtnDivisionWD_Click) + + #End ExternalSource + Return + End If + If (connectionId = 23) Then + + #ExternalSource("..\..\..\NumericKeyboardWD.xaml",67) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.BtnApplyWD_Click) + + #End ExternalSource + Return + End If + Me._contentLoaded = true + End Sub +End Class + diff --git a/obj/x86/Release/OmagCUT.Resources.resources b/obj/x86/Release/OmagCUT.Resources.resources new file mode 100644 index 0000000..6c05a97 Binary files /dev/null and b/obj/x86/Release/OmagCUT.Resources.resources differ diff --git a/obj/x86/Release/OmagCUT.exe b/obj/x86/Release/OmagCUT.exe new file mode 100644 index 0000000..3fdb575 Binary files /dev/null and b/obj/x86/Release/OmagCUT.exe differ diff --git a/obj/x86/Release/OmagCUT.g.resources b/obj/x86/Release/OmagCUT.g.resources new file mode 100644 index 0000000..f2372e4 Binary files /dev/null and b/obj/x86/Release/OmagCUT.g.resources differ diff --git a/obj/x86/Release/OmagCUT.vbproj.FileListAbsolute.txt b/obj/x86/Release/OmagCUT.vbproj.FileListAbsolute.txt new file mode 100644 index 0000000..996bc92 --- /dev/null +++ b/obj/x86/Release/OmagCUT.vbproj.FileListAbsolute.txt @@ -0,0 +1,38 @@ +C:\EgtDev\OmagCUT\obj\x86\Release\BarLavoraUC.baml +C:\EgtDev\OmagCUT\obj\x86\Release\BarNestingUC.baml +C:\EgtDev\OmagCUT\obj\x86\Release\ComponentiUC.baml +C:\EgtDev\OmagCUT\obj\x86\Release\CorniciUC.baml +C:\EgtDev\OmagCUT\obj\x86\Release\FlatPartsImportUC.baml +C:\EgtDev\OmagCUT\obj\x86\Release\GrezzoUC.baml +C:\EgtDev\OmagCUT\obj\x86\Release\LavoroInCorsoUC.baml +C:\EgtDev\OmagCUT\obj\x86\Release\NumericKeyboardWD.baml +C:\EgtDev\OmagCUT\obj\x86\Release\TagliCadUC.baml +C:\EgtDev\OmagCUT\obj\x86\Release\TagliDirettiUC.baml +C:\EgtDev\OmagCUT\obj\x86\Release\BarLavoraUC.g.vb +C:\EgtDev\OmagCUT\obj\x86\Release\BarNestingUC.g.vb +C:\EgtDev\OmagCUT\obj\x86\Release\ComponentiUC.g.vb +C:\EgtDev\OmagCUT\obj\x86\Release\CorniciUC.g.vb +C:\EgtDev\OmagCUT\obj\x86\Release\FlatPartsImportUC.g.vb +C:\EgtDev\OmagCUT\obj\x86\Release\GrezzoUC.g.vb +C:\EgtDev\OmagCUT\obj\x86\Release\LavoroInCorsoUC.g.vb +C:\EgtDev\OmagCUT\obj\x86\Release\MainWindow.g.vb +C:\EgtDev\OmagCUT\obj\x86\Release\NumericKeyboardWD.g.vb +C:\EgtDev\OmagCUT\obj\x86\Release\TagliCadUC.g.vb +C:\EgtDev\OmagCUT\obj\x86\Release\TagliDirettiUC.g.vb +C:\EgtDev\OmagCUT\obj\x86\Release\Application.g.vb +C:\EgtDev\OmagCUT\obj\x86\Release\GeneratedInternalTypeHelper.g.vb +C:\EgtDev\OmagCUT\obj\x86\Release\OmagCUT_MarkupCompile.cache +C:\EgtDev\OmagCUT\obj\x86\Release\OmagCUT_MarkupCompile.lref +C:\EgtDev\OmagCUT\obj\x86\Release\OmagCUTDictionary.baml +C:\EgtDev\OmagCUT\obj\x86\Release\OmagCUTDictionary.g.vb +C:\EgtDev\OmagCUT\bin\x86\Release\OmagCUT.exe.config +C:\EgtDev\OmagCUT\bin\x86\Release\OmagCUT.exe +C:\EgtDev\OmagCUT\bin\x86\Release\OmagCUT.xml +C:\EgtDev\OmagCUT\bin\x86\Release\EgtUILib.dll +C:\EgtDev\OmagCUT\obj\x86\Release\MainWindow.baml +C:\EgtDev\OmagCUT\obj\x86\Release\OmagCUT.g.resources +C:\EgtDev\OmagCUT\obj\x86\Release\OmagCUT.Resources.resources +C:\EgtDev\OmagCUT\obj\x86\Release\OmagCUT.vbproj.GenerateResource.Cache +C:\EgtDev\OmagCUT\obj\x86\Release\OmagCUT.exe +C:\EgtDev\OmagCUT\obj\x86\Release\OmagCUT.xml +C:\EgtDev\OmagCUT\obj\x86\Release\OmagCUT.vbprojResolveAssemblyReference.cache diff --git a/obj/x86/Release/OmagCUT.vbproj.GenerateResource.Cache b/obj/x86/Release/OmagCUT.vbproj.GenerateResource.Cache new file mode 100644 index 0000000..451699b Binary files /dev/null and b/obj/x86/Release/OmagCUT.vbproj.GenerateResource.Cache differ diff --git a/obj/x86/Release/OmagCUT.vbprojResolveAssemblyReference.cache b/obj/x86/Release/OmagCUT.vbprojResolveAssemblyReference.cache new file mode 100644 index 0000000..207ee1e Binary files /dev/null and b/obj/x86/Release/OmagCUT.vbprojResolveAssemblyReference.cache differ diff --git a/obj/x86/Release/OmagCUT.xml b/obj/x86/Release/OmagCUT.xml new file mode 100644 index 0000000..d0836d2 --- /dev/null +++ b/obj/x86/Release/OmagCUT.xml @@ -0,0 +1,178 @@ + + + + +OmagCUT + + + + + +InitializeComponent + + + +OmagCUTDictionary + + + +InitializeComponent + + + +TagliCadUC + + + +InitializeComponent + + + +MainWindow + + + +InitializeComponent + + + +TagliDirettiUC + + + +InitializeComponent + + + +CorniciUC + + + +InitializeComponent + + + +LavoroInCorsoUC + + + +InitializeComponent + + + +ComponentiUC + + + +InitializeComponent + + + +GrezzoUC + + + +CreateInstance + + + +GetPropertyValue + + + +SetPropertyValue + + + +CreateDelegate + + + +AddEventHandler + + + +GeneratedInternalTypeHelper + + + +InitializeComponent + + + +NumericKeyboardWD + + + +InitializeComponent + + + +BarLavoraUC + + + +InitializeComponent + + + +BarNestingUC + + + +Application Entry Point. + + + +Application + + + +InitializeComponent + + + +FlatPartsImportUC + + + + Returns the application object for the running application + + + + Returns information about the host computer. + + + + Returns information for the current user. If you wish to run the application with the current + Windows user credentials, call My.User.InitializeWithWindowsUser(). + + + + Returns the application log. The listeners can be configured by the application's configuration file. + + + + Returns the collection of Windows defined in the project. + + + + Module used to define the properties that are available in the My Namespace for WPF + + + + + Returns the cached ResourceManager instance used by this class. + + + + Overrides the current thread's CurrentUICulture property for all + resource lookups using this strongly typed resource class. + + + + A strongly-typed resource class, for looking up localized strings, etc. + + + + \ No newline at end of file diff --git a/obj/x86/Release/OmagCUTDictionary.baml b/obj/x86/Release/OmagCUTDictionary.baml new file mode 100644 index 0000000..aa831dc Binary files /dev/null and b/obj/x86/Release/OmagCUTDictionary.baml differ diff --git a/obj/x86/Release/OmagCUTDictionary.g.i.vb b/obj/x86/Release/OmagCUTDictionary.g.i.vb new file mode 100644 index 0000000..8397c9c --- /dev/null +++ b/obj/x86/Release/OmagCUTDictionary.g.i.vb @@ -0,0 +1,96 @@ +#ExternalChecksum("..\..\..\OmagCUTDictionary.xaml","{406ea660-64cf-4c82-b6f0-42d48172a799}","A73AE24B633F0AD0730C6E2D884010FB") +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.34209 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict Off +Option Explicit On + +Imports System +Imports System.Diagnostics +Imports System.Windows +Imports System.Windows.Automation +Imports System.Windows.Controls +Imports System.Windows.Controls.Primitives +Imports System.Windows.Data +Imports System.Windows.Documents +Imports System.Windows.Forms.Integration +Imports System.Windows.Ink +Imports System.Windows.Input +Imports System.Windows.Markup +Imports System.Windows.Media +Imports System.Windows.Media.Animation +Imports System.Windows.Media.Effects +Imports System.Windows.Media.Imaging +Imports System.Windows.Media.Media3D +Imports System.Windows.Media.TextFormatting +Imports System.Windows.Navigation +Imports System.Windows.Shapes +Imports System.Windows.Shell + + +''' +'''OmagCUTDictionary +''' + _ +Partial Public Class OmagCUTDictionary + Inherits System.Windows.ResourceDictionary + Implements System.Windows.Markup.IComponentConnector, System.Windows.Markup.IStyleConnector + + Private _contentLoaded As Boolean + + ''' + '''InitializeComponent + ''' + _ + Public Sub InitializeComponent() Implements System.Windows.Markup.IComponentConnector.InitializeComponent + If _contentLoaded Then + Return + End If + _contentLoaded = true + Dim resourceLocater As System.Uri = New System.Uri("/OmagCUT;component/omagcutdictionary.xaml", System.UriKind.Relative) + + #ExternalSource("..\..\..\OmagCUTDictionary.xaml",1) + System.Windows.Application.LoadComponent(Me, resourceLocater) + + #End ExternalSource + End Sub + + _ + Sub System_Windows_Markup_IComponentConnector_Connect(ByVal connectionId As Integer, ByVal target As Object) Implements System.Windows.Markup.IComponentConnector.Connect + Me._contentLoaded = true + End Sub + + _ + Sub System_Windows_Markup_IStyleConnector_Connect(ByVal connectionId As Integer, ByVal target As Object) Implements System.Windows.Markup.IStyleConnector.Connect + Dim eventSetter As System.Windows.EventSetter + If (connectionId = 1) Then + eventSetter = New System.Windows.EventSetter() + eventSetter.Event = System.Windows.UIElement.PreviewMouseDownEvent + + #ExternalSource("..\..\..\OmagCUTDictionary.xaml",282) + eventSetter.Handler = New System.Windows.Input.MouseButtonEventHandler(AddressOf Me.PreviewMouseDown) + + #End ExternalSource + CType(target,System.Windows.Style).Setters.Add(eventSetter) + End If + End Sub +End Class + diff --git a/obj/x86/Release/OmagCUTDictionary.g.vb b/obj/x86/Release/OmagCUTDictionary.g.vb new file mode 100644 index 0000000..8397c9c --- /dev/null +++ b/obj/x86/Release/OmagCUTDictionary.g.vb @@ -0,0 +1,96 @@ +#ExternalChecksum("..\..\..\OmagCUTDictionary.xaml","{406ea660-64cf-4c82-b6f0-42d48172a799}","A73AE24B633F0AD0730C6E2D884010FB") +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.34209 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict Off +Option Explicit On + +Imports System +Imports System.Diagnostics +Imports System.Windows +Imports System.Windows.Automation +Imports System.Windows.Controls +Imports System.Windows.Controls.Primitives +Imports System.Windows.Data +Imports System.Windows.Documents +Imports System.Windows.Forms.Integration +Imports System.Windows.Ink +Imports System.Windows.Input +Imports System.Windows.Markup +Imports System.Windows.Media +Imports System.Windows.Media.Animation +Imports System.Windows.Media.Effects +Imports System.Windows.Media.Imaging +Imports System.Windows.Media.Media3D +Imports System.Windows.Media.TextFormatting +Imports System.Windows.Navigation +Imports System.Windows.Shapes +Imports System.Windows.Shell + + +''' +'''OmagCUTDictionary +''' + _ +Partial Public Class OmagCUTDictionary + Inherits System.Windows.ResourceDictionary + Implements System.Windows.Markup.IComponentConnector, System.Windows.Markup.IStyleConnector + + Private _contentLoaded As Boolean + + ''' + '''InitializeComponent + ''' + _ + Public Sub InitializeComponent() Implements System.Windows.Markup.IComponentConnector.InitializeComponent + If _contentLoaded Then + Return + End If + _contentLoaded = true + Dim resourceLocater As System.Uri = New System.Uri("/OmagCUT;component/omagcutdictionary.xaml", System.UriKind.Relative) + + #ExternalSource("..\..\..\OmagCUTDictionary.xaml",1) + System.Windows.Application.LoadComponent(Me, resourceLocater) + + #End ExternalSource + End Sub + + _ + Sub System_Windows_Markup_IComponentConnector_Connect(ByVal connectionId As Integer, ByVal target As Object) Implements System.Windows.Markup.IComponentConnector.Connect + Me._contentLoaded = true + End Sub + + _ + Sub System_Windows_Markup_IStyleConnector_Connect(ByVal connectionId As Integer, ByVal target As Object) Implements System.Windows.Markup.IStyleConnector.Connect + Dim eventSetter As System.Windows.EventSetter + If (connectionId = 1) Then + eventSetter = New System.Windows.EventSetter() + eventSetter.Event = System.Windows.UIElement.PreviewMouseDownEvent + + #ExternalSource("..\..\..\OmagCUTDictionary.xaml",282) + eventSetter.Handler = New System.Windows.Input.MouseButtonEventHandler(AddressOf Me.PreviewMouseDown) + + #End ExternalSource + CType(target,System.Windows.Style).Setters.Add(eventSetter) + End If + End Sub +End Class + diff --git a/obj/x86/Release/OmagCUT_MarkupCompile.cache b/obj/x86/Release/OmagCUT_MarkupCompile.cache new file mode 100644 index 0000000..e6f3b4e --- /dev/null +++ b/obj/x86/Release/OmagCUT_MarkupCompile.cache @@ -0,0 +1,20 @@ +OmagCUT + + +winexe +VB +.vb +C:\EgtDev\OmagCUT\obj\x86\Release\ +OmagCUT +none +false + +C:\EgtDev\OmagCUT\Application.xaml +121793083531 + +20756340056 +14-108013422 +BarLavoraUC.xaml;BarNestingUC.xaml;ComponentiUC.xaml;CorniciUC.xaml;FlatPartsImportUC.xaml;GrezzoUC.xaml;LavoroInCorsoUC.xaml;MainWindow.xaml;NumericKeyboardWD.xaml;OmagCUTDictionary.xaml;TagliCadUC.xaml;TagliDirettiUC.xaml; + +False + diff --git a/obj/x86/Release/OmagCUT_MarkupCompile.i.cache b/obj/x86/Release/OmagCUT_MarkupCompile.i.cache new file mode 100644 index 0000000..bc89352 --- /dev/null +++ b/obj/x86/Release/OmagCUT_MarkupCompile.i.cache @@ -0,0 +1,20 @@ +OmagCUT + + +winexe +VB +.vb +C:\EgtDev\OmagCUT\obj\x86\Release\ +OmagCUT +none +false + +C:\EgtDev\OmagCUT\Application.xaml +121793083531 + +21-898126682 +14-108013422 +BarLavoraUC.xaml;BarNestingUC.xaml;ComponentiUC.xaml;CorniciUC.xaml;FlatPartsImportUC.xaml;GrezzoUC.xaml;LavoroInCorsoUC.xaml;MainWindow.xaml;NumericKeyboardWD.xaml;OmagCUTDictionary.xaml;TagliCadUC.xaml;TagliDirettiUC.xaml; + +False + diff --git a/obj/x86/Release/OmagCUT_MarkupCompile.lref b/obj/x86/Release/OmagCUT_MarkupCompile.lref new file mode 100644 index 0000000..efb3095 --- /dev/null +++ b/obj/x86/Release/OmagCUT_MarkupCompile.lref @@ -0,0 +1,4 @@ + + +FC:\EgtDev\OmagCUT\MainWindow.xaml;; + diff --git a/obj/x86/Release/TagliCadUC.baml b/obj/x86/Release/TagliCadUC.baml new file mode 100644 index 0000000..7d3a0f4 Binary files /dev/null and b/obj/x86/Release/TagliCadUC.baml differ diff --git a/obj/x86/Release/TagliCadUC.g.i.vb b/obj/x86/Release/TagliCadUC.g.i.vb new file mode 100644 index 0000000..01f1e66 --- /dev/null +++ b/obj/x86/Release/TagliCadUC.g.i.vb @@ -0,0 +1,143 @@ +#ExternalChecksum("..\..\..\TagliCadUC.xaml","{406ea660-64cf-4c82-b6f0-42d48172a799}","7232BDFB8D5FD82E8024715ABCF85488") +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.34209 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict Off +Option Explicit On + +Imports System +Imports System.Diagnostics +Imports System.Windows +Imports System.Windows.Automation +Imports System.Windows.Controls +Imports System.Windows.Controls.Primitives +Imports System.Windows.Data +Imports System.Windows.Documents +Imports System.Windows.Forms.Integration +Imports System.Windows.Ink +Imports System.Windows.Input +Imports System.Windows.Markup +Imports System.Windows.Media +Imports System.Windows.Media.Animation +Imports System.Windows.Media.Effects +Imports System.Windows.Media.Imaging +Imports System.Windows.Media.Media3D +Imports System.Windows.Media.TextFormatting +Imports System.Windows.Navigation +Imports System.Windows.Shapes +Imports System.Windows.Shell + + +''' +'''TagliCadUC +''' + _ +Partial Public Class TagliCadUC + Inherits System.Windows.Controls.UserControl + Implements System.Windows.Markup.IComponentConnector + + + #ExternalSource("..\..\..\TagliCadUC.xaml",15) + _ + Friend WithEvents BackGroundGridLavorazioniPiane As System.Windows.Controls.Grid + + #End ExternalSource + + + #ExternalSource("..\..\..\TagliCadUC.xaml",64) + _ + Friend WithEvents RightBtnBarContent As System.Windows.Controls.ContentPresenter + + #End ExternalSource + + Private _contentLoaded As Boolean + + ''' + '''InitializeComponent + ''' + _ + Public Sub InitializeComponent() Implements System.Windows.Markup.IComponentConnector.InitializeComponent + If _contentLoaded Then + Return + End If + _contentLoaded = true + Dim resourceLocater As System.Uri = New System.Uri("/OmagCUT;component/taglicaduc.xaml", System.UriKind.Relative) + + #ExternalSource("..\..\..\TagliCadUC.xaml",1) + System.Windows.Application.LoadComponent(Me, resourceLocater) + + #End ExternalSource + End Sub + + _ + Sub System_Windows_Markup_IComponentConnector_Connect(ByVal connectionId As Integer, ByVal target As Object) Implements System.Windows.Markup.IComponentConnector.Connect + If (connectionId = 1) Then + + #ExternalSource("..\..\..\TagliCadUC.xaml",7) + AddHandler CType(target,TagliCadUC).Loaded, New System.Windows.RoutedEventHandler(AddressOf Me.TagliCadUC_Loaded) + + #End ExternalSource + + #ExternalSource("..\..\..\TagliCadUC.xaml",7) + AddHandler CType(target,TagliCadUC).Initialized, New System.EventHandler(AddressOf Me.TagliCadUC_Initialized) + + #End ExternalSource + Return + End If + If (connectionId = 2) Then + Me.BackGroundGridLavorazioniPiane = CType(target,System.Windows.Controls.Grid) + Return + End If + If (connectionId = 3) Then + + #ExternalSource("..\..\..\TagliCadUC.xaml",30) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.ComponentsBtnUC_Click) + + #End ExternalSource + Return + End If + If (connectionId = 4) Then + + #ExternalSource("..\..\..\TagliCadUC.xaml",38) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.ZoomAllBtnUC_Click) + + #End ExternalSource + Return + End If + If (connectionId = 5) Then + + #ExternalSource("..\..\..\TagliCadUC.xaml",46) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.LavoraBtnUC_Click) + + #End ExternalSource + Return + End If + If (connectionId = 6) Then + + #ExternalSource("..\..\..\TagliCadUC.xaml",54) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.GrezzoBtnUC_Click) + + #End ExternalSource + Return + End If + If (connectionId = 7) Then + Me.RightBtnBarContent = CType(target,System.Windows.Controls.ContentPresenter) + Return + End If + Me._contentLoaded = true + End Sub +End Class + diff --git a/obj/x86/Release/TagliCadUC.g.vb b/obj/x86/Release/TagliCadUC.g.vb new file mode 100644 index 0000000..01f1e66 --- /dev/null +++ b/obj/x86/Release/TagliCadUC.g.vb @@ -0,0 +1,143 @@ +#ExternalChecksum("..\..\..\TagliCadUC.xaml","{406ea660-64cf-4c82-b6f0-42d48172a799}","7232BDFB8D5FD82E8024715ABCF85488") +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.34209 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict Off +Option Explicit On + +Imports System +Imports System.Diagnostics +Imports System.Windows +Imports System.Windows.Automation +Imports System.Windows.Controls +Imports System.Windows.Controls.Primitives +Imports System.Windows.Data +Imports System.Windows.Documents +Imports System.Windows.Forms.Integration +Imports System.Windows.Ink +Imports System.Windows.Input +Imports System.Windows.Markup +Imports System.Windows.Media +Imports System.Windows.Media.Animation +Imports System.Windows.Media.Effects +Imports System.Windows.Media.Imaging +Imports System.Windows.Media.Media3D +Imports System.Windows.Media.TextFormatting +Imports System.Windows.Navigation +Imports System.Windows.Shapes +Imports System.Windows.Shell + + +''' +'''TagliCadUC +''' + _ +Partial Public Class TagliCadUC + Inherits System.Windows.Controls.UserControl + Implements System.Windows.Markup.IComponentConnector + + + #ExternalSource("..\..\..\TagliCadUC.xaml",15) + _ + Friend WithEvents BackGroundGridLavorazioniPiane As System.Windows.Controls.Grid + + #End ExternalSource + + + #ExternalSource("..\..\..\TagliCadUC.xaml",64) + _ + Friend WithEvents RightBtnBarContent As System.Windows.Controls.ContentPresenter + + #End ExternalSource + + Private _contentLoaded As Boolean + + ''' + '''InitializeComponent + ''' + _ + Public Sub InitializeComponent() Implements System.Windows.Markup.IComponentConnector.InitializeComponent + If _contentLoaded Then + Return + End If + _contentLoaded = true + Dim resourceLocater As System.Uri = New System.Uri("/OmagCUT;component/taglicaduc.xaml", System.UriKind.Relative) + + #ExternalSource("..\..\..\TagliCadUC.xaml",1) + System.Windows.Application.LoadComponent(Me, resourceLocater) + + #End ExternalSource + End Sub + + _ + Sub System_Windows_Markup_IComponentConnector_Connect(ByVal connectionId As Integer, ByVal target As Object) Implements System.Windows.Markup.IComponentConnector.Connect + If (connectionId = 1) Then + + #ExternalSource("..\..\..\TagliCadUC.xaml",7) + AddHandler CType(target,TagliCadUC).Loaded, New System.Windows.RoutedEventHandler(AddressOf Me.TagliCadUC_Loaded) + + #End ExternalSource + + #ExternalSource("..\..\..\TagliCadUC.xaml",7) + AddHandler CType(target,TagliCadUC).Initialized, New System.EventHandler(AddressOf Me.TagliCadUC_Initialized) + + #End ExternalSource + Return + End If + If (connectionId = 2) Then + Me.BackGroundGridLavorazioniPiane = CType(target,System.Windows.Controls.Grid) + Return + End If + If (connectionId = 3) Then + + #ExternalSource("..\..\..\TagliCadUC.xaml",30) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.ComponentsBtnUC_Click) + + #End ExternalSource + Return + End If + If (connectionId = 4) Then + + #ExternalSource("..\..\..\TagliCadUC.xaml",38) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.ZoomAllBtnUC_Click) + + #End ExternalSource + Return + End If + If (connectionId = 5) Then + + #ExternalSource("..\..\..\TagliCadUC.xaml",46) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.LavoraBtnUC_Click) + + #End ExternalSource + Return + End If + If (connectionId = 6) Then + + #ExternalSource("..\..\..\TagliCadUC.xaml",54) + AddHandler CType(target,System.Windows.Controls.Button).Click, New System.Windows.RoutedEventHandler(AddressOf Me.GrezzoBtnUC_Click) + + #End ExternalSource + Return + End If + If (connectionId = 7) Then + Me.RightBtnBarContent = CType(target,System.Windows.Controls.ContentPresenter) + Return + End If + Me._contentLoaded = true + End Sub +End Class + diff --git a/obj/x86/Release/TagliDirettiUC.baml b/obj/x86/Release/TagliDirettiUC.baml new file mode 100644 index 0000000..b8f93bc Binary files /dev/null and b/obj/x86/Release/TagliDirettiUC.baml differ diff --git a/obj/x86/Release/TagliDirettiUC.g.i.vb b/obj/x86/Release/TagliDirettiUC.g.i.vb new file mode 100644 index 0000000..7918328 --- /dev/null +++ b/obj/x86/Release/TagliDirettiUC.g.i.vb @@ -0,0 +1,87 @@ +#ExternalChecksum("..\..\..\TagliDirettiUC.xaml","{406ea660-64cf-4c82-b6f0-42d48172a799}","F67B1096A8DE84C42CEAC81A11012456") +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.34209 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict Off +Option Explicit On + +Imports System +Imports System.Diagnostics +Imports System.Windows +Imports System.Windows.Automation +Imports System.Windows.Controls +Imports System.Windows.Controls.Primitives +Imports System.Windows.Data +Imports System.Windows.Documents +Imports System.Windows.Forms.Integration +Imports System.Windows.Ink +Imports System.Windows.Input +Imports System.Windows.Markup +Imports System.Windows.Media +Imports System.Windows.Media.Animation +Imports System.Windows.Media.Effects +Imports System.Windows.Media.Imaging +Imports System.Windows.Media.Media3D +Imports System.Windows.Media.TextFormatting +Imports System.Windows.Navigation +Imports System.Windows.Shapes +Imports System.Windows.Shell + + +''' +'''TagliDirettiUC +''' + _ +Partial Public Class TagliDirettiUC + Inherits System.Windows.Controls.UserControl + Implements System.Windows.Markup.IComponentConnector + + + #ExternalSource("..\..\..\TagliDirettiUC.xaml",15) + _ + Friend WithEvents BackGroundGridTagliDiretti As System.Windows.Controls.Grid + + #End ExternalSource + + Private _contentLoaded As Boolean + + ''' + '''InitializeComponent + ''' + _ + Public Sub InitializeComponent() Implements System.Windows.Markup.IComponentConnector.InitializeComponent + If _contentLoaded Then + Return + End If + _contentLoaded = true + Dim resourceLocater As System.Uri = New System.Uri("/OmagCUT;component/taglidirettiuc.xaml", System.UriKind.Relative) + + #ExternalSource("..\..\..\TagliDirettiUC.xaml",1) + System.Windows.Application.LoadComponent(Me, resourceLocater) + + #End ExternalSource + End Sub + + _ + Sub System_Windows_Markup_IComponentConnector_Connect(ByVal connectionId As Integer, ByVal target As Object) Implements System.Windows.Markup.IComponentConnector.Connect + If (connectionId = 1) Then + Me.BackGroundGridTagliDiretti = CType(target,System.Windows.Controls.Grid) + Return + End If + Me._contentLoaded = true + End Sub +End Class + diff --git a/obj/x86/Release/TagliDirettiUC.g.vb b/obj/x86/Release/TagliDirettiUC.g.vb new file mode 100644 index 0000000..7918328 --- /dev/null +++ b/obj/x86/Release/TagliDirettiUC.g.vb @@ -0,0 +1,87 @@ +#ExternalChecksum("..\..\..\TagliDirettiUC.xaml","{406ea660-64cf-4c82-b6f0-42d48172a799}","F67B1096A8DE84C42CEAC81A11012456") +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.34209 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict Off +Option Explicit On + +Imports System +Imports System.Diagnostics +Imports System.Windows +Imports System.Windows.Automation +Imports System.Windows.Controls +Imports System.Windows.Controls.Primitives +Imports System.Windows.Data +Imports System.Windows.Documents +Imports System.Windows.Forms.Integration +Imports System.Windows.Ink +Imports System.Windows.Input +Imports System.Windows.Markup +Imports System.Windows.Media +Imports System.Windows.Media.Animation +Imports System.Windows.Media.Effects +Imports System.Windows.Media.Imaging +Imports System.Windows.Media.Media3D +Imports System.Windows.Media.TextFormatting +Imports System.Windows.Navigation +Imports System.Windows.Shapes +Imports System.Windows.Shell + + +''' +'''TagliDirettiUC +''' + _ +Partial Public Class TagliDirettiUC + Inherits System.Windows.Controls.UserControl + Implements System.Windows.Markup.IComponentConnector + + + #ExternalSource("..\..\..\TagliDirettiUC.xaml",15) + _ + Friend WithEvents BackGroundGridTagliDiretti As System.Windows.Controls.Grid + + #End ExternalSource + + Private _contentLoaded As Boolean + + ''' + '''InitializeComponent + ''' + _ + Public Sub InitializeComponent() Implements System.Windows.Markup.IComponentConnector.InitializeComponent + If _contentLoaded Then + Return + End If + _contentLoaded = true + Dim resourceLocater As System.Uri = New System.Uri("/OmagCUT;component/taglidirettiuc.xaml", System.UriKind.Relative) + + #ExternalSource("..\..\..\TagliDirettiUC.xaml",1) + System.Windows.Application.LoadComponent(Me, resourceLocater) + + #End ExternalSource + End Sub + + _ + Sub System_Windows_Markup_IComponentConnector_Connect(ByVal connectionId As Integer, ByVal target As Object) Implements System.Windows.Markup.IComponentConnector.Connect + If (connectionId = 1) Then + Me.BackGroundGridTagliDiretti = CType(target,System.Windows.Controls.Grid) + Return + End If + Me._contentLoaded = true + End Sub +End Class + diff --git a/obj/x86/Release/TempPE/My Project.Resources.Designer.vb.dll b/obj/x86/Release/TempPE/My Project.Resources.Designer.vb.dll new file mode 100644 index 0000000..f2f15ed Binary files /dev/null and b/obj/x86/Release/TempPE/My Project.Resources.Designer.vb.dll differ diff --git a/obj/x86/Release/Window1.g.i.vb b/obj/x86/Release/Window1.g.i.vb new file mode 100644 index 0000000..15426d8 --- /dev/null +++ b/obj/x86/Release/Window1.g.i.vb @@ -0,0 +1,76 @@ +#ExternalChecksum("..\..\..\Window1.xaml","{406ea660-64cf-4c82-b6f0-42d48172a799}","85AF3942880ABC5B114A4028AA2DE533") +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.34209 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict Off +Option Explicit On + +Imports System +Imports System.Diagnostics +Imports System.Windows +Imports System.Windows.Automation +Imports System.Windows.Controls +Imports System.Windows.Controls.Primitives +Imports System.Windows.Data +Imports System.Windows.Documents +Imports System.Windows.Forms.Integration +Imports System.Windows.Ink +Imports System.Windows.Input +Imports System.Windows.Markup +Imports System.Windows.Media +Imports System.Windows.Media.Animation +Imports System.Windows.Media.Effects +Imports System.Windows.Media.Imaging +Imports System.Windows.Media.Media3D +Imports System.Windows.Media.TextFormatting +Imports System.Windows.Navigation +Imports System.Windows.Shapes +Imports System.Windows.Shell + + +''' +'''Window1 +''' + _ +Partial Public Class Window1 + Inherits System.Windows.Window + Implements System.Windows.Markup.IComponentConnector + + Private _contentLoaded As Boolean + + ''' + '''InitializeComponent + ''' + _ + Public Sub InitializeComponent() Implements System.Windows.Markup.IComponentConnector.InitializeComponent + If _contentLoaded Then + Return + End If + _contentLoaded = true + Dim resourceLocater As System.Uri = New System.Uri("/OmagCUT;component/window1.xaml", System.UriKind.Relative) + + #ExternalSource("..\..\..\Window1.xaml",1) + System.Windows.Application.LoadComponent(Me, resourceLocater) + + #End ExternalSource + End Sub + + _ + Sub System_Windows_Markup_IComponentConnector_Connect(ByVal connectionId As Integer, ByVal target As Object) Implements System.Windows.Markup.IComponentConnector.Connect + Me._contentLoaded = true + End Sub +End Class +