286 lines
13 KiB
C#
286 lines
13 KiB
C#
namespace SyncMany
|
|
{
|
|
partial class frmSyncMany
|
|
{
|
|
/// <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.components = new System.ComponentModel.Container();
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmSyncMany));
|
|
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
|
|
this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.openToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.saveToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.saveAsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator();
|
|
this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.addToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.ofd = new System.Windows.Forms.OpenFileDialog();
|
|
this.sfd = new System.Windows.Forms.SaveFileDialog();
|
|
this.statusStrip1 = new System.Windows.Forms.StatusStrip();
|
|
this.tsslStatus = new System.Windows.Forms.ToolStripStatusLabel();
|
|
this.dgv = new System.Windows.Forms.DataGridView();
|
|
this.IsDifferent = new System.Windows.Forms.DataGridViewCheckBoxColumn();
|
|
this.sourceDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.destinationItemDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.cms = new System.Windows.Forms.ContextMenuStrip(this.components);
|
|
this.compareToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.copySourceToDestinationToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.copyDestinationToSourceToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.removeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.compareItemsBindingSource = new System.Windows.Forms.BindingSource(this.components);
|
|
this.menuStrip1.SuspendLayout();
|
|
this.statusStrip1.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)(this.dgv)).BeginInit();
|
|
this.cms.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)(this.compareItemsBindingSource)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// menuStrip1
|
|
//
|
|
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.fileToolStripMenuItem,
|
|
this.addToolStripMenuItem});
|
|
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
|
|
this.menuStrip1.Name = "menuStrip1";
|
|
this.menuStrip1.Size = new System.Drawing.Size(672, 24);
|
|
this.menuStrip1.TabIndex = 0;
|
|
this.menuStrip1.Text = "menuStrip1";
|
|
//
|
|
// fileToolStripMenuItem
|
|
//
|
|
this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.openToolStripMenuItem,
|
|
this.saveToolStripMenuItem,
|
|
this.saveAsToolStripMenuItem,
|
|
this.toolStripMenuItem1,
|
|
this.exitToolStripMenuItem});
|
|
this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
|
|
this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
|
|
this.fileToolStripMenuItem.Text = "&File";
|
|
//
|
|
// openToolStripMenuItem
|
|
//
|
|
this.openToolStripMenuItem.Name = "openToolStripMenuItem";
|
|
this.openToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
|
|
this.openToolStripMenuItem.Text = "&Open";
|
|
this.openToolStripMenuItem.Click += new System.EventHandler(this.openToolStripMenuItem_Click);
|
|
//
|
|
// saveToolStripMenuItem
|
|
//
|
|
this.saveToolStripMenuItem.Name = "saveToolStripMenuItem";
|
|
this.saveToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
|
|
this.saveToolStripMenuItem.Text = "&Save";
|
|
this.saveToolStripMenuItem.Click += new System.EventHandler(this.saveToolStripMenuItem_Click);
|
|
//
|
|
// saveAsToolStripMenuItem
|
|
//
|
|
this.saveAsToolStripMenuItem.Name = "saveAsToolStripMenuItem";
|
|
this.saveAsToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
|
|
this.saveAsToolStripMenuItem.Text = "Save&As";
|
|
this.saveAsToolStripMenuItem.Click += new System.EventHandler(this.saveAsToolStripMenuItem_Click);
|
|
//
|
|
// toolStripMenuItem1
|
|
//
|
|
this.toolStripMenuItem1.Name = "toolStripMenuItem1";
|
|
this.toolStripMenuItem1.Size = new System.Drawing.Size(149, 6);
|
|
//
|
|
// exitToolStripMenuItem
|
|
//
|
|
this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
|
|
this.exitToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
|
|
this.exitToolStripMenuItem.Text = "E&xit";
|
|
this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
|
|
//
|
|
// addToolStripMenuItem
|
|
//
|
|
this.addToolStripMenuItem.Name = "addToolStripMenuItem";
|
|
this.addToolStripMenuItem.Size = new System.Drawing.Size(41, 20);
|
|
this.addToolStripMenuItem.Text = "Add";
|
|
this.addToolStripMenuItem.Click += new System.EventHandler(this.addToolStripMenuItem_Click);
|
|
//
|
|
// ofd
|
|
//
|
|
this.ofd.FileName = "SyncList.xml";
|
|
this.ofd.Filter = "XML Files|*.xml";
|
|
this.ofd.FileOk += new System.ComponentModel.CancelEventHandler(this.ofd_FileOk);
|
|
//
|
|
// sfd
|
|
//
|
|
this.sfd.FileName = "SyncList.XML";
|
|
this.sfd.Filter = "XML Files|*.xml";
|
|
this.sfd.FileOk += new System.ComponentModel.CancelEventHandler(this.sfd_FileOk);
|
|
//
|
|
// statusStrip1
|
|
//
|
|
this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.tsslStatus});
|
|
this.statusStrip1.Location = new System.Drawing.Point(0, 333);
|
|
this.statusStrip1.Name = "statusStrip1";
|
|
this.statusStrip1.Size = new System.Drawing.Size(672, 22);
|
|
this.statusStrip1.TabIndex = 1;
|
|
this.statusStrip1.Text = "statusStrip1";
|
|
//
|
|
// tsslStatus
|
|
//
|
|
this.tsslStatus.Name = "tsslStatus";
|
|
this.tsslStatus.Size = new System.Drawing.Size(39, 17);
|
|
this.tsslStatus.Text = "Ready";
|
|
//
|
|
// dgv
|
|
//
|
|
this.dgv.AllowUserToAddRows = false;
|
|
this.dgv.AllowUserToDeleteRows = false;
|
|
this.dgv.AutoGenerateColumns = false;
|
|
this.dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
this.dgv.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
|
|
this.IsDifferent,
|
|
this.sourceDataGridViewTextBoxColumn,
|
|
this.destinationItemDataGridViewTextBoxColumn});
|
|
this.dgv.ContextMenuStrip = this.cms;
|
|
this.dgv.DataSource = this.compareItemsBindingSource;
|
|
this.dgv.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.dgv.Location = new System.Drawing.Point(0, 24);
|
|
this.dgv.Name = "dgv";
|
|
this.dgv.Size = new System.Drawing.Size(672, 309);
|
|
this.dgv.TabIndex = 2;
|
|
this.dgv.CellMouseDown += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dgv_CellMouseDown);
|
|
//
|
|
// IsDifferent
|
|
//
|
|
this.IsDifferent.DataPropertyName = "IsDifferent";
|
|
this.IsDifferent.HeaderText = "IsDifferent";
|
|
this.IsDifferent.Name = "IsDifferent";
|
|
this.IsDifferent.ReadOnly = true;
|
|
//
|
|
// sourceDataGridViewTextBoxColumn
|
|
//
|
|
this.sourceDataGridViewTextBoxColumn.DataPropertyName = "Source";
|
|
this.sourceDataGridViewTextBoxColumn.HeaderText = "Source";
|
|
this.sourceDataGridViewTextBoxColumn.Name = "sourceDataGridViewTextBoxColumn";
|
|
//
|
|
// destinationItemDataGridViewTextBoxColumn
|
|
//
|
|
this.destinationItemDataGridViewTextBoxColumn.DataPropertyName = "DestinationItem";
|
|
this.destinationItemDataGridViewTextBoxColumn.HeaderText = "DestinationItem";
|
|
this.destinationItemDataGridViewTextBoxColumn.Name = "destinationItemDataGridViewTextBoxColumn";
|
|
//
|
|
// cms
|
|
//
|
|
this.cms.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.compareToolStripMenuItem1,
|
|
this.copySourceToDestinationToolStripMenuItem,
|
|
this.copyDestinationToSourceToolStripMenuItem,
|
|
this.removeToolStripMenuItem});
|
|
this.cms.Name = "cms";
|
|
this.cms.Size = new System.Drawing.Size(219, 92);
|
|
//
|
|
// compareToolStripMenuItem1
|
|
//
|
|
this.compareToolStripMenuItem1.Name = "compareToolStripMenuItem1";
|
|
this.compareToolStripMenuItem1.Size = new System.Drawing.Size(218, 22);
|
|
this.compareToolStripMenuItem1.Text = "Compare";
|
|
this.compareToolStripMenuItem1.Click += new System.EventHandler(this.compareToolStripMenuItem1_Click);
|
|
//
|
|
// copySourceToDestinationToolStripMenuItem
|
|
//
|
|
this.copySourceToDestinationToolStripMenuItem.Name = "copySourceToDestinationToolStripMenuItem";
|
|
this.copySourceToDestinationToolStripMenuItem.Size = new System.Drawing.Size(218, 22);
|
|
this.copySourceToDestinationToolStripMenuItem.Text = "Copy Source to Destination";
|
|
this.copySourceToDestinationToolStripMenuItem.Click += new System.EventHandler(this.copySourceToDestinationToolStripMenuItem_Click);
|
|
//
|
|
// copyDestinationToSourceToolStripMenuItem
|
|
//
|
|
this.copyDestinationToSourceToolStripMenuItem.Name = "copyDestinationToSourceToolStripMenuItem";
|
|
this.copyDestinationToSourceToolStripMenuItem.Size = new System.Drawing.Size(218, 22);
|
|
this.copyDestinationToSourceToolStripMenuItem.Text = "Copy Destination to Source";
|
|
this.copyDestinationToSourceToolStripMenuItem.Click += new System.EventHandler(this.copyDestinationToSourceToolStripMenuItem_Click);
|
|
//
|
|
// removeToolStripMenuItem
|
|
//
|
|
this.removeToolStripMenuItem.Name = "removeToolStripMenuItem";
|
|
this.removeToolStripMenuItem.Size = new System.Drawing.Size(218, 22);
|
|
this.removeToolStripMenuItem.Text = "Remove";
|
|
this.removeToolStripMenuItem.Click += new System.EventHandler(this.removeToolStripMenuItem_Click);
|
|
//
|
|
// compareItemsBindingSource
|
|
//
|
|
this.compareItemsBindingSource.DataSource = typeof(SyncMany.CompareItem);
|
|
//
|
|
// frmSyncMany
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(672, 355);
|
|
this.Controls.Add(this.dgv);
|
|
this.Controls.Add(this.statusStrip1);
|
|
this.Controls.Add(this.menuStrip1);
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.MainMenuStrip = this.menuStrip1;
|
|
this.Name = "frmSyncMany";
|
|
this.Text = "Sync Many";
|
|
this.Load += new System.EventHandler(this.frmSyncMany_Load);
|
|
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmSyncMany_FormClosing);
|
|
this.menuStrip1.ResumeLayout(false);
|
|
this.menuStrip1.PerformLayout();
|
|
this.statusStrip1.ResumeLayout(false);
|
|
this.statusStrip1.PerformLayout();
|
|
((System.ComponentModel.ISupportInitialize)(this.dgv)).EndInit();
|
|
this.cms.ResumeLayout(false);
|
|
((System.ComponentModel.ISupportInitialize)(this.compareItemsBindingSource)).EndInit();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.MenuStrip menuStrip1;
|
|
private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripMenuItem openToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripMenuItem saveToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripMenuItem saveAsToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripSeparator toolStripMenuItem1;
|
|
private System.Windows.Forms.ToolStripMenuItem exitToolStripMenuItem;
|
|
private System.Windows.Forms.OpenFileDialog ofd;
|
|
private System.Windows.Forms.SaveFileDialog sfd;
|
|
private System.Windows.Forms.StatusStrip statusStrip1;
|
|
private System.Windows.Forms.ToolStripStatusLabel tsslStatus;
|
|
private System.Windows.Forms.DataGridView dgv;
|
|
private System.Windows.Forms.BindingSource compareItemsBindingSource;
|
|
private System.Windows.Forms.ContextMenuStrip cms;
|
|
private System.Windows.Forms.ToolStripMenuItem compareToolStripMenuItem1;
|
|
private System.Windows.Forms.DataGridViewCheckBoxColumn IsDifferent;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn sourceDataGridViewTextBoxColumn;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn destinationItemDataGridViewTextBoxColumn;
|
|
private System.Windows.Forms.ToolStripMenuItem copySourceToDestinationToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripMenuItem copyDestinationToSourceToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripMenuItem removeToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripMenuItem addToolStripMenuItem;
|
|
}
|
|
}
|
|
|