Questo sito utilizza cookies solo per scopi di autenticazione sul sito e nient'altro. Nessuna informazione personale viene tracciata. Leggi l'informativa sui cookies.
Username: Password: oppure
Q-Learning - Form1.Designer.vb

Form1.Designer.vb

Caricato da: Totem
Scarica il programma completo

  1. <Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
  2. Partial Class Form1
  3.     Inherits System.Windows.Forms.Form
  4.  
  5.     'Form overrides dispose to clean up the component list.
  6.     <System.Diagnostics.DebuggerNonUserCode()> _
  7.     Protected Overrides Sub Dispose(ByVal disposing As Boolean)
  8.         Try
  9.             If disposing AndAlso components IsNot Nothing Then
  10.                 components.Dispose()
  11.             End If
  12.         Finally
  13.             MyBase.Dispose(disposing)
  14.         End Try
  15.     End Sub
  16.  
  17.     'Required by the Windows Form Designer
  18.     Private components As System.ComponentModel.IContainer
  19.  
  20.     'NOTE: The following procedure is required by the Windows Form Designer
  21.     'It can be modified using the Windows Form Designer.  
  22.     'Do not modify it using the code editor.
  23.     <System.Diagnostics.DebuggerStepThrough()> _
  24.     Private Sub InitializeComponent()
  25.         Me.components = New System.ComponentModel.Container
  26.         Me.imgField = New System.Windows.Forms.PictureBox
  27.         Me.tmrRefresh = New System.Windows.Forms.Timer(Me.components)
  28.         Me.Label1 = New System.Windows.Forms.Label
  29.         Me.nudAlpha = New System.Windows.Forms.NumericUpDown
  30.         Me.Label2 = New System.Windows.Forms.Label
  31.         Me.nudGamma = New System.Windows.Forms.NumericUpDown
  32.         Me.btnReward = New System.Windows.Forms.Button
  33.         Me.Label3 = New System.Windows.Forms.Label
  34.         Me.lblAction = New System.Windows.Forms.Label
  35.         Me.btnPunish = New System.Windows.Forms.Button
  36.         Me.btnDoAction = New System.Windows.Forms.Button
  37.         Me.Label4 = New System.Windows.Forms.Label
  38.         Me.dgvSummary = New System.Windows.Forms.DataGridView
  39.         Me.lblSummary = New System.Windows.Forms.Label
  40.         Me.Label5 = New System.Windows.Forms.Label
  41.         Me.lblColor = New System.Windows.Forms.Label
  42.         Me.lblPrevision = New System.Windows.Forms.Label
  43.         Me.btnRefreshEverything = New System.Windows.Forms.Button
  44.         CType(Me.imgField, System.ComponentModel.ISupportInitialize).BeginInit()
  45.         CType(Me.nudAlpha, System.ComponentModel.ISupportInitialize).BeginInit()
  46.         CType(Me.nudGamma, System.ComponentModel.ISupportInitialize).BeginInit()
  47.         CType(Me.dgvSummary, System.ComponentModel.ISupportInitialize).BeginInit()
  48.         Me.SuspendLayout()
  49.         '
  50.         'imgField
  51.         '
  52.         Me.imgField.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  53.         Me.imgField.Location = New System.Drawing.Point(12, 12)
  54.         Me.imgField.Name = "imgField"
  55.         Me.imgField.Size = New System.Drawing.Size(410, 410)
  56.         Me.imgField.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage
  57.         Me.imgField.TabIndex = 0
  58.         Me.imgField.TabStop = False
  59.         '
  60.         'tmrRefresh
  61.         '
  62.         Me.tmrRefresh.Interval = 30
  63.         '
  64.         'Label1
  65.         '
  66.         Me.Label1.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  67.         Me.Label1.AutoSize = True
  68.         Me.Label1.Location = New System.Drawing.Point(549, 12)
  69.         Me.Label1.Name = "Label1"
  70.         Me.Label1.Size = New System.Drawing.Size(150, 13)
  71.         Me.Label1.TabIndex = 1
  72.         Me.Label1.Text = "Coefficiente di apprendimento:"
  73.         '
  74.         'nudAlpha
  75.         '
  76.         Me.nudAlpha.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  77.         Me.nudAlpha.DecimalPlaces = 2
  78.         Me.nudAlpha.Location = New System.Drawing.Point(552, 28)
  79.         Me.nudAlpha.Name = "nudAlpha"
  80.         Me.nudAlpha.Size = New System.Drawing.Size(169, 20)
  81.         Me.nudAlpha.TabIndex = 2
  82.         Me.nudAlpha.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  83.         Me.nudAlpha.Value = New Decimal(New Integer() {50, 0, 0, 0})
  84.         '
  85.         'Label2
  86.         '
  87.         Me.Label2.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  88.         Me.Label2.AutoSize = True
  89.         Me.Label2.Location = New System.Drawing.Point(549, 60)
  90.         Me.Label2.Name = "Label2"
  91.         Me.Label2.Size = New System.Drawing.Size(112, 13)
  92.         Me.Label2.TabIndex = 3
  93.         Me.Label2.Text = "Coefficiente di sconto:"
  94.         '
  95.         'nudGamma
  96.         '
  97.         Me.nudGamma.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  98.         Me.nudGamma.DecimalPlaces = 2
  99.         Me.nudGamma.Location = New System.Drawing.Point(552, 76)
  100.         Me.nudGamma.Name = "nudGamma"
  101.         Me.nudGamma.Size = New System.Drawing.Size(169, 20)
  102.         Me.nudGamma.TabIndex = 4
  103.         Me.nudGamma.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  104.         Me.nudGamma.Value = New Decimal(New Integer() {50, 0, 0, 0})
  105.         '
  106.         'btnReward
  107.         '
  108.         Me.btnReward.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  109.         Me.btnReward.Enabled = False
  110.         Me.btnReward.Location = New System.Drawing.Point(428, 41)
  111.         Me.btnReward.Name = "btnReward"
  112.         Me.btnReward.Size = New System.Drawing.Size(75, 23)
  113.         Me.btnReward.TabIndex = 5
  114.         Me.btnReward.Text = "Ricompensa"
  115.         Me.btnReward.UseVisualStyleBackColor = True
  116.         '
  117.         'Label3
  118.         '
  119.         Me.Label3.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  120.         Me.Label3.AutoSize = True
  121.         Me.Label3.Location = New System.Drawing.Point(549, 109)
  122.         Me.Label3.Name = "Label3"
  123.         Me.Label3.Size = New System.Drawing.Size(119, 13)
  124.         Me.Label3.TabIndex = 6
  125.         Me.Label3.Text = "Ultima azione compiuta:"
  126.         '
  127.         'lblAction
  128.         '
  129.         Me.lblAction.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  130.         Me.lblAction.AutoSize = True
  131.         Me.lblAction.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
  132.         Me.lblAction.Location = New System.Drawing.Point(549, 124)
  133.         Me.lblAction.Name = "lblAction"
  134.         Me.lblAction.Size = New System.Drawing.Size(56, 13)
  135.         Me.lblAction.TabIndex = 7
  136.         Me.lblAction.Text = "Nessuna"
  137.         '
  138.         'btnPunish
  139.         '
  140.         Me.btnPunish.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  141.         Me.btnPunish.Enabled = False
  142.         Me.btnPunish.Location = New System.Drawing.Point(428, 73)
  143.         Me.btnPunish.Name = "btnPunish"
  144.         Me.btnPunish.Size = New System.Drawing.Size(75, 23)
  145.         Me.btnPunish.TabIndex = 8
  146.         Me.btnPunish.Text = "Punisci"
  147.         Me.btnPunish.UseVisualStyleBackColor = True
  148.         '
  149.         'btnDoAction
  150.         '
  151.         Me.btnDoAction.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  152.         Me.btnDoAction.Location = New System.Drawing.Point(428, 12)
  153.         Me.btnDoAction.Name = "btnDoAction"
  154.         Me.btnDoAction.Size = New System.Drawing.Size(75, 23)
  155.         Me.btnDoAction.TabIndex = 9
  156.         Me.btnDoAction.Text = "Agisci"
  157.         Me.btnDoAction.UseVisualStyleBackColor = True
  158.         '
  159.         'Label4
  160.         '
  161.         Me.Label4.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  162.         Me.Label4.AutoSize = True
  163.         Me.Label4.Location = New System.Drawing.Point(425, 153)
  164.         Me.Label4.Name = "Label4"
  165.         Me.Label4.Size = New System.Drawing.Size(91, 13)
  166.         Me.Label4.TabIndex = 10
  167.         Me.Label4.Text = "Preferenza azioni:"
  168.         '
  169.         'dgvSummary
  170.         '
  171.         Me.dgvSummary.AllowUserToAddRows = False
  172.         Me.dgvSummary.AllowUserToDeleteRows = False
  173.         Me.dgvSummary.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  174.         Me.dgvSummary.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  175.         Me.dgvSummary.Location = New System.Drawing.Point(428, 169)
  176.         Me.dgvSummary.Name = "dgvSummary"
  177.         Me.dgvSummary.ReadOnly = True
  178.         Me.dgvSummary.Size = New System.Drawing.Size(293, 171)
  179.         Me.dgvSummary.TabIndex = 11
  180.         '
  181.         'lblSummary
  182.         '
  183.         Me.lblSummary.AutoSize = True
  184.         Me.lblSummary.Location = New System.Drawing.Point(425, 343)
  185.         Me.lblSummary.Name = "lblSummary"
  186.         Me.lblSummary.Size = New System.Drawing.Size(123, 13)
  187.         Me.lblSummary.TabIndex = 12
  188.         Me.lblSummary.Text = "(Colore, Azione) = Valore"
  189.         '
  190.         'Label5
  191.         '
  192.         Me.Label5.AutoSize = True
  193.         Me.Label5.Location = New System.Drawing.Point(425, 109)
  194.         Me.Label5.Name = "Label5"
  195.         Me.Label5.Size = New System.Drawing.Size(97, 13)
  196.         Me.Label5.TabIndex = 13
  197.         Me.Label5.Text = "Colore precedente:"
  198.         '
  199.         'lblColor
  200.         '
  201.         Me.lblColor.AutoSize = True
  202.         Me.lblColor.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
  203.         Me.lblColor.Location = New System.Drawing.Point(425, 124)
  204.         Me.lblColor.Name = "lblColor"
  205.         Me.lblColor.Size = New System.Drawing.Size(56, 13)
  206.         Me.lblColor.TabIndex = 14
  207.         Me.lblColor.Text = "Nessuno"
  208.         '
  209.         'lblPrevision
  210.         '
  211.         Me.lblPrevision.AutoSize = True
  212.         Me.lblPrevision.Location = New System.Drawing.Point(425, 393)
  213.         Me.lblPrevision.Name = "lblPrevision"
  214.         Me.lblPrevision.Size = New System.Drawing.Size(59, 13)
  215.         Me.lblPrevision.TabIndex = 15
  216.         Me.lblPrevision.Text = "Previsione:"
  217.         '
  218.         'btnRefreshEverything
  219.         '
  220.         Me.btnRefreshEverything.Location = New System.Drawing.Point(646, 370)
  221.         Me.btnRefreshEverything.Name = "btnRefreshEverything"
  222.         Me.btnRefreshEverything.Size = New System.Drawing.Size(75, 23)
  223.         Me.btnRefreshEverything.TabIndex = 16
  224.         Me.btnRefreshEverything.Text = "Ricomincia"
  225.         Me.btnRefreshEverything.UseVisualStyleBackColor = True
  226.         '
  227.         'Form1
  228.         '
  229.         Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
  230.         Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
  231.         Me.ClientSize = New System.Drawing.Size(733, 441)
  232.         Me.Controls.Add(Me.btnRefreshEverything)
  233.         Me.Controls.Add(Me.lblPrevision)
  234.         Me.Controls.Add(Me.lblColor)
  235.         Me.Controls.Add(Me.Label5)
  236.         Me.Controls.Add(Me.lblSummary)
  237.         Me.Controls.Add(Me.dgvSummary)
  238.         Me.Controls.Add(Me.Label4)
  239.         Me.Controls.Add(Me.btnDoAction)
  240.         Me.Controls.Add(Me.btnPunish)
  241.         Me.Controls.Add(Me.lblAction)
  242.         Me.Controls.Add(Me.Label3)
  243.         Me.Controls.Add(Me.btnReward)
  244.         Me.Controls.Add(Me.nudGamma)
  245.         Me.Controls.Add(Me.Label2)
  246.         Me.Controls.Add(Me.nudAlpha)
  247.         Me.Controls.Add(Me.Label1)
  248.         Me.Controls.Add(Me.imgField)
  249.         Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle
  250.         Me.Name = "Form1"
  251.         Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen
  252.         Me.Text = "Esempio di Q-Learning"
  253.         CType(Me.imgField, System.ComponentModel.ISupportInitialize).EndInit()
  254.         CType(Me.nudAlpha, System.ComponentModel.ISupportInitialize).EndInit()
  255.         CType(Me.nudGamma, System.ComponentModel.ISupportInitialize).EndInit()
  256.         CType(Me.dgvSummary, System.ComponentModel.ISupportInitialize).EndInit()
  257.         Me.ResumeLayout(False)
  258.         Me.PerformLayout()
  259.  
  260.     End Sub
  261.     Friend WithEvents imgField As System.Windows.Forms.PictureBox
  262.     Friend WithEvents tmrRefresh As System.Windows.Forms.Timer
  263.     Friend WithEvents Label1 As System.Windows.Forms.Label
  264.     Friend WithEvents nudAlpha As System.Windows.Forms.NumericUpDown
  265.     Friend WithEvents Label2 As System.Windows.Forms.Label
  266.     Friend WithEvents nudGamma As System.Windows.Forms.NumericUpDown
  267.     Friend WithEvents btnReward As System.Windows.Forms.Button
  268.     Friend WithEvents Label3 As System.Windows.Forms.Label
  269.     Friend WithEvents lblAction As System.Windows.Forms.Label
  270.     Friend WithEvents btnPunish As System.Windows.Forms.Button
  271.     Friend WithEvents btnDoAction As System.Windows.Forms.Button
  272.     Friend WithEvents Label4 As System.Windows.Forms.Label
  273.     Friend WithEvents dgvSummary As System.Windows.Forms.DataGridView
  274.     Friend WithEvents lblSummary As System.Windows.Forms.Label
  275.     Friend WithEvents Label5 As System.Windows.Forms.Label
  276.     Friend WithEvents lblColor As System.Windows.Forms.Label
  277.     Friend WithEvents lblPrevision As System.Windows.Forms.Label
  278.     Friend WithEvents btnRefreshEverything As System.Windows.Forms.Button
  279.  
  280. End Class