90 lines
3.6 KiB
C#
90 lines
3.6 KiB
C#
|
||
namespace SecurityWindowsDesktop.SpecialControls
|
||
{
|
||
partial class SynchronizationControl
|
||
{
|
||
/// <summary>
|
||
/// Обязательная переменная конструктора.
|
||
/// </summary>
|
||
private System.ComponentModel.IContainer components = null;
|
||
|
||
/// <summary>
|
||
/// Освободить все используемые ресурсы.
|
||
/// </summary>
|
||
/// <param name="disposing">истинно, если управляемый ресурс должен быть удален; иначе ложно.</param>
|
||
protected override void Dispose(bool disposing)
|
||
{
|
||
if (disposing && (components != null))
|
||
{
|
||
components.Dispose();
|
||
}
|
||
base.Dispose(disposing);
|
||
}
|
||
|
||
#region Код, автоматически созданный конструктором компонентов
|
||
|
||
/// <summary>
|
||
/// Требуемый метод для поддержки конструктора — не изменяйте
|
||
/// содержимое этого метода с помощью редактора кода.
|
||
/// </summary>
|
||
private void InitializeComponent()
|
||
{
|
||
this.toolStripHeader = new System.Windows.Forms.ToolStrip();
|
||
this.toolStripButtonClose = new System.Windows.Forms.ToolStripButton();
|
||
this.buttonRunSynchronization = new System.Windows.Forms.Button();
|
||
this.toolStripHeader.SuspendLayout();
|
||
this.SuspendLayout();
|
||
//
|
||
// toolStripHeader
|
||
//
|
||
this.toolStripHeader.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
||
this.toolStripButtonClose});
|
||
this.toolStripHeader.Location = new System.Drawing.Point(0, 0);
|
||
this.toolStripHeader.Name = "toolStripHeader";
|
||
this.toolStripHeader.Size = new System.Drawing.Size(647, 25);
|
||
this.toolStripHeader.TabIndex = 0;
|
||
this.toolStripHeader.Text = "toolStrip1";
|
||
//
|
||
// toolStripButtonClose
|
||
//
|
||
this.toolStripButtonClose.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
|
||
this.toolStripButtonClose.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
||
this.toolStripButtonClose.Image = global::SecurityWindowsDesktop.Properties.Resources.Close;
|
||
this.toolStripButtonClose.ImageTransparentColor = System.Drawing.Color.Magenta;
|
||
this.toolStripButtonClose.Name = "toolStripButtonClose";
|
||
this.toolStripButtonClose.Size = new System.Drawing.Size(23, 22);
|
||
this.toolStripButtonClose.Text = "Закрыть";
|
||
//
|
||
// buttonRunSynchronization
|
||
//
|
||
this.buttonRunSynchronization.Location = new System.Drawing.Point(124, 59);
|
||
this.buttonRunSynchronization.Name = "buttonRunSynchronization";
|
||
this.buttonRunSynchronization.Size = new System.Drawing.Size(375, 151);
|
||
this.buttonRunSynchronization.TabIndex = 1;
|
||
this.buttonRunSynchronization.Text = "Сделай за**ись";
|
||
this.buttonRunSynchronization.UseVisualStyleBackColor = true;
|
||
this.buttonRunSynchronization.Click += new System.EventHandler(this.ButtonRunSynchronization_Click);
|
||
//
|
||
// SynchronizationControl
|
||
//
|
||
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||
this.Controls.Add(this.buttonRunSynchronization);
|
||
this.Controls.Add(this.toolStripHeader);
|
||
this.Name = "SynchronizationControl";
|
||
this.Size = new System.Drawing.Size(647, 508);
|
||
this.toolStripHeader.ResumeLayout(false);
|
||
this.toolStripHeader.PerformLayout();
|
||
this.ResumeLayout(false);
|
||
this.PerformLayout();
|
||
|
||
}
|
||
|
||
#endregion
|
||
|
||
private System.Windows.Forms.ToolStrip toolStripHeader;
|
||
private System.Windows.Forms.ToolStripButton toolStripButtonClose;
|
||
private System.Windows.Forms.Button buttonRunSynchronization;
|
||
}
|
||
}
|