📄 form1.cs
字号:
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using backServerClass;
//using SQLDMO;
namespace bakServe040907
{
/// <summary>
/// Form1 的摘要说明。
/// </summary>
public class Form1 : System.Windows.Forms.Form
{
private System.Windows.Forms.Button button1;
// string ServerName;
// string UserName;
// string Password;
// ProgressBar PBar;
private System.Windows.Forms.TextBox txtDbName;
private System.Windows.Forms.TextBox txtUserName;
private System.Windows.Forms.TextBox txtPwd;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.ProgressBar progressBar1;
private System.Windows.Forms.ListBox lstServer;
private System.Windows.Forms.Label label4;
bakServer baks;
private System.Windows.Forms.ListBox lstDb;
private System.Windows.Forms.Label label5;
private System.Windows.Forms.Button button2;
private System.Windows.Forms.Button button3;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.Button btnCear;
private System.Windows.Forms.GroupBox groupBox2;
private System.Windows.Forms.TextBox txtInFile;
private System.Windows.Forms.TextBox txtOutFile;
private System.Windows.Forms.Label label6;
private System.Windows.Forms.Label label7;
private System.Windows.Forms.GroupBox groupBox3;
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.Container components = null;
public Form1()
{
//
// Windows 窗体设计器支持所必需的
//
InitializeComponent();
//
// TODO: 在 InitializeComponent 调用后添加任何构造函数代码
//
}
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
protected override void Dispose( bool disposing )
{
if( disposing )
{
if (components != null)
{
components.Dispose();
}
}
base.Dispose( disposing );
}
#region Windows 窗体设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要使用代码编辑器修改
/// 此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.button1 = new System.Windows.Forms.Button();
this.txtDbName = new System.Windows.Forms.TextBox();
this.txtUserName = new System.Windows.Forms.TextBox();
this.txtPwd = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.progressBar1 = new System.Windows.Forms.ProgressBar();
this.lstServer = new System.Windows.Forms.ListBox();
this.label4 = new System.Windows.Forms.Label();
this.lstDb = new System.Windows.Forms.ListBox();
this.label5 = new System.Windows.Forms.Label();
this.button2 = new System.Windows.Forms.Button();
this.button3 = new System.Windows.Forms.Button();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.btnCear = new System.Windows.Forms.Button();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.label7 = new System.Windows.Forms.Label();
this.label6 = new System.Windows.Forms.Label();
this.txtOutFile = new System.Windows.Forms.TextBox();
this.txtInFile = new System.Windows.Forms.TextBox();
this.groupBox3 = new System.Windows.Forms.GroupBox();
this.groupBox1.SuspendLayout();
this.groupBox2.SuspendLayout();
this.groupBox3.SuspendLayout();
this.SuspendLayout();
//
// button1
//
this.button1.Location = new System.Drawing.Point(256, 32);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(96, 23);
this.button1.TabIndex = 0;
this.button1.Text = "查询";
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// txtDbName
//
this.txtDbName.Location = new System.Drawing.Point(136, 32);
this.txtDbName.Name = "txtDbName";
this.txtDbName.Size = new System.Drawing.Size(104, 21);
this.txtDbName.TabIndex = 1;
this.txtDbName.Text = "";
//
// txtUserName
//
this.txtUserName.Location = new System.Drawing.Point(136, 72);
this.txtUserName.Name = "txtUserName";
this.txtUserName.Size = new System.Drawing.Size(104, 21);
this.txtUserName.TabIndex = 2;
this.txtUserName.Text = "";
//
// txtPwd
//
this.txtPwd.Location = new System.Drawing.Point(136, 112);
this.txtPwd.Name = "txtPwd";
this.txtPwd.PasswordChar = '*';
this.txtPwd.Size = new System.Drawing.Size(104, 21);
this.txtPwd.TabIndex = 3;
this.txtPwd.Text = "";
//
// label1
//
this.label1.ForeColor = System.Drawing.Color.Blue;
this.label1.Location = new System.Drawing.Point(8, 24);
this.label1.Name = "label1";
this.label1.RightToLeft = System.Windows.Forms.RightToLeft.No;
this.label1.TabIndex = 4;
this.label1.Text = "数据库名称:";
this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// label2
//
this.label2.ForeColor = System.Drawing.Color.Blue;
this.label2.Location = new System.Drawing.Point(8, 64);
this.label2.Name = "label2";
this.label2.RightToLeft = System.Windows.Forms.RightToLeft.No;
this.label2.TabIndex = 5;
this.label2.Text = "用 户 名:";
this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// label3
//
this.label3.ForeColor = System.Drawing.Color.Blue;
this.label3.Location = new System.Drawing.Point(8, 104);
this.label3.Name = "label3";
this.label3.RightToLeft = System.Windows.Forms.RightToLeft.No;
this.label3.TabIndex = 6;
this.label3.Text = "密 码:";
this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// progressBar1
//
this.progressBar1.Location = new System.Drawing.Point(8, 96);
this.progressBar1.Name = "progressBar1";
this.progressBar1.Size = new System.Drawing.Size(360, 23);
this.progressBar1.TabIndex = 7;
//
// lstServer
//
this.lstServer.ItemHeight = 12;
this.lstServer.Location = new System.Drawing.Point(16, 56);
this.lstServer.Name = "lstServer";
this.lstServer.Size = new System.Drawing.Size(200, 112);
this.lstServer.TabIndex = 8;
this.lstServer.SelectedIndexChanged += new System.EventHandler(this.lstServer_SelectedIndexChanged);
//
// label4
//
this.label4.ForeColor = System.Drawing.Color.Blue;
this.label4.Location = new System.Drawing.Point(8, 24);
this.label4.Name = "label4";
this.label4.TabIndex = 9;
this.label4.Text = "选择服务器:";
//
// lstDb
//
this.lstDb.ItemHeight = 12;
this.lstDb.Location = new System.Drawing.Point(16, 208);
this.lstDb.Name = "lstDb";
this.lstDb.Size = new System.Drawing.Size(200, 112);
this.lstDb.TabIndex = 10;
this.lstDb.SelectedIndexChanged += new System.EventHandler(this.lstDb_SelectedIndexChanged);
//
// label5
//
this.label5.ForeColor = System.Drawing.Color.Blue;
this.label5.Location = new System.Drawing.Point(8, 176);
this.label5.Name = "label5";
this.label5.TabIndex = 11;
this.label5.Text = "选择数据库:";
//
// button2
//
this.button2.Location = new System.Drawing.Point(256, 32);
this.button2.Name = "button2";
this.button2.Size = new System.Drawing.Size(96, 23);
this.button2.TabIndex = 12;
this.button2.Text = "开始备份";
this.button2.Click += new System.EventHandler(this.button2_Click);
//
// button3
//
this.button3.Location = new System.Drawing.Point(256, 64);
this.button3.Name = "button3";
this.button3.Size = new System.Drawing.Size(96, 23);
this.button3.TabIndex = 13;
this.button3.Text = "恢复数据库";
this.button3.Click += new System.EventHandler(this.button3_Click);
//
// groupBox1
//
this.groupBox1.Controls.Add(this.btnCear);
this.groupBox1.Controls.Add(this.button1);
this.groupBox1.Controls.Add(this.label3);
this.groupBox1.Controls.Add(this.label2);
this.groupBox1.Controls.Add(this.label1);
this.groupBox1.Controls.Add(this.txtPwd);
this.groupBox1.Controls.Add(this.txtUserName);
this.groupBox1.Controls.Add(this.txtDbName);
this.groupBox1.Location = new System.Drawing.Point(256, 16);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(376, 168);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -