EgtUILib 2.2g1 :

- ingrandita finestra selezione multipla.
This commit is contained in:
Dario Sassi
2020-07-11 10:44:14 +00:00
parent 0166931ee9
commit 0017f738ca
2 changed files with 26 additions and 26 deletions
+2 -2
View File
@@ -35,5 +35,5 @@ Imports System.Runtime.InteropServices
' È possibile specificare tutti i valori oppure impostare valori predefiniti per i numeri relativi alla revisione e alla build
' utilizzando l'asterisco (*) come descritto di seguito:
<Assembly: AssemblyVersion("2.2.6.4")>
<Assembly: AssemblyFileVersion("2.2.6.4")>
<Assembly: AssemblyVersion("2.2.7.1")>
<Assembly: AssemblyFileVersion("2.2.7.1")>
+24 -24
View File
@@ -25,14 +25,14 @@ Partial Class SelectMulti
Me.TableLayoutPanel1 = New System.Windows.Forms.TableLayoutPanel()
Me.ListBox1 = New System.Windows.Forms.ListBox()
Me.OK_Button = New System.Windows.Forms.Button()
Me.TableLayoutPanel1.SuspendLayout()
Me.SuspendLayout()
Me.TableLayoutPanel1.SuspendLayout
Me.SuspendLayout
'
'TableLayoutPanel1
'
Me.TableLayoutPanel1.CausesValidation = False
Me.TableLayoutPanel1.CausesValidation = false
Me.TableLayoutPanel1.ColumnCount = 1
Me.TableLayoutPanel1.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100.0!))
Me.TableLayoutPanel1.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100!))
Me.TableLayoutPanel1.Controls.Add(Me.ListBox1, 0, 0)
Me.TableLayoutPanel1.Controls.Add(Me.OK_Button, 0, 1)
Me.TableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill
@@ -40,54 +40,54 @@ Partial Class SelectMulti
Me.TableLayoutPanel1.Margin = New System.Windows.Forms.Padding(0)
Me.TableLayoutPanel1.Name = "TableLayoutPanel1"
Me.TableLayoutPanel1.RowCount = 2
Me.TableLayoutPanel1.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100.0!))
Me.TableLayoutPanel1.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 24.0!))
Me.TableLayoutPanel1.Size = New System.Drawing.Size(94, 121)
Me.TableLayoutPanel1.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100!))
Me.TableLayoutPanel1.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 24!))
Me.TableLayoutPanel1.Size = New System.Drawing.Size(134, 161)
Me.TableLayoutPanel1.TabIndex = 1
'
'ListBox1
'
Me.ListBox1.Dock = System.Windows.Forms.DockStyle.Fill
Me.ListBox1.FormattingEnabled = True
Me.ListBox1.HorizontalScrollbar = True
Me.ListBox1.FormattingEnabled = true
Me.ListBox1.HorizontalScrollbar = true
Me.ListBox1.Location = New System.Drawing.Point(1, 1)
Me.ListBox1.Margin = New System.Windows.Forms.Padding(1)
Me.ListBox1.Name = "ListBox1"
Me.ListBox1.Size = New System.Drawing.Size(92, 95)
Me.ListBox1.Size = New System.Drawing.Size(132, 135)
Me.ListBox1.TabIndex = 3
'
'OK_Button
'
Me.OK_Button.Dock = System.Windows.Forms.DockStyle.Bottom
Me.OK_Button.Location = New System.Drawing.Point(20, 99)
Me.OK_Button.Location = New System.Drawing.Point(20, 139)
Me.OK_Button.Margin = New System.Windows.Forms.Padding(20, 2, 20, 2)
Me.OK_Button.Name = "OK_Button"
Me.OK_Button.Size = New System.Drawing.Size(54, 20)
Me.OK_Button.Size = New System.Drawing.Size(94, 20)
Me.OK_Button.TabIndex = 2
Me.OK_Button.Text = "OK"
Me.OK_Button.UseVisualStyleBackColor = True
Me.OK_Button.UseVisualStyleBackColor = true
'
'SelectMulti
'
Me.AcceptButton = Me.OK_Button
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None
Me.ClientSize = New System.Drawing.Size(94, 121)
Me.ControlBox = False
Me.ClientSize = New System.Drawing.Size(134, 161)
Me.ControlBox = false
Me.Controls.Add(Me.TableLayoutPanel1)
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow
Me.KeyPreview = True
Me.MaximizeBox = False
Me.MaximumSize = New System.Drawing.Size(110, 160)
Me.MinimizeBox = False
Me.MinimumSize = New System.Drawing.Size(110, 160)
Me.KeyPreview = true
Me.MaximizeBox = false
Me.MaximumSize = New System.Drawing.Size(150, 200)
Me.MinimizeBox = false
Me.MinimumSize = New System.Drawing.Size(150, 200)
Me.Name = "SelectMulti"
Me.ShowIcon = False
Me.ShowInTaskbar = False
Me.ShowIcon = false
Me.ShowInTaskbar = false
Me.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide
Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent
Me.Text = "MultiSel"
Me.TableLayoutPanel1.ResumeLayout(False)
Me.ResumeLayout(False)
Me.TableLayoutPanel1.ResumeLayout(false)
Me.ResumeLayout(false)
End Sub
Friend WithEvents OK_Button As System.Windows.Forms.Button