📄 frmmain.designer.cs
字号:
namespace OracleDALGenGUI
{
partial class frmMain
{
/// <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.btnGenerate = new System.Windows.Forms.Button();
this.txtSQL = new System.Windows.Forms.TextBox();
this.txtCode = new System.Windows.Forms.RichTextBox();
this.btnCheckClass = new System.Windows.Forms.Button();
this.rbTable = new System.Windows.Forms.RadioButton();
this.rbQuery = new System.Windows.Forms.RadioButton();
this.label1 = new System.Windows.Forms.Label();
this.txtHost = new System.Windows.Forms.TextBox();
this.txtUsername = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.txtServiceName = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.txtPassword = new System.Windows.Forms.TextBox();
this.label4 = new System.Windows.Forms.Label();
this.btnChangeConn = new System.Windows.Forms.Button();
this.label5 = new System.Windows.Forms.Label();
this.btnInstallPLGen = new System.Windows.Forms.Button();
this.button1 = new System.Windows.Forms.Button();
this.lblPLStatus = new System.Windows.Forms.Label();
this.lblViewStatus = new System.Windows.Forms.Label();
this.cbGeneratePkg = new System.Windows.Forms.CheckBox();
this.cbSaveAsFiles = new System.Windows.Forms.CheckBox();
this.txtOutputDir = new System.Windows.Forms.TextBox();
this.btnRegisterNotification = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// btnGenerate
//
this.btnGenerate.Location = new System.Drawing.Point(319, 177);
this.btnGenerate.Name = "btnGenerate";
this.btnGenerate.Size = new System.Drawing.Size(75, 23);
this.btnGenerate.TabIndex = 0;
this.btnGenerate.Text = "Generate";
this.btnGenerate.UseVisualStyleBackColor = true;
this.btnGenerate.Click += new System.EventHandler(this.btnListColumns_Click);
//
// txtSQL
//
this.txtSQL.Location = new System.Drawing.Point(15, 179);
this.txtSQL.Name = "txtSQL";
this.txtSQL.Size = new System.Drawing.Size(298, 20);
this.txtSQL.TabIndex = 1;
this.txtSQL.Text = "select * from composite_key";
//
// txtCode
//
this.txtCode.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtCode.Location = new System.Drawing.Point(12, 255);
this.txtCode.Name = "txtCode";
this.txtCode.Size = new System.Drawing.Size(637, 266);
this.txtCode.TabIndex = 2;
this.txtCode.Text = "";
//
// btnCheckClass
//
this.btnCheckClass.Location = new System.Drawing.Point(400, 177);
this.btnCheckClass.Name = "btnCheckClass";
this.btnCheckClass.Size = new System.Drawing.Size(75, 23);
this.btnCheckClass.TabIndex = 3;
this.btnCheckClass.Text = "Check class";
this.btnCheckClass.UseVisualStyleBackColor = true;
this.btnCheckClass.Click += new System.EventHandler(this.btnCheckClass_Click);
//
// rbTable
//
this.rbTable.AutoSize = true;
this.rbTable.Checked = true;
this.rbTable.Location = new System.Drawing.Point(15, 133);
this.rbTable.Name = "rbTable";
this.rbTable.Size = new System.Drawing.Size(52, 17);
this.rbTable.TabIndex = 4;
this.rbTable.TabStop = true;
this.rbTable.Text = "Table";
this.rbTable.UseVisualStyleBackColor = true;
//
// rbQuery
//
this.rbQuery.AutoSize = true;
this.rbQuery.Location = new System.Drawing.Point(73, 133);
this.rbQuery.Name = "rbQuery";
this.rbQuery.Size = new System.Drawing.Size(53, 17);
this.rbQuery.TabIndex = 5;
this.rbQuery.Text = "Query";
this.rbQuery.UseVisualStyleBackColor = true;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label1.Location = new System.Drawing.Point(12, 15);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(33, 13);
this.label1.TabIndex = 6;
this.label1.Text = "Host";
//
// txtHost
//
this.txtHost.Location = new System.Drawing.Point(81, 12);
this.txtHost.Name = "txtHost";
this.txtHost.Size = new System.Drawing.Size(100, 20);
this.txtHost.TabIndex = 7;
this.txtHost.Text = "192.168.0.135";
//
// txtUsername
//
this.txtUsername.Location = new System.Drawing.Point(81, 38);
this.txtUsername.Name = "txtUsername";
this.txtUsername.Size = new System.Drawing.Size(100, 20);
this.txtUsername.TabIndex = 9;
this.txtUsername.Text = "arild";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label2.Location = new System.Drawing.Point(12, 41);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(63, 13);
this.label2.TabIndex = 8;
this.label2.Text = "Username";
//
// txtServiceName
//
this.txtServiceName.Location = new System.Drawing.Point(277, 12);
this.txtServiceName.Name = "txtServiceName";
this.txtServiceName.Size = new System.Drawing.Size(100, 20);
this.txtServiceName.TabIndex = 11;
this.txtServiceName.Text = "ORCL";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label3.Location = new System.Drawing.Point(187, 15);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(84, 13);
this.label3.TabIndex = 10;
this.label3.Text = "Service name";
//
// txtPassword
//
this.txtPassword.Location = new System.Drawing.Point(277, 38);
this.txtPassword.Name = "txtPassword";
this.txtPassword.Size = new System.Drawing.Size(100, 20);
this.txtPassword.TabIndex = 13;
this.txtPassword.Text = "arild";
//
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -