⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 handeditorform.designer.cs

📁 中文名:Windows Forms 程序设计 英文名:Windows Forms Programming in c# 作者: Chris Sells 翻译: 荣耀 蒋贤哲 出版社:人民
💻 CS
字号:
namespace AlarmClockControlLibrary {
  partial class HandEditorForm {
    /// <summary>
    /// Required designer variable.
    /// </summary>
    private System.ComponentModel.IContainer components = null;

    /// <summary>
    /// Clean up any resources being used.
    /// </summary>
    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
    protected override void Dispose(bool disposing) {
      if( disposing && (components != null) ) {
        components.Dispose();
      }
      base.Dispose(disposing);
    }

    #region Windows Form Designer generated code

    /// <summary>
    /// Required method for Designer support - do not modify
    /// the contents of this method with the code editor.
    /// </summary>
    private void InitializeComponent() {
      this.okButton = new System.Windows.Forms.Button();
      this.cancelButton = new System.Windows.Forms.Button();
      this.label1 = new System.Windows.Forms.Label();
      this.label2 = new System.Windows.Forms.Label();
      this.widthNumericUpDown = new System.Windows.Forms.NumericUpDown();
      this.colorPanel = new System.Windows.Forms.Panel();
      this.colorDialog = new System.Windows.Forms.ColorDialog();
      this.colorButton = new System.Windows.Forms.Button();
      ((System.ComponentModel.ISupportInitialize)(this.widthNumericUpDown)).BeginInit();
      this.SuspendLayout();
      // 
      // okButton
      // 
      this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
      this.okButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
      this.okButton.Location = new System.Drawing.Point(32, 63);
      this.okButton.Name = "okButton";
      this.okButton.Size = new System.Drawing.Size(75, 23);
      this.okButton.TabIndex = 2;
      this.okButton.Text = "OK";
      this.okButton.Click += new System.EventHandler(this.okButton_Click);
      // 
      // cancelButton
      // 
      this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
      this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
      this.cancelButton.Location = new System.Drawing.Point(113, 63);
      this.cancelButton.Name = "cancelButton";
      this.cancelButton.Size = new System.Drawing.Size(75, 23);
      this.cancelButton.TabIndex = 3;
      this.cancelButton.Text = "Cancel";
      // 
      // label1
      // 
      this.label1.AutoSize = true;
      this.label1.Location = new System.Drawing.Point(12, 12);
      this.label1.Name = "label1";
      this.label1.Size = new System.Drawing.Size(34, 13);
      this.label1.TabIndex = 4;
      this.label1.Text = "Color:";
      // 
      // label2
      // 
      this.label2.AutoSize = true;
      this.label2.Location = new System.Drawing.Point(12, 39);
      this.label2.Name = "label2";
      this.label2.Size = new System.Drawing.Size(38, 13);
      this.label2.TabIndex = 5;
      this.label2.Text = "Width:";
      // 
      // widthNumericUpDown
      // 
      this.widthNumericUpDown.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                  | System.Windows.Forms.AnchorStyles.Right)));
      this.widthNumericUpDown.Location = new System.Drawing.Point(52, 37);
      this.widthNumericUpDown.Maximum = new decimal(new int[] {
            10,
            0,
            0,
            0});
      this.widthNumericUpDown.Minimum = new decimal(new int[] {
            1,
            0,
            0,
            0});
      this.widthNumericUpDown.Name = "widthNumericUpDown";
      this.widthNumericUpDown.Size = new System.Drawing.Size(136, 20);
      this.widthNumericUpDown.TabIndex = 6;
      this.widthNumericUpDown.Value = new decimal(new int[] {
            1,
            0,
            0,
            0});
      // 
      // colorPanel
      // 
      this.colorPanel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                  | System.Windows.Forms.AnchorStyles.Right)));
      this.colorPanel.Location = new System.Drawing.Point(52, 10);
      this.colorPanel.Name = "colorPanel";
      this.colorPanel.Size = new System.Drawing.Size(105, 20);
      this.colorPanel.TabIndex = 7;
      // 
      // colorButton
      // 
      this.colorButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
      this.colorButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
      this.colorButton.Location = new System.Drawing.Point(161, 9);
      this.colorButton.Name = "colorButton";
      this.colorButton.Size = new System.Drawing.Size(27, 22);
      this.colorButton.TabIndex = 8;
      this.colorButton.Text = "...";
      this.colorButton.Click += new System.EventHandler(this.colorButton_Click);
      // 
      // HandEditorForm
      // 
      this.AcceptButton = this.okButton;
      this.CancelButton = this.cancelButton;
      this.ClientSize = new System.Drawing.Size(194, 92);
      this.Controls.Add(this.colorButton);
      this.Controls.Add(this.colorPanel);
      this.Controls.Add(this.widthNumericUpDown);
      this.Controls.Add(this.label2);
      this.Controls.Add(this.label1);
      this.Controls.Add(this.cancelButton);
      this.Controls.Add(this.okButton);
      this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
      this.MaximizeBox = false;
      this.MinimizeBox = false;
      this.MinimumSize = new System.Drawing.Size(200, 124);
      this.Name = "HandEditorForm";
      this.ShowInTaskbar = false;
      this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
      this.Text = "Hand Editor";
      this.Load += new System.EventHandler(this.HandEditorForm_Load);
      ((System.ComponentModel.ISupportInitialize)(this.widthNumericUpDown)).EndInit();
      this.ResumeLayout(false);
      this.PerformLayout();

    }

    #endregion

    private System.Windows.Forms.Button okButton;
    private System.Windows.Forms.Button cancelButton;
    private System.Windows.Forms.Label label1;
    private System.Windows.Forms.Label label2;
    private System.Windows.Forms.NumericUpDown widthNumericUpDown;
    private System.Windows.Forms.Panel colorPanel;
    private System.Windows.Forms.ColorDialog colorDialog;
    private System.Windows.Forms.Button colorButton;
  }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -