1、添加2个自定义控件:chartTC、TreeViewTc; 2、修复了一些bug,完善了功能;3、更新了gitignore,将bin等目录忽略;
This commit is contained in:
128
mainProgram/SaveAs.Designer.cs
generated
Normal file
128
mainProgram/SaveAs.Designer.cs
generated
Normal file
@ -0,0 +1,128 @@
|
||||
namespace mainProgram
|
||||
{
|
||||
partial class SaveAsWindow
|
||||
{
|
||||
/// <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()
|
||||
{
|
||||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SaveAsWindow));
|
||||
this.SelectPathBtn = new System.Windows.Forms.Button();
|
||||
this.label1 = new System.Windows.Forms.Label();
|
||||
this.PathTextBox = new System.Windows.Forms.TextBox();
|
||||
this.OkBtn = new System.Windows.Forms.Button();
|
||||
this.CancelBtn = new System.Windows.Forms.Button();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// SelectPathBtn
|
||||
//
|
||||
this.SelectPathBtn.BackColor = System.Drawing.Color.WhiteSmoke;
|
||||
this.SelectPathBtn.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
|
||||
this.SelectPathBtn.Location = new System.Drawing.Point(367, 32);
|
||||
this.SelectPathBtn.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.SelectPathBtn.Name = "SelectPathBtn";
|
||||
this.SelectPathBtn.Size = new System.Drawing.Size(56, 27);
|
||||
this.SelectPathBtn.TabIndex = 0;
|
||||
this.SelectPathBtn.Text = "浏览...";
|
||||
this.SelectPathBtn.UseVisualStyleBackColor = false;
|
||||
this.SelectPathBtn.Click += new System.EventHandler(this.SelectPathBtn_Click);
|
||||
//
|
||||
// label1
|
||||
//
|
||||
this.label1.AutoSize = true;
|
||||
this.label1.Location = new System.Drawing.Point(43, 40);
|
||||
this.label1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
|
||||
this.label1.Name = "label1";
|
||||
this.label1.Size = new System.Drawing.Size(53, 12);
|
||||
this.label1.TabIndex = 1;
|
||||
this.label1.Text = "保存路径";
|
||||
//
|
||||
// PathTextBox
|
||||
//
|
||||
this.PathTextBox.BackColor = System.Drawing.Color.WhiteSmoke;
|
||||
this.PathTextBox.Location = new System.Drawing.Point(114, 36);
|
||||
this.PathTextBox.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.PathTextBox.Name = "PathTextBox";
|
||||
this.PathTextBox.Size = new System.Drawing.Size(234, 21);
|
||||
this.PathTextBox.TabIndex = 2;
|
||||
//
|
||||
// OkBtn
|
||||
//
|
||||
this.OkBtn.BackColor = System.Drawing.Color.WhiteSmoke;
|
||||
this.OkBtn.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
|
||||
this.OkBtn.Location = new System.Drawing.Point(292, 100);
|
||||
this.OkBtn.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.OkBtn.Name = "OkBtn";
|
||||
this.OkBtn.Size = new System.Drawing.Size(56, 27);
|
||||
this.OkBtn.TabIndex = 3;
|
||||
this.OkBtn.Text = "确定";
|
||||
this.OkBtn.UseVisualStyleBackColor = false;
|
||||
this.OkBtn.Click += new System.EventHandler(this.OkBtn_Click);
|
||||
//
|
||||
// CancelBtn
|
||||
//
|
||||
this.CancelBtn.BackColor = System.Drawing.Color.WhiteSmoke;
|
||||
this.CancelBtn.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
|
||||
this.CancelBtn.Location = new System.Drawing.Point(367, 100);
|
||||
this.CancelBtn.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.CancelBtn.Name = "CancelBtn";
|
||||
this.CancelBtn.Size = new System.Drawing.Size(56, 27);
|
||||
this.CancelBtn.TabIndex = 4;
|
||||
this.CancelBtn.Text = "取消";
|
||||
this.CancelBtn.UseVisualStyleBackColor = false;
|
||||
this.CancelBtn.Click += new System.EventHandler(this.CancelBtn_Click);
|
||||
//
|
||||
// SaveAsWindow
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.BackColor = System.Drawing.Color.White;
|
||||
this.ClientSize = new System.Drawing.Size(468, 163);
|
||||
this.Controls.Add(this.CancelBtn);
|
||||
this.Controls.Add(this.OkBtn);
|
||||
this.Controls.Add(this.PathTextBox);
|
||||
this.Controls.Add(this.label1);
|
||||
this.Controls.Add(this.SelectPathBtn);
|
||||
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
||||
this.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.MaximizeBox = false;
|
||||
this.MinimizeBox = false;
|
||||
this.Name = "SaveAsWindow";
|
||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
||||
this.Text = "另存为";
|
||||
this.ResumeLayout(false);
|
||||
this.PerformLayout();
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private System.Windows.Forms.Button SelectPathBtn;
|
||||
private System.Windows.Forms.Label label1;
|
||||
private System.Windows.Forms.TextBox PathTextBox;
|
||||
private System.Windows.Forms.Button OkBtn;
|
||||
private System.Windows.Forms.Button CancelBtn;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user