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

📄 mainform.designer.cs

📁 window mobile 中非全屏显示对话框
💻 CS
字号:
namespace NonFullscreenDemo
{
  partial class MainForm
  {
    /// <summary>
    /// Required designer variable.
    /// </summary>
    private System.ComponentModel.IContainer components = null;
    private System.Windows.Forms.MainMenu mainMenu1;

    /// <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.mainMenu1 = new System.Windows.Forms.MainMenu();
      this.btnReplacementMessageBox = new System.Windows.Forms.Button();
      this.btnCenteredDialog = new System.Windows.Forms.Button();
      this.btnInputForm = new System.Windows.Forms.Button();
      this.btnStandardMessageBox = new System.Windows.Forms.Button();
      this.SuspendLayout();
      // 
      // btnReplacementMessageBox
      // 
      this.btnReplacementMessageBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                  | System.Windows.Forms.AnchorStyles.Right)));
      this.btnReplacementMessageBox.Location = new System.Drawing.Point(3, 29);
      this.btnReplacementMessageBox.Name = "btnReplacementMessageBox";
      this.btnReplacementMessageBox.Size = new System.Drawing.Size(234, 20);
      this.btnReplacementMessageBox.TabIndex = 1;
      this.btnReplacementMessageBox.Text = "Replacement Message Box";
      this.btnReplacementMessageBox.Click += new System.EventHandler(this.btnReplacementMessageBox_Click);
      // 
      // btnCenteredDialog
      // 
      this.btnCenteredDialog.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                  | System.Windows.Forms.AnchorStyles.Right)));
      this.btnCenteredDialog.Location = new System.Drawing.Point(4, 55);
      this.btnCenteredDialog.Name = "btnCenteredDialog";
      this.btnCenteredDialog.Size = new System.Drawing.Size(233, 20);
      this.btnCenteredDialog.TabIndex = 2;
      this.btnCenteredDialog.Text = "Auto Centered Form";
      this.btnCenteredDialog.Click += new System.EventHandler(this.btnCenteredDialog_Click);
      // 
      // btnInputForm
      // 
      this.btnInputForm.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                  | System.Windows.Forms.AnchorStyles.Right)));
      this.btnInputForm.Location = new System.Drawing.Point(4, 81);
      this.btnInputForm.Name = "btnInputForm";
      this.btnInputForm.Size = new System.Drawing.Size(233, 20);
      this.btnInputForm.TabIndex = 3;
      this.btnInputForm.Text = "Input Form";
      this.btnInputForm.Click += new System.EventHandler(this.btnInputForm_Click);
      // 
      // btnStandardMessageBox
      // 
      this.btnStandardMessageBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                  | System.Windows.Forms.AnchorStyles.Right)));
      this.btnStandardMessageBox.Location = new System.Drawing.Point(4, 3);
      this.btnStandardMessageBox.Name = "btnStandardMessageBox";
      this.btnStandardMessageBox.Size = new System.Drawing.Size(233, 20);
      this.btnStandardMessageBox.TabIndex = 0;
      this.btnStandardMessageBox.Text = "Standard Message Box";
      this.btnStandardMessageBox.Click += new System.EventHandler(this.btnStandardMessageBox_Click);
      // 
      // MainForm
      // 
      this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
      this.AutoScroll = true;
      this.ClientSize = new System.Drawing.Size(240, 268);
      this.Controls.Add(this.btnStandardMessageBox);
      this.Controls.Add(this.btnInputForm);
      this.Controls.Add(this.btnCenteredDialog);
      this.Controls.Add(this.btnReplacementMessageBox);
      this.Menu = this.mainMenu1;
      this.MinimizeBox = false;
      this.Name = "MainForm";
      this.Text = "Non Fullscreen Demo";
      this.ResumeLayout(false);

    }

    #endregion

    private System.Windows.Forms.Button btnReplacementMessageBox;
    private System.Windows.Forms.Button btnCenteredDialog;
    private System.Windows.Forms.Button btnInputForm;
    private System.Windows.Forms.Button btnStandardMessageBox;
  }
}

⌨️ 快捷键说明

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