1、添加2个自定义控件:chartTC、TreeViewTc; 2、修复了一些bug,完善了功能;3、更新了gitignore,将bin等目录忽略;

This commit is contained in:
tangchao0503
2022-06-16 13:26:55 +08:00
parent b43227dc58
commit f36c5eaa39
50 changed files with 13043 additions and 3770 deletions

View File

@ -38,7 +38,8 @@
//
// ProjectPathTextBox
//
this.ProjectPathTextBox.Location = new System.Drawing.Point(135, 38);
this.ProjectPathTextBox.BackColor = System.Drawing.Color.WhiteSmoke;
this.ProjectPathTextBox.Location = new System.Drawing.Point(111, 28);
this.ProjectPathTextBox.Name = "ProjectPathTextBox";
this.ProjectPathTextBox.ReadOnly = true;
this.ProjectPathTextBox.Size = new System.Drawing.Size(162, 21);
@ -46,18 +47,20 @@
//
// OpenProjectPathBtn
//
this.OpenProjectPathBtn.Location = new System.Drawing.Point(49, 118);
this.OpenProjectPathBtn.BackColor = System.Drawing.Color.WhiteSmoke;
this.OpenProjectPathBtn.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.OpenProjectPathBtn.Location = new System.Drawing.Point(190, 90);
this.OpenProjectPathBtn.Name = "OpenProjectPathBtn";
this.OpenProjectPathBtn.Size = new System.Drawing.Size(83, 23);
this.OpenProjectPathBtn.TabIndex = 2;
this.OpenProjectPathBtn.Text = "打开工程";
this.OpenProjectPathBtn.UseVisualStyleBackColor = true;
this.OpenProjectPathBtn.UseVisualStyleBackColor = false;
this.OpenProjectPathBtn.Click += new System.EventHandler(this.OpenProjectPathBtn_Click);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(47, 38);
this.label1.Location = new System.Drawing.Point(32, 32);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(53, 12);
this.label1.TabIndex = 3;
@ -65,29 +68,34 @@
//
// SelectProjectPathBtn
//
this.SelectProjectPathBtn.Location = new System.Drawing.Point(351, 38);
this.SelectProjectPathBtn.BackColor = System.Drawing.Color.WhiteSmoke;
this.SelectProjectPathBtn.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.SelectProjectPathBtn.Location = new System.Drawing.Point(295, 27);
this.SelectProjectPathBtn.Name = "SelectProjectPathBtn";
this.SelectProjectPathBtn.Size = new System.Drawing.Size(83, 23);
this.SelectProjectPathBtn.TabIndex = 4;
this.SelectProjectPathBtn.Text = "选择";
this.SelectProjectPathBtn.UseVisualStyleBackColor = true;
this.SelectProjectPathBtn.Text = "浏览...";
this.SelectProjectPathBtn.UseVisualStyleBackColor = false;
this.SelectProjectPathBtn.Click += new System.EventHandler(this.SelectProjectPathBtn_Click);
//
// CancelBtn
//
this.CancelBtn.Location = new System.Drawing.Point(351, 118);
this.CancelBtn.BackColor = System.Drawing.Color.WhiteSmoke;
this.CancelBtn.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.CancelBtn.Location = new System.Drawing.Point(295, 90);
this.CancelBtn.Name = "CancelBtn";
this.CancelBtn.Size = new System.Drawing.Size(83, 23);
this.CancelBtn.TabIndex = 5;
this.CancelBtn.Text = "取消";
this.CancelBtn.UseVisualStyleBackColor = true;
this.CancelBtn.UseVisualStyleBackColor = false;
this.CancelBtn.Click += new System.EventHandler(this.CancelBtn_Click);
//
// OpenProjectWindow
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(485, 191);
this.BackColor = System.Drawing.Color.White;
this.ClientSize = new System.Drawing.Size(416, 141);
this.Controls.Add(this.CancelBtn);
this.Controls.Add(this.SelectProjectPathBtn);
this.Controls.Add(this.label1);
@ -97,7 +105,7 @@
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "OpenProjectWindow";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "打开工程";
this.ResumeLayout(false);
this.PerformLayout();