TestEIn 1.6d10 :

- possibilità di salvare un singolo pezzo o layer o entità.
This commit is contained in:
Dario Sassi
2015-04-30 20:44:28 +00:00
parent dcdee3c092
commit 040cb7b15e
7 changed files with 106 additions and 13 deletions
+10 -2
View File
@@ -154,6 +154,7 @@ Partial Class Form1
Me.cmdRelocatePartLayObj = New System.Windows.Forms.ToolStripMenuItem()
Me.cmdCopyPartLayObj = New System.Windows.Forms.ToolStripMenuItem()
Me.cmdDeletePartLayObj = New System.Windows.Forms.ToolStripMenuItem()
Me.cmdSavePartLay = New System.Windows.Forms.ToolStripMenuItem()
Me.OpenFileDialog = New System.Windows.Forms.OpenFileDialog()
Me.SaveFileDialog = New System.Windows.Forms.SaveFileDialog()
Me.btnGetDist = New System.Windows.Forms.CheckBox()
@@ -2126,11 +2127,11 @@ Partial Class Form1
'
'ContextMenuTreeView1
'
Me.ContextMenuTreeView1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.cmdSelectPartLayObj, Me.cmdDeselectPartLayObj, Me.ToolStripSeparator1, Me.cmdSetName, Me.cmdSetInfo, Me.ToolStripSeparator2, Me.cmdRelocatePartLayObj, Me.cmdCopyPartLayObj, Me.cmdDeletePartLayObj})
Me.ContextMenuTreeView1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.cmdSelectPartLayObj, Me.cmdDeselectPartLayObj, Me.ToolStripSeparator1, Me.cmdSetName, Me.cmdSetInfo, Me.ToolStripSeparator2, Me.cmdRelocatePartLayObj, Me.cmdCopyPartLayObj, Me.cmdDeletePartLayObj, Me.cmdSavePartLay})
Me.ContextMenuTreeView1.Name = "ContextMenuStrip1"
Me.ContextMenuTreeView1.ShowCheckMargin = True
Me.ContextMenuTreeView1.ShowImageMargin = False
Me.ContextMenuTreeView1.Size = New System.Drawing.Size(120, 170)
Me.ContextMenuTreeView1.Size = New System.Drawing.Size(120, 192)
'
'cmdSelectPartLayObj
'
@@ -2184,6 +2185,12 @@ Partial Class Form1
Me.cmdDeletePartLayObj.Size = New System.Drawing.Size(119, 22)
Me.cmdDeletePartLayObj.Text = "Delete"
'
'cmdSavePartLay
'
Me.cmdSavePartLay.Name = "cmdSavePartLay"
Me.cmdSavePartLay.Size = New System.Drawing.Size(119, 22)
Me.cmdSavePartLay.Text = "Save"
'
'OpenFileDialog
'
Me.OpenFileDialog.DefaultExt = "Nge"
@@ -2578,5 +2585,6 @@ End Sub
Friend WithEvents btnChangeStartCurve As System.Windows.Forms.Button
Friend WithEvents btnFillet As System.Windows.Forms.Button
Friend WithEvents btnExplodeSurf As System.Windows.Forms.Button
Friend WithEvents cmdSavePartLay As System.Windows.Forms.ToolStripMenuItem
End Class