加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Frm_option.Designer.cs 3.90 KB
一键复制 编辑 原始数据 按行查看 历史
老大哥 提交于 2022-03-07 20:47 . 添加项目文件。
namespace 封包测试工具
{
partial class Frm_option
{
/// <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.btn_save = new System.Windows.Forms.Button();
this.cmb_language = new System.Windows.Forms.ComboBox();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// btn_save
//
this.btn_save.DialogResult = System.Windows.Forms.DialogResult.OK;
this.btn_save.Location = new System.Drawing.Point(375, 299);
this.btn_save.Name = "btn_save";
this.btn_save.Size = new System.Drawing.Size(81, 36);
this.btn_save.TabIndex = 0;
this.btn_save.Text = "保存配置";
this.btn_save.UseVisualStyleBackColor = true;
this.btn_save.Click += new System.EventHandler(this.btn_save_Click);
//
// cmb_language
//
this.cmb_language.FormattingEnabled = true;
this.cmb_language.Items.AddRange(new object[] {
"CSharp(C#)",
"精易模块",
"易语言"});
this.cmb_language.Location = new System.Drawing.Point(70, 6);
this.cmb_language.Name = "cmb_language";
this.cmb_language.Size = new System.Drawing.Size(121, 20);
this.cmb_language.TabIndex = 1;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(12, 9);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(65, 12);
this.label1.TabIndex = 2;
this.label1.Text = "编程方式:";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(197, 9);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(83, 12);
this.label2.TabIndex = 3;
this.label2.Text = "*生成代码所需";
//
// Frm_option
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(471, 342);
this.Controls.Add(this.label2);
this.Controls.Add(this.cmb_language);
this.Controls.Add(this.btn_save);
this.Controls.Add(this.label1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.Name = "Frm_option";
this.Text = "Frm_option";
this.Load += new System.EventHandler(this.Frm_option_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button btn_save;
private System.Windows.Forms.ComboBox cmb_language;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化