frmError.Designer.vb
上传用户:szledliu
上传日期:2021-01-29
资源大小:13805k
文件大小:5k
源码类别:

C#编程

开发平台:

C#

  1. <Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
  2. Partial Class frmError
  3.     Inherits System.Windows.Forms.Form
  4.     'Form overrides dispose to clean up the component list.
  5.     <System.Diagnostics.DebuggerNonUserCode()> _
  6.     Protected Overrides Sub Dispose(ByVal disposing As Boolean)
  7.         If disposing AndAlso components IsNot Nothing Then
  8.             components.Dispose()
  9.         End If
  10.         MyBase.Dispose(disposing)
  11.     End Sub
  12.     'Required by the Windows Form Designer
  13.     Private components As System.ComponentModel.IContainer
  14.     'NOTE: The following procedure is required by the Windows Form Designer
  15.     'It can be modified using the Windows Form Designer.  
  16.     'Do not modify it using the code editor.
  17.     <System.Diagnostics.DebuggerStepThrough()> _
  18.     Private Sub InitializeComponent()
  19.         Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(frmError))
  20.         Me.btnSend = New System.Windows.Forms.Button
  21.         Me.btnCancel = New System.Windows.Forms.Button
  22.         Me.Label1 = New System.Windows.Forms.Label
  23.         Me.Panel1 = New System.Windows.Forms.Panel
  24.         Me.PictureBox1 = New System.Windows.Forms.PictureBox
  25.         Me.lblErr = New System.Windows.Forms.Label
  26.         Me.Panel1.SuspendLayout()
  27.         CType(Me.PictureBox1, System.ComponentModel.ISupportInitialize).BeginInit()
  28.         Me.SuspendLayout()
  29.         '
  30.         'btnSend
  31.         '
  32.         Me.btnSend.Location = New System.Drawing.Point(313, 195)
  33.         Me.btnSend.Name = "btnSend"
  34.         Me.btnSend.Size = New System.Drawing.Size(75, 21)
  35.         Me.btnSend.TabIndex = 0
  36.         Me.btnSend.Text = "前往"
  37.         Me.btnSend.UseVisualStyleBackColor = True
  38.         '
  39.         'btnCancel
  40.         '
  41.         Me.btnCancel.Location = New System.Drawing.Point(232, 195)
  42.         Me.btnCancel.Name = "btnCancel"
  43.         Me.btnCancel.Size = New System.Drawing.Size(75, 21)
  44.         Me.btnCancel.TabIndex = 1
  45.         Me.btnCancel.Text = "取消"
  46.         Me.btnCancel.UseVisualStyleBackColor = True
  47.         '
  48.         'Label1
  49.         '
  50.         Me.Label1.BackColor = System.Drawing.Color.White
  51.         Me.Label1.Dock = System.Windows.Forms.DockStyle.Fill
  52.         Me.Label1.Font = New System.Drawing.Font("Microsoft Sans Serif", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
  53.         Me.Label1.Location = New System.Drawing.Point(63, 0)
  54.         Me.Label1.Name = "Label1"
  55.         Me.Label1.Size = New System.Drawing.Size(337, 55)
  56.         Me.Label1.TabIndex = 2
  57.         Me.Label1.Text = "错误信息"
  58.         Me.Label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft
  59.         '
  60.         'Panel1
  61.         '
  62.         Me.Panel1.BackColor = System.Drawing.Color.White
  63.         Me.Panel1.Controls.Add(Me.Label1)
  64.         Me.Panel1.Controls.Add(Me.PictureBox1)
  65.         Me.Panel1.Dock = System.Windows.Forms.DockStyle.Top
  66.         Me.Panel1.Location = New System.Drawing.Point(0, 0)
  67.         Me.Panel1.Name = "Panel1"
  68.         Me.Panel1.Size = New System.Drawing.Size(400, 55)
  69.         Me.Panel1.TabIndex = 3
  70.         '
  71.         'PictureBox1
  72.         '
  73.         Me.PictureBox1.Dock = System.Windows.Forms.DockStyle.Left
  74.         Me.PictureBox1.Image = Global.Ie7Clone.My.Resources.Resources.LargeGlobe
  75.         Me.PictureBox1.Location = New System.Drawing.Point(0, 0)
  76.         Me.PictureBox1.Name = "PictureBox1"
  77.         Me.PictureBox1.Size = New System.Drawing.Size(63, 55)
  78.         Me.PictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage
  79.         Me.PictureBox1.TabIndex = 0
  80.         Me.PictureBox1.TabStop = False
  81.         '
  82.         'lblErr
  83.         '
  84.         Me.lblErr.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  85.         Me.lblErr.Location = New System.Drawing.Point(12, 66)
  86.         Me.lblErr.Name = "lblErr"
  87.         Me.lblErr.Size = New System.Drawing.Size(376, 126)
  88.         Me.lblErr.TabIndex = 4
  89.         Me.lblErr.Text = "Label2"
  90.         '
  91.         'frmError
  92.         '
  93.         Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 12.0!)
  94.         Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
  95.         Me.ClientSize = New System.Drawing.Size(400, 221)
  96.         Me.Controls.Add(Me.lblErr)
  97.         Me.Controls.Add(Me.Panel1)
  98.         Me.Controls.Add(Me.btnCancel)
  99.         Me.Controls.Add(Me.btnSend)
  100.         Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle
  101.         Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon)
  102.         Me.MaximizeBox = False
  103.         Me.MinimizeBox = False
  104.         Me.Name = "frmError"
  105.         Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen
  106.         Me.Text = "Error Report"
  107.         Me.Panel1.ResumeLayout(False)
  108.         CType(Me.PictureBox1, System.ComponentModel.ISupportInitialize).EndInit()
  109.         Me.ResumeLayout(False)
  110.     End Sub
  111.     Friend WithEvents btnSend As System.Windows.Forms.Button
  112.     Friend WithEvents btnCancel As System.Windows.Forms.Button
  113.     Friend WithEvents Label1 As System.Windows.Forms.Label
  114.     Friend WithEvents Panel1 As System.Windows.Forms.Panel
  115.     Friend WithEvents PictureBox1 As System.Windows.Forms.PictureBox
  116.     Friend WithEvents lblErr As System.Windows.Forms.Label
  117. End Class