Form1.Designer.cs
上传用户:zjazhou
上传日期:2022-03-22
资源大小:137k
文件大小:5k
源码类别:

Windows Mobile

开发平台:

C#

  1. namespace ConnectTest
  2. {
  3.     partial class Form1
  4.     {
  5.         /// <summary>
  6.         /// Required designer variable.
  7.         /// </summary>
  8.         private System.ComponentModel.IContainer components = null;
  9.         private System.Windows.Forms.MainMenu mainMenu1;
  10.         /// <summary>
  11.         /// Clean up any resources being used.
  12.         /// </summary>
  13.         /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  14.         protected override void Dispose(bool disposing)
  15.         {
  16.             if (disposing && (components != null))
  17.             {
  18.                 components.Dispose();
  19.             }
  20.             base.Dispose(disposing);
  21.         }
  22.         #region Windows Form Designer generated code
  23.         /// <summary>
  24.         /// Required method for Designer support - do not modify
  25.         /// the contents of this method with the code editor.
  26.         /// </summary>
  27.         private void InitializeComponent()
  28.         {
  29.             this.mainMenu1 = new System.Windows.Forms.MainMenu();
  30.             this.button1 = new System.Windows.Forms.Button();
  31.             this.button2 = new System.Windows.Forms.Button();
  32.             this.label1 = new System.Windows.Forms.Label();
  33.             this.label2 = new System.Windows.Forms.Label();
  34.             this.button3 = new System.Windows.Forms.Button();
  35.             this.button4 = new System.Windows.Forms.Button();
  36.             this.button5 = new System.Windows.Forms.Button();
  37.             this.SuspendLayout();
  38.             // 
  39.             // button1
  40.             // 
  41.             this.button1.Location = new System.Drawing.Point(141, 3);
  42.             this.button1.Name = "button1";
  43.             this.button1.Size = new System.Drawing.Size(72, 20);
  44.             this.button1.TabIndex = 0;
  45.             this.button1.Text = "Call";
  46.             this.button1.Click += new System.EventHandler(this.button1_Click);
  47.             // 
  48.             // button2
  49.             // 
  50.             this.button2.Location = new System.Drawing.Point(4, 53);
  51.             this.button2.Name = "button2";
  52.             this.button2.Size = new System.Drawing.Size(83, 20);
  53.             this.button2.TabIndex = 1;
  54.             this.button2.Text = "Connectable";
  55.             this.button2.Click += new System.EventHandler(this.button2_Click);
  56.             // 
  57.             // label1
  58.             // 
  59.             this.label1.Location = new System.Drawing.Point(4, 31);
  60.             this.label1.Name = "label1";
  61.             this.label1.Size = new System.Drawing.Size(100, 20);
  62.             this.label1.Text = "Bluetooth";
  63.             // 
  64.             // label2
  65.             // 
  66.             this.label2.Location = new System.Drawing.Point(4, 2);
  67.             this.label2.Name = "label2";
  68.             this.label2.Size = new System.Drawing.Size(100, 20);
  69.             this.label2.Text = "Phone";
  70.             // 
  71.             // button3
  72.             // 
  73.             this.button3.Location = new System.Drawing.Point(141, 52);
  74.             this.button3.Name = "button3";
  75.             this.button3.Size = new System.Drawing.Size(84, 20);
  76.             this.button3.TabIndex = 4;
  77.             this.button3.Text = "Discoverable";
  78.             this.button3.Click += new System.EventHandler(this.button3_Click);
  79.             // 
  80.             // button4
  81.             // 
  82.             this.button4.Location = new System.Drawing.Point(141, 30);
  83.             this.button4.Name = "button4";
  84.             this.button4.Size = new System.Drawing.Size(84, 20);
  85.             this.button4.TabIndex = 5;
  86.             this.button4.Text = "Off";
  87.             this.button4.Click += new System.EventHandler(this.button4_Click);
  88.             // 
  89.             // button5
  90.             // 
  91.             this.button5.Location = new System.Drawing.Point(4, 96);
  92.             this.button5.Name = "button5";
  93.             this.button5.Size = new System.Drawing.Size(72, 20);
  94.             this.button5.TabIndex = 8;
  95.             this.button5.Text = "Send SMS";
  96.             this.button5.Click += new System.EventHandler(this.button5_Click);
  97.             // 
  98.             // Form1
  99.             // 
  100.             this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  101.             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  102.             this.AutoScroll = true;
  103.             this.ClientSize = new System.Drawing.Size(240, 268);
  104.             this.Controls.Add(this.button5);
  105.             this.Controls.Add(this.button4);
  106.             this.Controls.Add(this.button3);
  107.             this.Controls.Add(this.label2);
  108.             this.Controls.Add(this.label1);
  109.             this.Controls.Add(this.button2);
  110.             this.Controls.Add(this.button1);
  111.             this.Menu = this.mainMenu1;
  112.             this.Name = "Form1";
  113.             this.Text = "Form1";
  114.             this.Load += new System.EventHandler(this.Form1_Load);
  115.             this.ResumeLayout(false);
  116.         }
  117.         #endregion
  118.         private System.Windows.Forms.Button button1;
  119.         private System.Windows.Forms.Button button2;
  120.         private System.Windows.Forms.Label label1;
  121.         private System.Windows.Forms.Label label2;
  122.         private System.Windows.Forms.Button button3;
  123.         private System.Windows.Forms.Button button4;
  124.         private System.Windows.Forms.Button button5;
  125.     }
  126. }