public void InitializeComponent()
        {
            this.SuspendLayout();

            _enableVariableLayers                 = new System.Windows.Forms.ToolStripButton();
            _enableVariableLayers.Name            = "_enableVariableLayers";
            _enableVariableLayers.Image           = Properties.Resources.hide;
            _enableVariableLayers.CheckOnClick    = true;
            _enableVariableLayers.CheckedChanged += OnCheckedChanged;

            _interval              = new System.Windows.Forms.ToolStripTextBox();
            _interval.Text         = "500";
            _interval.Enabled      = false;
            _interval.TextChanged += OnTextChanged;

            _timer          = new System.Timers.Timer();
            _timer.Interval = 500;
            _timer.Elapsed += OnTouchTimer;

            this.Items.AddRange(new System.Windows.Forms.ToolStripItem[]
                                { _enableVariableLayers, _interval });

            this.ResumeLayout();
            this.PerformLayout();
            this.Visible = true;
        }
        public ParallaxToolStrip(SerialParallax osc, GraphControl gc)
        {
            oscillo      = osc;
            graphControl = gc;

            //
            // toolStrip2
            //
            this.toolStrip          = new System.Windows.Forms.ToolStrip();
            this.toolStrip.Dock     = System.Windows.Forms.DockStyle.None;
            this.toolStrip.Location = new System.Drawing.Point(3, 0);
            this.toolStrip.Name     = "toolStrip2";
            this.toolStrip.Size     = new System.Drawing.Size(243, 25);
            this.toolStrip.TabIndex = 1;
            this.toolStrip.Text     = "toolStrip2";

            this.triggerLabel    = new System.Windows.Forms.ToolStripLabel();
            this.trigger         = new System.Windows.Forms.ToolStripTextBox();
            this.toolStripLabel2 = new System.Windows.Forms.ToolStripLabel();
            this.triggerMode     = new System.Windows.Forms.ToolStripComboBox();

            //
            // triggerLabel
            //
            this.triggerLabel.Name = "triggerLabel";
            this.triggerLabel.Size = new System.Drawing.Size(42, 22);
            this.triggerLabel.Text = "Trigger";
            this.toolStrip.Items.Add(this.triggerLabel);

            //
            // trigger
            //
            this.trigger.Name        = "trigger";
            this.trigger.Size        = new System.Drawing.Size(50, 25);
            this.trigger.Text        = "0";
            this.trigger.Validating += new System.ComponentModel.CancelEventHandler(this.trigger_Validating);
            this.trigger.Validated  += new System.EventHandler(this.trigger_Validated);
            this.toolStrip.Items.Add(this.trigger);

            //
            // triggerMode
            //
            this.triggerMode.Items.AddRange(new object[] {
                "ch1 ˄",
                "ch1 ˅",
                "ch2 ˄",
                "ch2 ˅",
                "ext ˄"
            });
            this.triggerMode.Name = "triggerMode";
            this.triggerMode.Size = new System.Drawing.Size(20, 25);
            this.triggerMode.SelectedIndexChanged += new System.EventHandler(this.triggerMode_SelectedIndexChanged);
            triggerMode.SelectedIndex              = 0;
            this.toolStrip.Items.Add(this.triggerMode);

            //channels.SelectedIndex = 0;
            trigger.Text = "0";
            triggerMode.SelectedIndex = 0;
            oscillo.TriggerVoltage    = (float.Parse(trigger.Text));
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     btnClose   = new System.Windows.Forms.ToolStripButton();
     lblSearch  = new System.Windows.Forms.ToolStripLabel();
     cmbColumns = new System.Windows.Forms.ToolStripComboBox();
     txtSearch  = new System.Windows.Forms.ToolStripTextBox();
 }
        public void InitializeComponent()
        {
            this.SuspendLayout();

            _enableVariableLayers = new System.Windows.Forms.ToolStripButton();
            _enableVariableLayers.Name = "_enableVariableLayers";
            _enableVariableLayers.Image = Properties.Resources.hide;
            _enableVariableLayers.CheckOnClick = true;
            _enableVariableLayers.CheckedChanged += OnCheckedChanged;

            _interval = new System.Windows.Forms.ToolStripTextBox();
            _interval.Text = "500";
            _interval.Enabled = false;
            _interval.TextChanged += OnTextChanged;

            _timer = new System.Timers.Timer();
            _timer.Interval = 500;
            _timer.Elapsed += OnTouchTimer;

            this.Items.AddRange(new System.Windows.Forms.ToolStripItem[]
            { _enableVariableLayers, _interval });

            this.ResumeLayout();
            this.PerformLayout();
            this.Visible = true;
        }
Beispiel #5
0
        public ParallaxToolStrip(SerialParallax osc, GraphControl gc)
        {
            oscillo = osc;
            graphControl = gc;

            //
            // toolStrip2
            //
            this.toolStrip = new System.Windows.Forms.ToolStrip();
            this.toolStrip.Dock = System.Windows.Forms.DockStyle.None;
            this.toolStrip.Location = new System.Drawing.Point(3, 0);
            this.toolStrip.Name = "toolStrip2";
            this.toolStrip.Size = new System.Drawing.Size(243, 25);
            this.toolStrip.TabIndex = 1;
            this.toolStrip.Text = "toolStrip2";

            this.triggerLabel = new System.Windows.Forms.ToolStripLabel();
            this.trigger = new System.Windows.Forms.ToolStripTextBox();
            this.toolStripLabel2 = new System.Windows.Forms.ToolStripLabel();
            this.triggerMode = new System.Windows.Forms.ToolStripComboBox();

            //
            // triggerLabel
            //
            this.triggerLabel.Name = "triggerLabel";
            this.triggerLabel.Size = new System.Drawing.Size(42, 22);
            this.triggerLabel.Text = "Trigger";
            this.toolStrip.Items.Add(this.triggerLabel);

            //
            // trigger
            //
            this.trigger.Name = "trigger";
            this.trigger.Size = new System.Drawing.Size(50, 25);
            this.trigger.Text = "0";
            this.trigger.Validating += new System.ComponentModel.CancelEventHandler(this.trigger_Validating);
            this.trigger.Validated += new System.EventHandler(this.trigger_Validated);
            this.toolStrip.Items.Add(this.trigger);

            //
            // triggerMode
            //
            this.triggerMode.Items.AddRange(new object[] {
            "ch1 ˄",
            "ch1 ˅",
            "ch2 ˄",
            "ch2 ˅",
            "ext ˄"});
            this.triggerMode.Name = "triggerMode";
            this.triggerMode.Size = new System.Drawing.Size(20, 25);
            this.triggerMode.SelectedIndexChanged += new System.EventHandler(this.triggerMode_SelectedIndexChanged);
            triggerMode.SelectedIndex = 0;
            this.toolStrip.Items.Add(this.triggerMode);

            //channels.SelectedIndex = 0;
            trigger.Text = "0";
            triggerMode.SelectedIndex = 0;
            oscillo.TriggerVoltage = (float.Parse(trigger.Text));
        }
        private void InitialiseComponents()
        {
            
            this.CloseMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.CloseMenuItem.Text = "Close";

            this.ShowMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.ShowMenuItem.Text = "Show";
            
            this.ShowSummaryMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.ShowSummaryMenuItem.Text = "Summary";

            this.SettingsMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.SettingsMenuItem.Text = "Settings";

            this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
            this.toolStripComboBox1 = new System.Windows.Forms.ToolStripComboBox();
            this.toolStripTextBox1 = new System.Windows.Forms.ToolStripTextBox();

            this.IconContextMenuStrip = new System.Windows.Forms.ContextMenuStrip();
            this.NotificationIcon = new System.Windows.Forms.NotifyIcon();
            //
            //notofication icon
            //
            this.NotificationIcon.Icon = ( (System.Drawing.Icon)( Resources.TaskBarIcon ) );
            this.NotificationIcon.Text = "WorkReportReminder";
            this.NotificationIcon.Visible = true;
            this.NotificationIcon.ContextMenuStrip = this.IconContextMenuStrip;
            this.NotificationIcon.DoubleClick += new System.EventHandler(this.OnNotificationIconDoubleClick);
            // 
            // IconContextMenuStrip
            // 
            this.IconContextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[]
                                                         {
                                                             this.ShowMenuItem,
                                                             this.ShowSummaryMenuItem,
                                                             this.SettingsMenuItem,
                                                             this.CloseMenuItem
                                                         });

            this.IconContextMenuStrip.Name = "IconContextMenuStrip";
            this.IconContextMenuStrip.Size = new System.Drawing.Size(182, 124);

            this.IconContextMenuStrip.ResumeLayout(false);
            this.IconContextMenuStrip.PerformLayout();
        }
 /// <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(DataGridBaseView));
     this.bindingNavigator = new System.Windows.Forms.BindingNavigator(this.components);
     this.bindingNavigatorAddNewItem = new System.Windows.Forms.ToolStripButton();
     this.bindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.bindingNavigatorCountItem = new System.Windows.Forms.ToolStripLabel();
     this.bindingNavigatorDeleteItem = new System.Windows.Forms.ToolStripButton();
     this.buttonSave = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorMoveFirstItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMovePreviousItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorPositionItem = new System.Windows.Forms.ToolStripTextBox();
     this.bindingNavigatorSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorMoveNextItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMoveLastItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.dataGridView = new System.Windows.Forms.DataGridView();
     this.buttonCancel = new System.Windows.Forms.ToolStripButton();
     ((System.ComponentModel.ISupportInitialize)(this.bindingNavigator)).BeginInit();
     this.bindingNavigator.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
     this.SuspendLayout();
     //
     // bindingNavigator
     //
     this.bindingNavigator.AddNewItem = this.bindingNavigatorAddNewItem;
     this.bindingNavigator.BindingSource = this.bindingSource;
     this.bindingNavigator.CountItem = this.bindingNavigatorCountItem;
     this.bindingNavigator.DeleteItem = this.bindingNavigatorDeleteItem;
     this.bindingNavigator.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.buttonSave,
     this.buttonCancel,
     this.toolStripSeparator1,
     this.bindingNavigatorMoveFirstItem,
     this.bindingNavigatorMovePreviousItem,
     this.bindingNavigatorSeparator,
     this.bindingNavigatorPositionItem,
     this.bindingNavigatorCountItem,
     this.bindingNavigatorSeparator1,
     this.bindingNavigatorMoveNextItem,
     this.bindingNavigatorMoveLastItem,
     this.bindingNavigatorSeparator2,
     this.bindingNavigatorAddNewItem,
     this.bindingNavigatorDeleteItem});
     this.bindingNavigator.Location = new System.Drawing.Point(0, 0);
     this.bindingNavigator.MoveFirstItem = this.bindingNavigatorMoveFirstItem;
     this.bindingNavigator.MoveLastItem = this.bindingNavigatorMoveLastItem;
     this.bindingNavigator.MoveNextItem = this.bindingNavigatorMoveNextItem;
     this.bindingNavigator.MovePreviousItem = this.bindingNavigatorMovePreviousItem;
     this.bindingNavigator.Name = "bindingNavigator";
     this.bindingNavigator.PositionItem = this.bindingNavigatorPositionItem;
     this.bindingNavigator.Size = new System.Drawing.Size(636, 25);
     this.bindingNavigator.TabIndex = 0;
     this.bindingNavigator.Text = "bindingNavigator1";
     //
     // bindingNavigatorAddNewItem
     //
     this.bindingNavigatorAddNewItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorAddNewItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorAddNewItem.Image")));
     this.bindingNavigatorAddNewItem.Name = "bindingNavigatorAddNewItem";
     this.bindingNavigatorAddNewItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorAddNewItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorAddNewItem.Text = "Add new";
     //
     // bindingSource
     //
     this.bindingSource.ListChanged += new System.ComponentModel.ListChangedEventHandler(this.bindingSource_ListChanged);
     //
     // bindingNavigatorCountItem
     //
     this.bindingNavigatorCountItem.Name = "bindingNavigatorCountItem";
     this.bindingNavigatorCountItem.Size = new System.Drawing.Size(35, 22);
     this.bindingNavigatorCountItem.Text = "of {0}";
     this.bindingNavigatorCountItem.ToolTipText = "Total number of items";
     //
     // bindingNavigatorDeleteItem
     //
     this.bindingNavigatorDeleteItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorDeleteItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorDeleteItem.Image")));
     this.bindingNavigatorDeleteItem.Name = "bindingNavigatorDeleteItem";
     this.bindingNavigatorDeleteItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorDeleteItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorDeleteItem.Text = "Delete";
     //
     // buttonSave
     //
     this.buttonSave.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.buttonSave.Image = ((System.Drawing.Image)(resources.GetObject("buttonSave.Image")));
     this.buttonSave.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.buttonSave.Name = "buttonSave";
     this.buttonSave.Size = new System.Drawing.Size(23, 22);
     this.buttonSave.Text = "Save";
     this.buttonSave.Click += new System.EventHandler(this.buttonSave_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorMoveFirstItem
     //
     this.bindingNavigatorMoveFirstItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveFirstItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveFirstItem.Image")));
     this.bindingNavigatorMoveFirstItem.Name = "bindingNavigatorMoveFirstItem";
     this.bindingNavigatorMoveFirstItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveFirstItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveFirstItem.Text = "Move first";
     //
     // bindingNavigatorMovePreviousItem
     //
     this.bindingNavigatorMovePreviousItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMovePreviousItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMovePreviousItem.Image")));
     this.bindingNavigatorMovePreviousItem.Name = "bindingNavigatorMovePreviousItem";
     this.bindingNavigatorMovePreviousItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMovePreviousItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMovePreviousItem.Text = "Move previous";
     //
     // bindingNavigatorSeparator
     //
     this.bindingNavigatorSeparator.Name = "bindingNavigatorSeparator";
     this.bindingNavigatorSeparator.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorPositionItem
     //
     this.bindingNavigatorPositionItem.AccessibleName = "Position";
     this.bindingNavigatorPositionItem.AutoSize = false;
     this.bindingNavigatorPositionItem.Name = "bindingNavigatorPositionItem";
     this.bindingNavigatorPositionItem.Size = new System.Drawing.Size(50, 23);
     this.bindingNavigatorPositionItem.Text = "0";
     this.bindingNavigatorPositionItem.ToolTipText = "Current position";
     //
     // bindingNavigatorSeparator1
     //
     this.bindingNavigatorSeparator1.Name = "bindingNavigatorSeparator1";
     this.bindingNavigatorSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorMoveNextItem
     //
     this.bindingNavigatorMoveNextItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveNextItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveNextItem.Image")));
     this.bindingNavigatorMoveNextItem.Name = "bindingNavigatorMoveNextItem";
     this.bindingNavigatorMoveNextItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveNextItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveNextItem.Text = "Move next";
     //
     // bindingNavigatorMoveLastItem
     //
     this.bindingNavigatorMoveLastItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveLastItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveLastItem.Image")));
     this.bindingNavigatorMoveLastItem.Name = "bindingNavigatorMoveLastItem";
     this.bindingNavigatorMoveLastItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveLastItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveLastItem.Text = "Move last";
     //
     // bindingNavigatorSeparator2
     //
     this.bindingNavigatorSeparator2.Name = "bindingNavigatorSeparator2";
     this.bindingNavigatorSeparator2.Size = new System.Drawing.Size(6, 25);
     //
     // dataGridView
     //
     this.dataGridView.AutoGenerateColumns = false;
     this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridView.DataSource = this.bindingSource;
     this.dataGridView.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dataGridView.Location = new System.Drawing.Point(0, 25);
     this.dataGridView.Name = "dataGridView";
     this.dataGridView.Size = new System.Drawing.Size(636, 391);
     this.dataGridView.TabIndex = 2;
     //
     // buttonCancel
     //
     this.buttonCancel.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.buttonCancel.Image = ((System.Drawing.Image)(resources.GetObject("buttonCancel.Image")));
     this.buttonCancel.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.buttonCancel.Name = "buttonCancel";
     this.buttonCancel.Size = new System.Drawing.Size(23, 22);
     this.buttonCancel.Text = "Cancel";
     this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click);
     //
     // DataGridBaseView
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.dataGridView);
     this.Controls.Add(this.bindingNavigator);
     this.Name = "DataGridBaseView";
     this.Size = new System.Drawing.Size(636, 416);
     ((System.ComponentModel.ISupportInitialize)(this.bindingNavigator)).EndInit();
     this.bindingNavigator.ResumeLayout(false);
     this.bindingNavigator.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <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(frmXuLyNhapKho));
     this.statusStrip1 = new System.Windows.Forms.StatusStrip();
     this.toolStripStatus_Themmoi = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatus_In = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatus_Thanhtoan = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatus_InMaVach = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
     this.palNhap = new System.Windows.Forms.Panel();
     this.label5 = new System.Windows.Forms.Label();
     this.chekChonLoai = new System.Windows.Forms.CheckBox();
     this.lblMaHoaDonNhap = new System.Windows.Forms.Label();
     this.lblTenNhaCungCap = new System.Windows.Forms.Label();
     this.txtTygia = new System.Windows.Forms.TextBox();
     this.label3 = new System.Windows.Forms.Label();
     this.cbxTienTe_TyGia = new System.Windows.Forms.ComboBox();
     this.label2 = new System.Windows.Forms.Label();
     this.btnTimMadatmuahang = new System.Windows.Forms.Button();
     this.txtMadondathang = new System.Windows.Forms.TextBox();
     this.linkLabel1 = new System.Windows.Forms.LinkLabel();
     this.makHanthanhtoan = new System.Windows.Forms.MaskedTextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.txtnguoigiaohang = new System.Windows.Forms.TextBox();
     this.btnTimnhacungcap = new System.Windows.Forms.Button();
     this.lblDiengiai = new System.Windows.Forms.Label();
     this.txtDiengiai = new System.Windows.Forms.TextBox();
     this.cbxHinhthucthanhtoan = new System.Windows.Forms.ComboBox();
     this.lblHinhthucthanhtoan = new System.Windows.Forms.Label();
     this.cbxKhoHang = new System.Windows.Forms.ComboBox();
     this.lblKhohang = new System.Windows.Forms.Label();
     this.lblNguoigiaohang = new System.Windows.Forms.Label();
     this.txtNohienthoi = new System.Windows.Forms.TextBox();
     this.lblNohienthoi = new System.Windows.Forms.Label();
     this.lblDinhdangngay = new System.Windows.Forms.LinkLabel();
     this.makNgaydonhang = new System.Windows.Forms.MaskedTextBox();
     this.lblNgaydonhang = new System.Windows.Forms.Label();
     this.txtManhacungcap = new System.Windows.Forms.TextBox();
     this.txtSodonhang = new System.Windows.Forms.TextBox();
     this.lblManhacungcap = new System.Windows.Forms.Label();
     this.lblSodonhang = new System.Windows.Forms.Label();
     this.palXem = new System.Windows.Forms.Panel();
     this.txtTienCKTM0 = new System.Windows.Forms.TextBox();
     this.txtCKTM0 = new System.Windows.Forms.TextBox();
     this.lbtinhtrang = new System.Windows.Forms.Label();
     this.txtGiatrigiatang = new System.Windows.Forms.TextBox();
     this.label8 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.txtTienhang = new System.Windows.Forms.TextBox();
     this.txtChietkhau = new System.Windows.Forms.TextBox();
     this.lblChietkhau_Tienhang = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.txtThanhtoanngay = new System.Windows.Forms.TextBox();
     this.txtTienCKTM = new System.Windows.Forms.TextBox();
     this.lblPhantram = new System.Windows.Forms.LinkLabel();
     this.txtCKTM = new System.Windows.Forms.TextBox();
     this.label4 = new System.Windows.Forms.Label();
     this.txtTienTraLai = new System.Windows.Forms.TextBox();
     this.lblTongtien = new System.Windows.Forms.Label();
     this.txtTongThanhToan = new System.Windows.Forms.TextBox();
     this.lblPhivanchuyen_Phikhac = new System.Windows.Forms.Label();
     this.grbDataGridview = new System.Windows.Forms.GroupBox();
     this.dgvInsertOrder = new System.Windows.Forms.DataGridView();
     this.palThem = new System.Windows.Forms.Panel();
     this.toolStrip_Insert = new System.Windows.Forms.ToolStrip();
     this.toolStrip_txtTracuu = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripLabel8 = new System.Windows.Forms.ToolStripLabel();
     this.toolStrip_txtTenhang = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
     this.toolStrip_txtSoluong = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripLabel5 = new System.Windows.Forms.ToolStripLabel();
     this.toolStrip_txtGiagoc = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripLabel2 = new System.Windows.Forms.ToolStripLabel();
     this.toolStrip_txtChietkhauphantram = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripLabel3 = new System.Windows.Forms.ToolStripLabel();
     this.toolStrip_txtGianhap = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripLabel4 = new System.Windows.Forms.ToolStripLabel();
     this.toolStrip_txtThuegiatrigiatang = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripLabel6 = new System.Windows.Forms.ToolStripLabel();
     this.toolStrip_Chietkhau = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripLabel7 = new System.Windows.Forms.ToolStripLabel();
     this.toolStrip_txtNgayhethan = new System.Windows.Forms.ToolStripTextBox();
     this.toolStrip_btnThem = new System.Windows.Forms.ToolStripButton();
     this.statusStrip1.SuspendLayout();
     this.palNhap.SuspendLayout();
     this.palXem.SuspendLayout();
     this.grbDataGridview.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgvInsertOrder)).BeginInit();
     this.palThem.SuspendLayout();
     this.toolStrip_Insert.SuspendLayout();
     this.SuspendLayout();
     //
     // statusStrip1
     //
     this.statusStrip1.BackColor = System.Drawing.Color.LightSteelBlue;
     this.statusStrip1.Font = new System.Drawing.Font("Times New Roman", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripStatus_Themmoi,
     this.toolStripStatus_In,
     this.toolStripStatus_Thanhtoan,
     this.toolStripStatus_InMaVach,
     this.toolStripStatusLabel1});
     this.statusStrip1.Location = new System.Drawing.Point(0, 587);
     this.statusStrip1.Name = "statusStrip1";
     this.statusStrip1.Size = new System.Drawing.Size(1034, 26);
     this.statusStrip1.TabIndex = 0;
     this.statusStrip1.Text = "statusStrip1";
     //
     // toolStripStatus_Themmoi
     //
     this.toolStripStatus_Themmoi.Image = global::GUI.Properties.Resources.Them;
     this.toolStripStatus_Themmoi.Name = "toolStripStatus_Themmoi";
     this.toolStripStatus_Themmoi.Size = new System.Drawing.Size(203, 21);
     this.toolStripStatus_Themmoi.Spring = true;
     this.toolStripStatus_Themmoi.Tag = "1";
     this.toolStripStatus_Themmoi.Text = "Thêm";
     this.toolStripStatus_Themmoi.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.toolStripStatus_Themmoi.Click += new System.EventHandler(this.toolStripStatusLabel1_Click);
     this.toolStripStatus_Themmoi.MouseLeave += new System.EventHandler(this.MouseLeave);
     this.toolStripStatus_Themmoi.MouseMove += new System.Windows.Forms.MouseEventHandler(this.MouseMove);
     //
     // toolStripStatus_In
     //
     this.toolStripStatus_In.Image = global::GUI.Properties.Resources.In;
     this.toolStripStatus_In.Name = "toolStripStatus_In";
     this.toolStripStatus_In.Size = new System.Drawing.Size(203, 21);
     this.toolStripStatus_In.Spring = true;
     this.toolStripStatus_In.Tag = "2";
     this.toolStripStatus_In.Text = "In";
     this.toolStripStatus_In.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.toolStripStatus_In.Click += new System.EventHandler(this.toolStripStatus_In_Click);
     this.toolStripStatus_In.MouseLeave += new System.EventHandler(this.MouseLeave);
     this.toolStripStatus_In.MouseMove += new System.Windows.Forms.MouseEventHandler(this.MouseMove);
     //
     // toolStripStatus_Thanhtoan
     //
     this.toolStripStatus_Thanhtoan.Image = global::GUI.Properties.Resources.Don_dat_hang__1_;
     this.toolStripStatus_Thanhtoan.Name = "toolStripStatus_Thanhtoan";
     this.toolStripStatus_Thanhtoan.Size = new System.Drawing.Size(203, 21);
     this.toolStripStatus_Thanhtoan.Spring = true;
     this.toolStripStatus_Thanhtoan.Tag = "3";
     this.toolStripStatus_Thanhtoan.Text = "Lập phiếu thanh toán";
     this.toolStripStatus_Thanhtoan.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.toolStripStatus_Thanhtoan.Click += new System.EventHandler(this.toolStripStatus_Thanhtoan_Click);
     this.toolStripStatus_Thanhtoan.MouseLeave += new System.EventHandler(this.MouseLeave);
     this.toolStripStatus_Thanhtoan.MouseMove += new System.Windows.Forms.MouseEventHandler(this.MouseMove);
     //
     // toolStripStatus_InMaVach
     //
     this.toolStripStatus_InMaVach.Image = global::GUI.Properties.Resources.In_tem_ma_vach__1_;
     this.toolStripStatus_InMaVach.Name = "toolStripStatus_InMaVach";
     this.toolStripStatus_InMaVach.Size = new System.Drawing.Size(203, 21);
     this.toolStripStatus_InMaVach.Spring = true;
     this.toolStripStatus_InMaVach.Tag = "1";
     this.toolStripStatus_InMaVach.Text = "In mã vạch hàng hóa";
     this.toolStripStatus_InMaVach.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.toolStripStatus_InMaVach.Click += new System.EventHandler(this.toolStripStatus_InMaVach_Click);
     //
     // toolStripStatusLabel1
     //
     this.toolStripStatusLabel1.Image = global::GUI.Properties.Resources.Xoa;
     this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
     this.toolStripStatusLabel1.Size = new System.Drawing.Size(203, 21);
     this.toolStripStatusLabel1.Spring = true;
     this.toolStripStatusLabel1.Tag = "4";
     this.toolStripStatusLabel1.Text = "Trở về";
     this.toolStripStatusLabel1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.toolStripStatusLabel1.Click += new System.EventHandler(this.toolStripStatusLabel1_Click_1);
     this.toolStripStatusLabel1.MouseLeave += new System.EventHandler(this.MouseLeave);
     this.toolStripStatusLabel1.MouseMove += new System.Windows.Forms.MouseEventHandler(this.MouseMove);
     //
     // palNhap
     //
     this.palNhap.Controls.Add(this.label5);
     this.palNhap.Controls.Add(this.chekChonLoai);
     this.palNhap.Controls.Add(this.lblMaHoaDonNhap);
     this.palNhap.Controls.Add(this.lblTenNhaCungCap);
     this.palNhap.Controls.Add(this.txtTygia);
     this.palNhap.Controls.Add(this.label3);
     this.palNhap.Controls.Add(this.cbxTienTe_TyGia);
     this.palNhap.Controls.Add(this.label2);
     this.palNhap.Controls.Add(this.btnTimMadatmuahang);
     this.palNhap.Controls.Add(this.txtMadondathang);
     this.palNhap.Controls.Add(this.linkLabel1);
     this.palNhap.Controls.Add(this.makHanthanhtoan);
     this.palNhap.Controls.Add(this.label1);
     this.palNhap.Controls.Add(this.txtnguoigiaohang);
     this.palNhap.Controls.Add(this.btnTimnhacungcap);
     this.palNhap.Controls.Add(this.lblDiengiai);
     this.palNhap.Controls.Add(this.txtDiengiai);
     this.palNhap.Controls.Add(this.cbxHinhthucthanhtoan);
     this.palNhap.Controls.Add(this.lblHinhthucthanhtoan);
     this.palNhap.Controls.Add(this.cbxKhoHang);
     this.palNhap.Controls.Add(this.lblKhohang);
     this.palNhap.Controls.Add(this.lblNguoigiaohang);
     this.palNhap.Controls.Add(this.txtNohienthoi);
     this.palNhap.Controls.Add(this.lblNohienthoi);
     this.palNhap.Controls.Add(this.lblDinhdangngay);
     this.palNhap.Controls.Add(this.makNgaydonhang);
     this.palNhap.Controls.Add(this.lblNgaydonhang);
     this.palNhap.Controls.Add(this.txtManhacungcap);
     this.palNhap.Controls.Add(this.txtSodonhang);
     this.palNhap.Controls.Add(this.lblManhacungcap);
     this.palNhap.Controls.Add(this.lblSodonhang);
     this.palNhap.Dock = System.Windows.Forms.DockStyle.Top;
     this.palNhap.Location = new System.Drawing.Point(0, 0);
     this.palNhap.Name = "palNhap";
     this.palNhap.Size = new System.Drawing.Size(1034, 223);
     this.palNhap.TabIndex = 1;
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.Location = new System.Drawing.Point(543, 156);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(63, 15);
     this.label5.TabIndex = 100;
     this.label5.Text = "Loại nhập:";
     this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // chekChonLoai
     //
     this.chekChonLoai.AutoSize = true;
     this.chekChonLoai.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chekChonLoai.Location = new System.Drawing.Point(620, 156);
     this.chekChonLoai.Name = "chekChonLoai";
     this.chekChonLoai.Size = new System.Drawing.Size(180, 19);
     this.chekChonLoai.TabIndex = 9;
     this.chekChonLoai.Text = "Lập phiếu theo đơn đặt hàng";
     this.chekChonLoai.UseVisualStyleBackColor = true;
     this.chekChonLoai.CheckedChanged += new System.EventHandler(this.chekChonLoai_CheckedChanged);
     //
     // lblMaHoaDonNhap
     //
     this.lblMaHoaDonNhap.AutoSize = true;
     this.lblMaHoaDonNhap.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblMaHoaDonNhap.ForeColor = System.Drawing.Color.Blue;
     this.lblMaHoaDonNhap.Location = new System.Drawing.Point(881, 190);
     this.lblMaHoaDonNhap.Name = "lblMaHoaDonNhap";
     this.lblMaHoaDonNhap.Size = new System.Drawing.Size(0, 16);
     this.lblMaHoaDonNhap.TabIndex = 43;
     //
     // lblTenNhaCungCap
     //
     this.lblTenNhaCungCap.AutoSize = true;
     this.lblTenNhaCungCap.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTenNhaCungCap.ForeColor = System.Drawing.Color.Blue;
     this.lblTenNhaCungCap.Location = new System.Drawing.Point(337, 55);
     this.lblTenNhaCungCap.Name = "lblTenNhaCungCap";
     this.lblTenNhaCungCap.Size = new System.Drawing.Size(0, 16);
     this.lblTenNhaCungCap.TabIndex = 42;
     this.lblTenNhaCungCap.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // txtTygia
     //
     this.txtTygia.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.txtTygia.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtTygia.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtTygia.Location = new System.Drawing.Point(755, 83);
     this.txtTygia.Name = "txtTygia";
     this.txtTygia.ReadOnly = true;
     this.txtTygia.Size = new System.Drawing.Size(257, 22);
     this.txtTygia.TabIndex = 100;
     this.txtTygia.Text = "0";
     this.txtTygia.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.Location = new System.Drawing.Point(521, 87);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(85, 15);
     this.label3.TabIndex = 100;
     this.label3.Text = "Tiền tệ/Tỷ giá:";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // cbxTienTe_TyGia
     //
     this.cbxTienTe_TyGia.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbxTienTe_TyGia.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cbxTienTe_TyGia.FormattingEnabled = true;
     this.cbxTienTe_TyGia.Location = new System.Drawing.Point(620, 82);
     this.cbxTienTe_TyGia.Name = "cbxTienTe_TyGia";
     this.cbxTienTe_TyGia.Size = new System.Drawing.Size(129, 24);
     this.cbxTienTe_TyGia.TabIndex = 5;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location = new System.Drawing.Point(498, 187);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(108, 15);
     this.label2.TabIndex = 100;
     this.label2.Text = "Đơn đặt mua hàng:";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // btnTimMadatmuahang
     //
     this.btnTimMadatmuahang.BackColor = System.Drawing.Color.Gray;
     this.btnTimMadatmuahang.BackgroundImage = global::GUI.Properties.Resources.button_search;
     this.btnTimMadatmuahang.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.btnTimMadatmuahang.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnTimMadatmuahang.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnTimMadatmuahang.ForeColor = System.Drawing.Color.Transparent;
     this.btnTimMadatmuahang.Location = new System.Drawing.Point(847, 184);
     this.btnTimMadatmuahang.Name = "btnTimMadatmuahang";
     this.btnTimMadatmuahang.Size = new System.Drawing.Size(28, 25);
     this.btnTimMadatmuahang.TabIndex = 11;
     this.btnTimMadatmuahang.UseVisualStyleBackColor = false;
     this.btnTimMadatmuahang.Click += new System.EventHandler(this.button1_Click);
     //
     // txtMadondathang
     //
     this.txtMadondathang.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.txtMadondathang.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtMadondathang.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtMadondathang.Location = new System.Drawing.Point(620, 185);
     this.txtMadondathang.Name = "txtMadondathang";
     this.txtMadondathang.ReadOnly = true;
     this.txtMadondathang.Size = new System.Drawing.Size(221, 22);
     this.txtMadondathang.TabIndex = 10;
     this.txtMadondathang.Text = "<F4 -Tra cứu>";
     this.txtMadondathang.TextChanged += new System.EventHandler(this.txtMadondathang_TextChanged);
     this.txtMadondathang.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtMadondathang_KeyDown);
     this.txtMadondathang.MouseLeave += new System.EventHandler(this.txtMadondathang_MouseLeave);
     this.txtMadondathang.MouseHover += new System.EventHandler(this.txtMadondathang_MouseHover);
     //
     // linkLabel1
     //
     this.linkLabel1.AutoSize = true;
     this.linkLabel1.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.linkLabel1.LinkBehavior = System.Windows.Forms.LinkBehavior.NeverUnderline;
     this.linkLabel1.Location = new System.Drawing.Point(911, 16);
     this.linkLabel1.Name = "linkLabel1";
     this.linkLabel1.Size = new System.Drawing.Size(83, 15);
     this.linkLabel1.TabIndex = 100;
     this.linkLabel1.TabStop = true;
     this.linkLabel1.Text = "(dd/mm/yyyy)";
     this.linkLabel1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // makHanthanhtoan
     //
     this.makHanthanhtoan.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.makHanthanhtoan.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.makHanthanhtoan.Location = new System.Drawing.Point(805, 12);
     this.makHanthanhtoan.Mask = "00/00/0000";
     this.makHanthanhtoan.Name = "makHanthanhtoan";
     this.makHanthanhtoan.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.makHanthanhtoan.Size = new System.Drawing.Size(100, 22);
     this.makHanthanhtoan.TabIndex = 1;
     this.makHanthanhtoan.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(706, 15);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(93, 15);
     this.label1.TabIndex = 100;
     this.label1.Text = "Hạn thanh toán:";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtnguoigiaohang
     //
     this.txtnguoigiaohang.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtnguoigiaohang.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtnguoigiaohang.Location = new System.Drawing.Point(141, 84);
     this.txtnguoigiaohang.MaxLength = 20;
     this.txtnguoigiaohang.Name = "txtnguoigiaohang";
     this.txtnguoigiaohang.Size = new System.Drawing.Size(334, 22);
     this.txtnguoigiaohang.TabIndex = 4;
     //
     // btnTimnhacungcap
     //
     this.btnTimnhacungcap.BackColor = System.Drawing.Color.Gray;
     this.btnTimnhacungcap.BackgroundImage = global::GUI.Properties.Resources.button_search;
     this.btnTimnhacungcap.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.btnTimnhacungcap.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnTimnhacungcap.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnTimnhacungcap.ForeColor = System.Drawing.Color.Transparent;
     this.btnTimnhacungcap.Location = new System.Drawing.Point(300, 48);
     this.btnTimnhacungcap.Name = "btnTimnhacungcap";
     this.btnTimnhacungcap.Size = new System.Drawing.Size(28, 25);
     this.btnTimnhacungcap.TabIndex = 3;
     this.btnTimnhacungcap.UseVisualStyleBackColor = false;
     this.btnTimnhacungcap.Click += new System.EventHandler(this.btnTimnhacungcap_Click);
     //
     // lblDiengiai
     //
     this.lblDiengiai.AutoSize = true;
     this.lblDiengiai.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblDiengiai.Location = new System.Drawing.Point(73, 156);
     this.lblDiengiai.Name = "lblDiengiai";
     this.lblDiengiai.Size = new System.Drawing.Size(57, 15);
     this.lblDiengiai.TabIndex = 100;
     this.lblDiengiai.Text = "Diễn giải:";
     //
     // txtDiengiai
     //
     this.txtDiengiai.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtDiengiai.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtDiengiai.Location = new System.Drawing.Point(141, 157);
     this.txtDiengiai.MaxLength = 100;
     this.txtDiengiai.Multiline = true;
     this.txtDiengiai.Name = "txtDiengiai";
     this.txtDiengiai.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.txtDiengiai.Size = new System.Drawing.Size(350, 50);
     this.txtDiengiai.TabIndex = 8;
     //
     // cbxHinhthucthanhtoan
     //
     this.cbxHinhthucthanhtoan.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbxHinhthucthanhtoan.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cbxHinhthucthanhtoan.FormattingEnabled = true;
     this.cbxHinhthucthanhtoan.Location = new System.Drawing.Point(141, 120);
     this.cbxHinhthucthanhtoan.Name = "cbxHinhthucthanhtoan";
     this.cbxHinhthucthanhtoan.Size = new System.Drawing.Size(334, 24);
     this.cbxHinhthucthanhtoan.TabIndex = 6;
     //
     // lblHinhthucthanhtoan
     //
     this.lblHinhthucthanhtoan.AutoSize = true;
     this.lblHinhthucthanhtoan.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblHinhthucthanhtoan.Location = new System.Drawing.Point(25, 123);
     this.lblHinhthucthanhtoan.Name = "lblHinhthucthanhtoan";
     this.lblHinhthucthanhtoan.Size = new System.Drawing.Size(107, 15);
     this.lblHinhthucthanhtoan.TabIndex = 100;
     this.lblHinhthucthanhtoan.Text = "H.thức thanh toán:";
     //
     // cbxKhoHang
     //
     this.cbxKhoHang.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbxKhoHang.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cbxKhoHang.FormattingEnabled = true;
     this.cbxKhoHang.Location = new System.Drawing.Point(620, 118);
     this.cbxKhoHang.Name = "cbxKhoHang";
     this.cbxKhoHang.Size = new System.Drawing.Size(392, 24);
     this.cbxKhoHang.TabIndex = 7;
     //
     // lblKhohang
     //
     this.lblKhohang.AutoSize = true;
     this.lblKhohang.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblKhohang.Location = new System.Drawing.Point(543, 123);
     this.lblKhohang.Name = "lblKhohang";
     this.lblKhohang.Size = new System.Drawing.Size(63, 15);
     this.lblKhohang.TabIndex = 100;
     this.lblKhohang.Text = "Kho hàng:";
     this.lblKhohang.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // lblNguoigiaohang
     //
     this.lblNguoigiaohang.AutoSize = true;
     this.lblNguoigiaohang.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblNguoigiaohang.Location = new System.Drawing.Point(33, 86);
     this.lblNguoigiaohang.Name = "lblNguoigiaohang";
     this.lblNguoigiaohang.Size = new System.Drawing.Size(99, 15);
     this.lblNguoigiaohang.TabIndex = 100;
     this.lblNguoigiaohang.Text = "Người giao hàng:";
     //
     // txtNohienthoi
     //
     this.txtNohienthoi.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.txtNohienthoi.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtNohienthoi.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtNohienthoi.ForeColor = System.Drawing.Color.Black;
     this.txtNohienthoi.Location = new System.Drawing.Point(755, 47);
     this.txtNohienthoi.Name = "txtNohienthoi";
     this.txtNohienthoi.ReadOnly = true;
     this.txtNohienthoi.Size = new System.Drawing.Size(257, 22);
     this.txtNohienthoi.TabIndex = 100;
     this.txtNohienthoi.Text = "0";
     this.txtNohienthoi.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // lblNohienthoi
     //
     this.lblNohienthoi.AutoSize = true;
     this.lblNohienthoi.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblNohienthoi.Location = new System.Drawing.Point(668, 50);
     this.lblNohienthoi.Name = "lblNohienthoi";
     this.lblNohienthoi.Size = new System.Drawing.Size(81, 16);
     this.lblNohienthoi.TabIndex = 100;
     this.lblNohienthoi.Text = "Nợ hiện thời:";
     this.lblNohienthoi.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // lblDinhdangngay
     //
     this.lblDinhdangngay.AutoSize = true;
     this.lblDinhdangngay.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblDinhdangngay.LinkBehavior = System.Windows.Forms.LinkBehavior.NeverUnderline;
     this.lblDinhdangngay.Location = new System.Drawing.Point(594, 16);
     this.lblDinhdangngay.Name = "lblDinhdangngay";
     this.lblDinhdangngay.Size = new System.Drawing.Size(83, 15);
     this.lblDinhdangngay.TabIndex = 100;
     this.lblDinhdangngay.TabStop = true;
     this.lblDinhdangngay.Text = "(dd/mm/yyyy)";
     this.lblDinhdangngay.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // makNgaydonhang
     //
     this.makNgaydonhang.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.makNgaydonhang.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.makNgaydonhang.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.makNgaydonhang.Location = new System.Drawing.Point(476, 13);
     this.makNgaydonhang.Mask = "00/00/0000";
     this.makNgaydonhang.Name = "makNgaydonhang";
     this.makNgaydonhang.ReadOnly = true;
     this.makNgaydonhang.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.makNgaydonhang.Size = new System.Drawing.Size(113, 22);
     this.makNgaydonhang.TabIndex = 100;
     this.makNgaydonhang.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // lblNgaydonhang
     //
     this.lblNgaydonhang.AutoSize = true;
     this.lblNgaydonhang.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblNgaydonhang.Location = new System.Drawing.Point(380, 17);
     this.lblNgaydonhang.Name = "lblNgaydonhang";
     this.lblNgaydonhang.Size = new System.Drawing.Size(90, 15);
     this.lblNgaydonhang.TabIndex = 100;
     this.lblNgaydonhang.Text = "Ngày chứng từ:";
     this.lblNgaydonhang.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtManhacungcap
     //
     this.txtManhacungcap.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.txtManhacungcap.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtManhacungcap.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtManhacungcap.Location = new System.Drawing.Point(142, 48);
     this.txtManhacungcap.Name = "txtManhacungcap";
     this.txtManhacungcap.ReadOnly = true;
     this.txtManhacungcap.Size = new System.Drawing.Size(152, 22);
     this.txtManhacungcap.TabIndex = 2;
     this.txtManhacungcap.Text = "<F4 -Tra cứu>";
     this.txtManhacungcap.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtManhacungcap_KeyDown);
     this.txtManhacungcap.MouseLeave += new System.EventHandler(this.txtManhacungcap_MouseLeave);
     this.txtManhacungcap.MouseHover += new System.EventHandler(this.txtManhacungcap_MouseHover);
     //
     // txtSodonhang
     //
     this.txtSodonhang.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.txtSodonhang.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtSodonhang.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtSodonhang.Location = new System.Drawing.Point(141, 14);
     this.txtSodonhang.Name = "txtSodonhang";
     this.txtSodonhang.ReadOnly = true;
     this.txtSodonhang.Size = new System.Drawing.Size(187, 22);
     this.txtSodonhang.TabIndex = 100;
     //
     // lblManhacungcap
     //
     this.lblManhacungcap.AutoSize = true;
     this.lblManhacungcap.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblManhacungcap.Location = new System.Drawing.Point(33, 51);
     this.lblManhacungcap.Name = "lblManhacungcap";
     this.lblManhacungcap.Size = new System.Drawing.Size(103, 15);
     this.lblManhacungcap.TabIndex = 100;
     this.lblManhacungcap.Text = "Mã nhà cung cấp:";
     this.lblManhacungcap.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // lblSodonhang
     //
     this.lblSodonhang.AutoSize = true;
     this.lblSodonhang.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblSodonhang.Location = new System.Drawing.Point(48, 16);
     this.lblSodonhang.Name = "lblSodonhang";
     this.lblSodonhang.Size = new System.Drawing.Size(82, 15);
     this.lblSodonhang.TabIndex = 100;
     this.lblSodonhang.Text = "Mã đơn nhập:";
     this.lblSodonhang.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // palXem
     //
     this.palXem.BackColor = System.Drawing.SystemColors.Control;
     this.palXem.Controls.Add(this.txtTienCKTM0);
     this.palXem.Controls.Add(this.txtCKTM0);
     this.palXem.Controls.Add(this.lbtinhtrang);
     this.palXem.Controls.Add(this.txtGiatrigiatang);
     this.palXem.Controls.Add(this.label8);
     this.palXem.Controls.Add(this.label7);
     this.palXem.Controls.Add(this.txtTienhang);
     this.palXem.Controls.Add(this.txtChietkhau);
     this.palXem.Controls.Add(this.lblChietkhau_Tienhang);
     this.palXem.Controls.Add(this.label6);
     this.palXem.Controls.Add(this.txtThanhtoanngay);
     this.palXem.Controls.Add(this.txtTienCKTM);
     this.palXem.Controls.Add(this.lblPhantram);
     this.palXem.Controls.Add(this.txtCKTM);
     this.palXem.Controls.Add(this.label4);
     this.palXem.Controls.Add(this.txtTienTraLai);
     this.palXem.Controls.Add(this.lblTongtien);
     this.palXem.Controls.Add(this.txtTongThanhToan);
     this.palXem.Controls.Add(this.lblPhivanchuyen_Phikhac);
     this.palXem.Controls.Add(this.grbDataGridview);
     this.palXem.Dock = System.Windows.Forms.DockStyle.Fill;
     this.palXem.Location = new System.Drawing.Point(0, 223);
     this.palXem.Name = "palXem";
     this.palXem.Size = new System.Drawing.Size(1034, 364);
     this.palXem.TabIndex = 2;
     //
     // txtTienCKTM0
     //
     this.txtTienCKTM0.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.txtTienCKTM0.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtTienCKTM0.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtTienCKTM0.Location = new System.Drawing.Point(839, 271);
     this.txtTienCKTM0.Name = "txtTienCKTM0";
     this.txtTienCKTM0.ReadOnly = true;
     this.txtTienCKTM0.Size = new System.Drawing.Size(173, 26);
     this.txtTienCKTM0.TabIndex = 102;
     this.txtTienCKTM0.Text = "0";
     this.txtTienCKTM0.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txtCKTM0
     //
     this.txtCKTM0.BackColor = System.Drawing.Color.White;
     this.txtCKTM0.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtCKTM0.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtCKTM0.Location = new System.Drawing.Point(779, 271);
     this.txtCKTM0.MaxLength = 3;
     this.txtCKTM0.Name = "txtCKTM0";
     this.txtCKTM0.Size = new System.Drawing.Size(37, 26);
     this.txtCKTM0.TabIndex = 101;
     this.txtCKTM0.Text = "0";
     this.txtCKTM0.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.txtCKTM0.Click += new System.EventHandler(this.txtCKTM0_Click);
     this.txtCKTM0.TextChanged += new System.EventHandler(this.txtCKTM0_TextChanged);
     //
     // lbtinhtrang
     //
     this.lbtinhtrang.AutoSize = true;
     this.lbtinhtrang.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbtinhtrang.ForeColor = System.Drawing.Color.Red;
     this.lbtinhtrang.Location = new System.Drawing.Point(14, 311);
     this.lbtinhtrang.Name = "lbtinhtrang";
     this.lbtinhtrang.Size = new System.Drawing.Size(143, 20);
     this.lbtinhtrang.TabIndex = 42;
     this.lbtinhtrang.Text = "Chưa thanh toán";
     //
     // txtGiatrigiatang
     //
     this.txtGiatrigiatang.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.txtGiatrigiatang.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtGiatrigiatang.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtGiatrigiatang.Location = new System.Drawing.Point(762, 234);
     this.txtGiatrigiatang.Name = "txtGiatrigiatang";
     this.txtGiatrigiatang.ReadOnly = true;
     this.txtGiatrigiatang.Size = new System.Drawing.Size(252, 26);
     this.txtGiatrigiatang.TabIndex = 100;
     this.txtGiatrigiatang.Text = "0";
     this.txtGiatrigiatang.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label8.Location = new System.Drawing.Point(661, 234);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(95, 19);
     this.label8.TabIndex = 100;
     this.label8.Text = "Thuế GTGT:";
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label7.Location = new System.Drawing.Point(611, 201);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(145, 19);
     this.label7.TabIndex = 100;
     this.label7.Text = "Tổng tiền chưa C/K:";
     //
     // txtTienhang
     //
     this.txtTienhang.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.txtTienhang.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtTienhang.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtTienhang.Location = new System.Drawing.Point(762, 196);
     this.txtTienhang.Name = "txtTienhang";
     this.txtTienhang.ReadOnly = true;
     this.txtTienhang.Size = new System.Drawing.Size(252, 29);
     this.txtTienhang.TabIndex = 100;
     this.txtTienhang.Text = "0";
     this.txtTienhang.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txtChietkhau
     //
     this.txtChietkhau.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.txtChietkhau.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtChietkhau.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtChietkhau.Location = new System.Drawing.Point(352, 196);
     this.txtChietkhau.Name = "txtChietkhau";
     this.txtChietkhau.ReadOnly = true;
     this.txtChietkhau.Size = new System.Drawing.Size(238, 29);
     this.txtChietkhau.TabIndex = 100;
     this.txtChietkhau.Text = "0";
     this.txtChietkhau.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // lblChietkhau_Tienhang
     //
     this.lblChietkhau_Tienhang.AutoSize = true;
     this.lblChietkhau_Tienhang.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblChietkhau_Tienhang.Location = new System.Drawing.Point(211, 201);
     this.lblChietkhau_Tienhang.Name = "lblChietkhau_Tienhang";
     this.lblChietkhau_Tienhang.Size = new System.Drawing.Size(128, 19);
     this.lblChietkhau_Tienhang.TabIndex = 100;
     this.lblChietkhau_Tienhang.Text = "Tổng tiền đã C/K:";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.Location = new System.Drawing.Point(214, 237);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(125, 19);
     this.label6.TabIndex = 100;
     this.label6.Text = "Thanh toán ngay:";
     //
     // txtThanhtoanngay
     //
     this.txtThanhtoanngay.BackColor = System.Drawing.Color.White;
     this.txtThanhtoanngay.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtThanhtoanngay.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtThanhtoanngay.Location = new System.Drawing.Point(352, 234);
     this.txtThanhtoanngay.MaxLength = 16;
     this.txtThanhtoanngay.Name = "txtThanhtoanngay";
     this.txtThanhtoanngay.Size = new System.Drawing.Size(238, 29);
     this.txtThanhtoanngay.TabIndex = 12;
     this.txtThanhtoanngay.Text = "0";
     this.txtThanhtoanngay.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.txtThanhtoanngay.Click += new System.EventHandler(this.txtThanhtoanngay_Click);
     this.txtThanhtoanngay.TextChanged += new System.EventHandler(this.txtThanhtoanngay_TextChanged);
     this.txtThanhtoanngay.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtThanhtoanngay_KeyDown);
     this.txtThanhtoanngay.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtThanhtoanngay_KeyPress);
     //
     // txtTienCKTM
     //
     this.txtTienCKTM.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.txtTienCKTM.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtTienCKTM.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtTienCKTM.Location = new System.Drawing.Point(12, 227);
     this.txtTienCKTM.Name = "txtTienCKTM";
     this.txtTienCKTM.ReadOnly = true;
     this.txtTienCKTM.Size = new System.Drawing.Size(173, 26);
     this.txtTienCKTM.TabIndex = 100;
     this.txtTienCKTM.Text = "0";
     this.txtTienCKTM.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.txtTienCKTM.Visible = false;
     this.txtTienCKTM.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBox5_KeyPress);
     //
     // lblPhantram
     //
     this.lblPhantram.AutoSize = true;
     this.lblPhantram.BackColor = System.Drawing.Color.Transparent;
     this.lblPhantram.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblPhantram.LinkBehavior = System.Windows.Forms.LinkBehavior.NeverUnderline;
     this.lblPhantram.Location = new System.Drawing.Point(818, 279);
     this.lblPhantram.Name = "lblPhantram";
     this.lblPhantram.Size = new System.Drawing.Size(21, 13);
     this.lblPhantram.TabIndex = 100;
     this.lblPhantram.TabStop = true;
     this.lblPhantram.Text = "(%)";
     //
     // txtCKTM
     //
     this.txtCKTM.BackColor = System.Drawing.Color.White;
     this.txtCKTM.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtCKTM.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtCKTM.Location = new System.Drawing.Point(12, 199);
     this.txtCKTM.MaxLength = 3;
     this.txtCKTM.Name = "txtCKTM";
     this.txtCKTM.Size = new System.Drawing.Size(54, 26);
     this.txtCKTM.TabIndex = 13;
     this.txtCKTM.Text = "0";
     this.txtCKTM.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.txtCKTM.Visible = false;
     this.txtCKTM.Click += new System.EventHandler(this.txtCKTM_Click);
     this.txtCKTM.TextChanged += new System.EventHandler(this.txtCKTM_TextChanged);
     this.txtCKTM.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBox4_KeyPress);
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.Location = new System.Drawing.Point(596, 273);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(177, 19);
     this.label4.TabIndex = 100;
     this.label4.Text = "Chiết khấu tổng hóa đơn:";
     //
     // txtTienTraLai
     //
     this.txtTienTraLai.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.txtTienTraLai.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtTienTraLai.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtTienTraLai.Location = new System.Drawing.Point(352, 271);
     this.txtTienTraLai.Name = "txtTienTraLai";
     this.txtTienTraLai.ReadOnly = true;
     this.txtTienTraLai.Size = new System.Drawing.Size(238, 29);
     this.txtTienTraLai.TabIndex = 100;
     this.txtTienTraLai.Text = "0";
     this.txtTienTraLai.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // lblTongtien
     //
     this.lblTongtien.AutoSize = true;
     this.lblTongtien.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTongtien.Location = new System.Drawing.Point(252, 277);
     this.lblTongtien.Name = "lblTongtien";
     this.lblTongtien.Size = new System.Drawing.Size(87, 19);
     this.lblTongtien.TabIndex = 100;
     this.lblTongtien.Text = "Tiền trả lại:";
     //
     // txtTongThanhToan
     //
     this.txtTongThanhToan.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.txtTongThanhToan.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtTongThanhToan.Font = new System.Drawing.Font("Microsoft Sans Serif", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtTongThanhToan.ForeColor = System.Drawing.Color.Red;
     this.txtTongThanhToan.Location = new System.Drawing.Point(352, 309);
     this.txtTongThanhToan.Name = "txtTongThanhToan";
     this.txtTongThanhToan.ReadOnly = true;
     this.txtTongThanhToan.Size = new System.Drawing.Size(662, 38);
     this.txtTongThanhToan.TabIndex = 100;
     this.txtTongThanhToan.Text = "0";
     this.txtTongThanhToan.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // lblPhivanchuyen_Phikhac
     //
     this.lblPhivanchuyen_Phikhac.AutoSize = true;
     this.lblPhivanchuyen_Phikhac.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblPhivanchuyen_Phikhac.Location = new System.Drawing.Point(217, 312);
     this.lblPhivanchuyen_Phikhac.Name = "lblPhivanchuyen_Phikhac";
     this.lblPhivanchuyen_Phikhac.Size = new System.Drawing.Size(122, 19);
     this.lblPhivanchuyen_Phikhac.TabIndex = 100;
     this.lblPhivanchuyen_Phikhac.Text = "Tổng thanh toán:";
     //
     // grbDataGridview
     //
     this.grbDataGridview.Controls.Add(this.dgvInsertOrder);
     this.grbDataGridview.Controls.Add(this.palThem);
     this.grbDataGridview.Dock = System.Windows.Forms.DockStyle.Top;
     this.grbDataGridview.Location = new System.Drawing.Point(0, 0);
     this.grbDataGridview.Name = "grbDataGridview";
     this.grbDataGridview.Size = new System.Drawing.Size(1034, 190);
     this.grbDataGridview.TabIndex = 0;
     this.grbDataGridview.TabStop = false;
     //
     // dgvInsertOrder
     //
     this.dgvInsertOrder.AllowUserToAddRows = false;
     this.dgvInsertOrder.AllowUserToDeleteRows = false;
     this.dgvInsertOrder.BackgroundColor = System.Drawing.Color.White;
     this.dgvInsertOrder.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgvInsertOrder.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dgvInsertOrder.Location = new System.Drawing.Point(3, 44);
     this.dgvInsertOrder.Name = "dgvInsertOrder";
     this.dgvInsertOrder.ReadOnly = true;
     this.dgvInsertOrder.Size = new System.Drawing.Size(1028, 143);
     this.dgvInsertOrder.TabIndex = 4;
     this.dgvInsertOrder.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvInsertOrder_CellClick);
     this.dgvInsertOrder.DoubleClick += new System.EventHandler(this.dgvInsertOrder_DoubleClick);
     this.dgvInsertOrder.KeyDown += new System.Windows.Forms.KeyEventHandler(this.dgvInsertOrder_KeyDown);
     this.dgvInsertOrder.KeyUp += new System.Windows.Forms.KeyEventHandler(this.dgvInsertOrder_KeyUp);
     //
     // palThem
     //
     this.palThem.Controls.Add(this.toolStrip_Insert);
     this.palThem.Dock = System.Windows.Forms.DockStyle.Top;
     this.palThem.Location = new System.Drawing.Point(3, 16);
     this.palThem.Name = "palThem";
     this.palThem.Size = new System.Drawing.Size(1028, 28);
     this.palThem.TabIndex = 3;
     //
     // toolStrip_Insert
     //
     this.toolStrip_Insert.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.toolStrip_Insert.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStrip_txtTracuu,
     this.toolStripLabel8,
     this.toolStrip_txtTenhang,
     this.toolStripLabel1,
     this.toolStrip_txtSoluong,
     this.toolStripLabel5,
     this.toolStrip_txtGiagoc,
     this.toolStripLabel2,
     this.toolStrip_txtChietkhauphantram,
     this.toolStripLabel3,
     this.toolStrip_txtGianhap,
     this.toolStripLabel4,
     this.toolStrip_txtThuegiatrigiatang,
     this.toolStripLabel6,
     this.toolStrip_Chietkhau,
     this.toolStripLabel7,
     this.toolStrip_txtNgayhethan,
     this.toolStrip_btnThem});
     this.toolStrip_Insert.Location = new System.Drawing.Point(0, 0);
     this.toolStrip_Insert.Name = "toolStrip_Insert";
     this.toolStrip_Insert.Size = new System.Drawing.Size(1028, 25);
     this.toolStrip_Insert.TabIndex = 3;
     this.toolStrip_Insert.Text = "toolStrip1";
     //
     // toolStrip_txtTracuu
     //
     this.toolStrip_txtTracuu.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.toolStrip_txtTracuu.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.toolStrip_txtTracuu.MaxLength = 50;
     this.toolStrip_txtTracuu.Name = "toolStrip_txtTracuu";
     this.toolStrip_txtTracuu.Size = new System.Drawing.Size(80, 25);
     this.toolStrip_txtTracuu.Tag = "1";
     this.toolStrip_txtTracuu.Text = "<F4 - Tra cứu>";
     this.toolStrip_txtTracuu.ToolTipText = "Mã hàng hóa(có thể nhập mã vạch)";
     this.toolStrip_txtTracuu.KeyDown += new System.Windows.Forms.KeyEventHandler(this.toolStrip_txtTracuu_KeyDown);
     this.toolStrip_txtTracuu.KeyUp += new System.Windows.Forms.KeyEventHandler(this.toolStrip_txtTracuu_KeyUp);
     this.toolStrip_txtTracuu.Click += new System.EventHandler(this.toolStrip_txtTracuu_Click);
     //
     // toolStripLabel8
     //
     this.toolStripLabel8.Name = "toolStripLabel8";
     this.toolStripLabel8.Size = new System.Drawing.Size(30, 22);
     this.toolStripLabel8.Text = "Tên:";
     //
     // toolStrip_txtTenhang
     //
     this.toolStrip_txtTenhang.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.toolStrip_txtTenhang.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.toolStrip_txtTenhang.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.toolStrip_txtTenhang.Name = "toolStrip_txtTenhang";
     this.toolStrip_txtTenhang.ReadOnly = true;
     this.toolStrip_txtTenhang.Size = new System.Drawing.Size(100, 25);
     this.toolStrip_txtTenhang.Tag = "10";
     this.toolStrip_txtTenhang.ToolTipText = "Tên hàng hóa muốn đặt";
     //
     // toolStripLabel1
     //
     this.toolStripLabel1.Name = "toolStripLabel1";
     this.toolStripLabel1.Size = new System.Drawing.Size(22, 22);
     this.toolStripLabel1.Text = "SL:";
     this.toolStripLabel1.ToolTipText = "Số lượng mua";
     //
     // toolStrip_txtSoluong
     //
     this.toolStrip_txtSoluong.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.toolStrip_txtSoluong.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.toolStrip_txtSoluong.MaxLength = 9;
     this.toolStrip_txtSoluong.Name = "toolStrip_txtSoluong";
     this.toolStrip_txtSoluong.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.toolStrip_txtSoluong.Size = new System.Drawing.Size(40, 25);
     this.toolStrip_txtSoluong.Tag = "2";
     this.toolStrip_txtSoluong.Text = "1";
     this.toolStrip_txtSoluong.ToolTipText = "Số lượng hàng hóa sẽ đặt";
     this.toolStrip_txtSoluong.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.toolStrip_txtSoluong_KeyPress);
     this.toolStrip_txtSoluong.KeyUp += new System.Windows.Forms.KeyEventHandler(this.toolStrip_txtSoluong_KeyUp);
     this.toolStrip_txtSoluong.Click += new System.EventHandler(this.toolStrip_txtSoluong_Click);
     this.toolStrip_txtSoluong.TextChanged += new System.EventHandler(this.toolStrip_txtSoluong_TextChanged_1);
     //
     // toolStripLabel5
     //
     this.toolStripLabel5.Name = "toolStripLabel5";
     this.toolStripLabel5.Size = new System.Drawing.Size(26, 22);
     this.toolStripLabel5.Text = "GG:";
     this.toolStripLabel5.ToolTipText = "Giá nhàcung cấp bán ra";
     //
     // toolStrip_txtGiagoc
     //
     this.toolStrip_txtGiagoc.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.toolStrip_txtGiagoc.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.toolStrip_txtGiagoc.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.toolStrip_txtGiagoc.Name = "toolStrip_txtGiagoc";
     this.toolStrip_txtGiagoc.ReadOnly = true;
     this.toolStrip_txtGiagoc.Size = new System.Drawing.Size(100, 25);
     this.toolStrip_txtGiagoc.Tag = "10";
     this.toolStrip_txtGiagoc.Text = "0";
     this.toolStrip_txtGiagoc.TextBoxTextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.toolStrip_txtGiagoc.ToolTipText = "Giá gốc từ nhà cung cấp";
     //
     // toolStripLabel2
     //
     this.toolStripLabel2.Name = "toolStripLabel2";
     this.toolStripLabel2.Size = new System.Drawing.Size(35, 22);
     this.toolStripLabel2.Text = "%CK:";
     this.toolStripLabel2.ToolTipText = "Phần trăm chiết khấu";
     //
     // toolStrip_txtChietkhauphantram
     //
     this.toolStrip_txtChietkhauphantram.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.toolStrip_txtChietkhauphantram.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.toolStrip_txtChietkhauphantram.MaxLength = 4;
     this.toolStrip_txtChietkhauphantram.Name = "toolStrip_txtChietkhauphantram";
     this.toolStrip_txtChietkhauphantram.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.toolStrip_txtChietkhauphantram.Size = new System.Drawing.Size(40, 25);
     this.toolStrip_txtChietkhauphantram.Tag = "3";
     this.toolStrip_txtChietkhauphantram.Text = "0";
     this.toolStrip_txtChietkhauphantram.ToolTipText = "Phần trăm chiết khấu của nhà cung cấp";
     this.toolStrip_txtChietkhauphantram.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.toolStrip_txtChietkhauphantram_KeyPress);
     this.toolStrip_txtChietkhauphantram.KeyUp += new System.Windows.Forms.KeyEventHandler(this.toolStrip_txtChietkhauphantram_KeyUp);
     this.toolStrip_txtChietkhauphantram.Click += new System.EventHandler(this.toolStrip_txtChietkhauphantram_Click);
     this.toolStrip_txtChietkhauphantram.TextChanged += new System.EventHandler(this.toolStrip_txtChietkhauphantram_TextChanged_1);
     //
     // toolStripLabel3
     //
     this.toolStripLabel3.Name = "toolStripLabel3";
     this.toolStripLabel3.Size = new System.Drawing.Size(24, 22);
     this.toolStripLabel3.Text = "TT:";
     //
     // toolStrip_txtGianhap
     //
     this.toolStrip_txtGianhap.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.toolStrip_txtGianhap.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.toolStrip_txtGianhap.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.toolStrip_txtGianhap.Name = "toolStrip_txtGianhap";
     this.toolStrip_txtGianhap.ReadOnly = true;
     this.toolStrip_txtGianhap.Size = new System.Drawing.Size(100, 25);
     this.toolStrip_txtGianhap.Tag = "10";
     this.toolStrip_txtGianhap.Text = "0";
     this.toolStrip_txtGianhap.TextBoxTextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.toolStrip_txtGianhap.ToolTipText = "Thành tiền đã chiết khấu";
     //
     // toolStripLabel4
     //
     this.toolStripLabel4.Name = "toolStripLabel4";
     this.toolStripLabel4.Size = new System.Drawing.Size(47, 22);
     this.toolStripLabel4.Text = "TGTGT:";
     this.toolStripLabel4.ToolTipText = "Thuế giá trị gia tăng";
     //
     // toolStrip_txtThuegiatrigiatang
     //
     this.toolStrip_txtThuegiatrigiatang.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.toolStrip_txtThuegiatrigiatang.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.toolStrip_txtThuegiatrigiatang.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.toolStrip_txtThuegiatrigiatang.Name = "toolStrip_txtThuegiatrigiatang";
     this.toolStrip_txtThuegiatrigiatang.ReadOnly = true;
     this.toolStrip_txtThuegiatrigiatang.Size = new System.Drawing.Size(50, 25);
     this.toolStrip_txtThuegiatrigiatang.Tag = "10";
     this.toolStrip_txtThuegiatrigiatang.Text = "0";
     this.toolStrip_txtThuegiatrigiatang.TextBoxTextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.toolStrip_txtThuegiatrigiatang.ToolTipText = "Thuế giá trị gia tăng từng mặt hàng";
     //
     // toolStripLabel6
     //
     this.toolStripLabel6.Name = "toolStripLabel6";
     this.toolStripLabel6.Size = new System.Drawing.Size(30, 22);
     this.toolStripLabel6.Text = "C/K:";
     this.toolStripLabel6.ToolTipText = "Chiết khấu theo phần trăm chiết khấu";
     //
     // toolStrip_Chietkhau
     //
     this.toolStrip_Chietkhau.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.toolStrip_Chietkhau.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.toolStrip_Chietkhau.Name = "toolStrip_Chietkhau";
     this.toolStrip_Chietkhau.ReadOnly = true;
     this.toolStrip_Chietkhau.Size = new System.Drawing.Size(80, 25);
     this.toolStrip_Chietkhau.Tag = "10";
     this.toolStrip_Chietkhau.Text = "0";
     this.toolStrip_Chietkhau.TextBoxTextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.toolStrip_Chietkhau.ToolTipText = "Số tiền nhà cung cấp chiết khấu";
     //
     // toolStripLabel7
     //
     this.toolStripLabel7.Name = "toolStripLabel7";
     this.toolStripLabel7.Size = new System.Drawing.Size(33, 22);
     this.toolStripLabel7.Text = "HSD:";
     //
     // toolStrip_txtNgayhethan
     //
     this.toolStrip_txtNgayhethan.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.toolStrip_txtNgayhethan.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.toolStrip_txtNgayhethan.MaxLength = 10;
     this.toolStrip_txtNgayhethan.Name = "toolStrip_txtNgayhethan";
     this.toolStrip_txtNgayhethan.Size = new System.Drawing.Size(70, 25);
     this.toolStrip_txtNgayhethan.Tag = "4";
     this.toolStrip_txtNgayhethan.TextBoxTextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.toolStrip_txtNgayhethan.ToolTipText = "Ngày hết hạn của hàng hóa";
     this.toolStrip_txtNgayhethan.KeyUp += new System.Windows.Forms.KeyEventHandler(this.toolStrip_txtNgayhethan_KeyUp);
     //
     // toolStrip_btnThem
     //
     this.toolStrip_btnThem.Image = ((System.Drawing.Image)(resources.GetObject("toolStrip_btnThem.Image")));
     this.toolStrip_btnThem.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStrip_btnThem.Name = "toolStrip_btnThem";
     this.toolStrip_btnThem.Size = new System.Drawing.Size(58, 22);
     this.toolStrip_btnThem.Tag = "5";
     this.toolStrip_btnThem.Text = "Thêm";
     this.toolStrip_btnThem.ToolTipText = "Thêm hàng hóa vào danh sách đơn hàng";
     this.toolStrip_btnThem.Click += new System.EventHandler(this.toolStrip_btnThem_Click);
     //
     // frmXuLyNhapKho
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 14F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1034, 613);
     this.ControlBox = false;
     this.Controls.Add(this.palXem);
     this.Controls.Add(this.palNhap);
     this.Controls.Add(this.statusStrip1);
     this.Font = new System.Drawing.Font("Times New Roman", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.KeyPreview = true;
     this.MaximizeBox = false;
     this.Name = "frmXuLyNhapKho";
     this.ShowIcon = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = " ";
     this.Load += new System.EventHandler(this.frmXuLyNhapKho_Load);
     this.KeyUp += new System.Windows.Forms.KeyEventHandler(this.frmXuLyNhapKho_KeyUp);
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     this.palNhap.ResumeLayout(false);
     this.palNhap.PerformLayout();
     this.palXem.ResumeLayout(false);
     this.palXem.PerformLayout();
     this.grbDataGridview.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dgvInsertOrder)).EndInit();
     this.palThem.ResumeLayout(false);
     this.palThem.PerformLayout();
     this.toolStrip_Insert.ResumeLayout(false);
     this.toolStrip_Insert.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Beispiel #9
0
 private void InitializeComponent()
 {
     this.toolStripContainer    = new System.Windows.Forms.ToolStripContainer();
     this.statusLabel           = new System.Windows.Forms.Label();
     this.outputLabel           = new System.Windows.Forms.Label();
     this.toolStrip1            = new System.Windows.Forms.ToolStrip();
     this.backButton            = new System.Windows.Forms.ToolStripButton();
     this.forwardButton         = new System.Windows.Forms.ToolStripButton();
     this.urlTextBox            = new System.Windows.Forms.ToolStripTextBox();
     this.goButton              = new System.Windows.Forms.ToolStripButton();
     this.menuStrip1            = new System.Windows.Forms.MenuStrip();
     this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripContainer.ContentPanel.SuspendLayout();
     this.toolStripContainer.TopToolStripPanel.SuspendLayout();
     this.toolStripContainer.SuspendLayout();
     this.toolStrip1.SuspendLayout();
     this.menuStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // toolStripContainer
     //
     //
     // toolStripContainer.ContentPanel
     //
     this.toolStripContainer.ContentPanel.Controls.Add(this.statusLabel);
     this.toolStripContainer.ContentPanel.Controls.Add(this.outputLabel);
     this.toolStripContainer.ContentPanel.Size  = new System.Drawing.Size(730, 441);
     this.toolStripContainer.ContentPanel.Load += new System.EventHandler(this.toolStripContainer_ContentPanel_Load);
     this.toolStripContainer.Dock = System.Windows.Forms.DockStyle.Fill;
     this.toolStripContainer.LeftToolStripPanelVisible = false;
     this.toolStripContainer.Location = new System.Drawing.Point(0, 24);
     this.toolStripContainer.Name     = "toolStripContainer";
     this.toolStripContainer.RightToolStripPanelVisible = false;
     this.toolStripContainer.Size     = new System.Drawing.Size(730, 466);
     this.toolStripContainer.TabIndex = 0;
     this.toolStripContainer.Text     = "toolStripContainer1";
     //
     // toolStripContainer.TopToolStripPanel
     //
     this.toolStripContainer.TopToolStripPanel.Controls.Add(this.toolStrip1);
     //
     // statusLabel
     //
     this.statusLabel.AutoSize = true;
     this.statusLabel.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.statusLabel.Location = new System.Drawing.Point(0, 415);
     this.statusLabel.Name     = "statusLabel";
     this.statusLabel.Size     = new System.Drawing.Size(0, 13);
     this.statusLabel.TabIndex = 1;
     //
     // outputLabel
     //
     this.outputLabel.AutoSize = true;
     this.outputLabel.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.outputLabel.Location = new System.Drawing.Point(0, 428);
     this.outputLabel.Name     = "outputLabel";
     this.outputLabel.Size     = new System.Drawing.Size(0, 13);
     this.outputLabel.TabIndex = 0;
     //
     // toolStrip1
     //
     this.toolStrip1.Dock      = System.Windows.Forms.DockStyle.None;
     this.toolStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.backButton,
         this.forwardButton,
         this.urlTextBox,
         this.goButton
     });
     this.toolStrip1.Location = new System.Drawing.Point(0, 0);
     this.toolStrip1.Name     = "toolStrip1";
     this.toolStrip1.Padding  = new System.Windows.Forms.Padding(0);
     this.toolStrip1.Size     = new System.Drawing.Size(730, 25);
     this.toolStrip1.Stretch  = true;
     this.toolStrip1.TabIndex = 0;
     this.toolStrip1.Layout  += new System.Windows.Forms.LayoutEventHandler(this.HandleToolStripLayout);
     //
     // backButton
     //
     this.backButton.Enabled = false;
     this.backButton.Image   = global::TestSecure.Properties.Resources.nav_left_green;
     this.backButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.backButton.Name   = "backButton";
     this.backButton.Size   = new System.Drawing.Size(52, 22);
     this.backButton.Text   = "Back";
     this.backButton.Click += new System.EventHandler(this.BackButtonClick);
     //
     // forwardButton
     //
     this.forwardButton.Enabled = false;
     this.forwardButton.Image   = global::TestSecure.Properties.Resources.nav_right_green;
     this.forwardButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.forwardButton.Name   = "forwardButton";
     this.forwardButton.Size   = new System.Drawing.Size(70, 22);
     this.forwardButton.Text   = "Forward";
     this.forwardButton.Click += new System.EventHandler(this.ForwardButtonClick);
     //
     // urlTextBox
     //
     this.urlTextBox.AutoSize = false;
     this.urlTextBox.Name     = "urlTextBox";
     this.urlTextBox.Size     = new System.Drawing.Size(500, 25);
     this.urlTextBox.KeyUp   += new System.Windows.Forms.KeyEventHandler(this.UrlTextBoxKeyUp);
     //
     // goButton
     //
     this.goButton.Image = global::TestSecure.Properties.Resources.nav_plain_green;
     this.goButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.goButton.Name   = "goButton";
     this.goButton.Size   = new System.Drawing.Size(42, 22);
     this.goButton.Text   = "Go";
     this.goButton.Click += new System.EventHandler(this.GoButtonClick);
     //
     // menuStrip1
     //
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.fileToolStripMenuItem
     });
     this.menuStrip1.Location = new System.Drawing.Point(0, 0);
     this.menuStrip1.Name     = "menuStrip1";
     this.menuStrip1.Size     = new System.Drawing.Size(730, 24);
     this.menuStrip1.TabIndex = 1;
     this.menuStrip1.Text     = "menuStrip1";
     //
     // fileToolStripMenuItem
     //
     this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.exitToolStripMenuItem
     });
     this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
     this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
     this.fileToolStripMenuItem.Text = "File";
     //
     // exitToolStripMenuItem
     //
     this.exitToolStripMenuItem.Name   = "exitToolStripMenuItem";
     this.exitToolStripMenuItem.Size   = new System.Drawing.Size(92, 22);
     this.exitToolStripMenuItem.Text   = "Exit";
     this.exitToolStripMenuItem.Click += new System.EventHandler(this.ExitMenuItemClick);
     //
     // Form1
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(730, 490);
     this.Controls.Add(this.toolStripContainer);
     this.Controls.Add(this.menuStrip1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.MainMenuStrip   = this.menuStrip1;
     this.Name            = "Form1";
     this.Text            = "BrowserForm";
     this.WindowState     = System.Windows.Forms.FormWindowState.Maximized;
     this.toolStripContainer.ContentPanel.ResumeLayout(false);
     this.toolStripContainer.ContentPanel.PerformLayout();
     this.toolStripContainer.TopToolStripPanel.ResumeLayout(false);
     this.toolStripContainer.TopToolStripPanel.PerformLayout();
     this.toolStripContainer.ResumeLayout(false);
     this.toolStripContainer.PerformLayout();
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Beispiel #10
0
 /// <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(ValidFrm));
     System.Windows.Forms.DataGridViewCellStyle     dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle     dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle     dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle     dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle     dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle     dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
     this.tab                         = new System.Windows.Forms.TabControl();
     this.dB                          = new Exam.DB();
     this.studTab                     = new System.Windows.Forms.TabPage();
     this.tableLayoutPanel4           = new System.Windows.Forms.TableLayoutPanel();
     this.toolStrip5                  = new System.Windows.Forms.ToolStrip();
     this.toolStripLabel2             = new System.Windows.Forms.ToolStripLabel();
     this.scoreBox                    = new System.Windows.Forms.ToolStripTextBox();
     this.toolStrip4                  = new System.Windows.Forms.ToolStrip();
     this.toolStripLabel5             = new System.Windows.Forms.ToolStripLabel();
     this.CorrectBox                  = new System.Windows.Forms.ToolStripTextBox();
     this.toolStrip3                  = new System.Windows.Forms.ToolStrip();
     this.resultlbl                   = new System.Windows.Forms.ToolStripLabel();
     this.verBox                      = new System.Windows.Forms.ToolStripTextBox();
     this.validator                   = new System.Windows.Forms.ToolStripButton();
     this.toolStrip2                  = new System.Windows.Forms.ToolStrip();
     this.carnelbl                    = new System.Windows.Forms.ToolStripLabel();
     this.carneBox                    = new System.Windows.Forms.ToolStripComboBox();
     this.picBox                      = new System.Windows.Forms.PictureBox();
     this.stuListDGV                  = new System.Windows.Forms.DataGridView();
     this.dataGridViewTextBoxColumn37 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn36 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn38 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn39 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn32 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.stuListBS                   = new System.Windows.Forms.BindingSource(this.components);
     this.studentDataGridView         = new System.Windows.Forms.DataGridView();
     this.QRCode                      = new System.Windows.Forms.DataGridViewImageColumn();
     this.StudentID                   = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn13 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn14 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn15 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Correct                     = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Error                       = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn20 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn17 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn40 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn9  = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.studentBS                   = new System.Windows.Forms.BindingSource(this.components);
     this.toolStrip1                  = new System.Windows.Forms.ToolStrip();
     this.namelbl                     = new System.Windows.Forms.ToolStripLabel();
     this.nameBox                     = new System.Windows.Forms.ToolStripTextBox();
     this.surnamelbl                  = new System.Windows.Forms.ToolStripLabel();
     this.surnameBox                  = new System.Windows.Forms.ToolStripTextBox();
     this.ucScan                      = new VTools.ucScanner();
     this.TLP                         = new System.Windows.Forms.TableLayoutPanel();
     this.toolStripSeparator5         = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripLabel1             = new System.Windows.Forms.ToolStripLabel();
     this.tab.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dB)).BeginInit();
     this.studTab.SuspendLayout();
     this.tableLayoutPanel4.SuspendLayout();
     this.toolStrip5.SuspendLayout();
     this.toolStrip4.SuspendLayout();
     this.toolStrip3.SuspendLayout();
     this.toolStrip2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.picBox)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.stuListDGV)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.stuListBS)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.studentDataGridView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.studentBS)).BeginInit();
     this.toolStrip1.SuspendLayout();
     this.TLP.SuspendLayout();
     this.SuspendLayout();
     //
     // tab
     //
     this.tab.Appearance = System.Windows.Forms.TabAppearance.FlatButtons;
     this.TLP.SetColumnSpan(this.tab, 2);
     this.tab.Controls.Add(this.studTab);
     this.tab.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.tab.Font          = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tab.Location      = new System.Drawing.Point(3, 89);
     this.tab.Margin        = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.tab.Multiline     = true;
     this.tab.Name          = "tab";
     this.tab.SelectedIndex = 0;
     this.tab.Size          = new System.Drawing.Size(1288, 647);
     this.tab.TabIndex      = 0;
     //
     // dB
     //
     this.dB.DataSetName             = "DB";
     this.dB.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // studTab
     //
     this.studTab.BackColor = System.Drawing.Color.Gray;
     this.studTab.Controls.Add(this.tableLayoutPanel4);
     this.studTab.Location = new System.Drawing.Point(4, 33);
     this.studTab.Margin   = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.studTab.Name     = "studTab";
     this.studTab.Padding  = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.studTab.Size     = new System.Drawing.Size(1280, 610);
     this.studTab.TabIndex = 3;
     this.studTab.Text     = "Estudiante";
     //
     // tableLayoutPanel4
     //
     this.tableLayoutPanel4.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(34)))), ((int)(((byte)(34)))), ((int)(((byte)(34)))));
     this.tableLayoutPanel4.ColumnCount = 2;
     this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 16.40502F));
     this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 83.59498F));
     this.tableLayoutPanel4.Controls.Add(this.toolStrip5, 0, 1);
     this.tableLayoutPanel4.Controls.Add(this.toolStrip4, 0, 2);
     this.tableLayoutPanel4.Controls.Add(this.toolStrip3, 1, 2);
     this.tableLayoutPanel4.Controls.Add(this.toolStrip2, 0, 0);
     this.tableLayoutPanel4.Controls.Add(this.picBox, 0, 3);
     this.tableLayoutPanel4.Controls.Add(this.stuListDGV, 0, 5);
     this.tableLayoutPanel4.Controls.Add(this.studentDataGridView, 1, 3);
     this.tableLayoutPanel4.Controls.Add(this.toolStrip1, 1, 0);
     this.tableLayoutPanel4.Controls.Add(this.ucScan, 1, 6);
     this.tableLayoutPanel4.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel4.Location = new System.Drawing.Point(3, 4);
     this.tableLayoutPanel4.Margin   = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.tableLayoutPanel4.Name     = "tableLayoutPanel4";
     this.tableLayoutPanel4.RowCount = 7;
     this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 9.302325F));
     this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 7.807309F));
     this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 8.970099F));
     this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 19.60133F));
     this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 8.803987F));
     this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 37.04319F));
     this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 8.305648F));
     this.tableLayoutPanel4.Size     = new System.Drawing.Size(1274, 602);
     this.tableLayoutPanel4.TabIndex = 0;
     //
     // toolStrip5
     //
     this.toolStrip5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.toolStrip5.Dock      = System.Windows.Forms.DockStyle.Fill;
     this.toolStrip5.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.toolStrip5.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toolStripLabel2,
         this.scoreBox
     });
     this.toolStrip5.Location = new System.Drawing.Point(0, 56);
     this.toolStrip5.Name     = "toolStrip5";
     this.toolStrip5.Size     = new System.Drawing.Size(208, 47);
     this.toolStrip5.TabIndex = 7;
     this.toolStrip5.Text     = "toolStrip5";
     //
     // toolStripLabel2
     //
     this.toolStripLabel2.Font      = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.toolStripLabel2.ForeColor = System.Drawing.Color.Cyan;
     this.toolStripLabel2.Name      = "toolStripLabel2";
     this.toolStripLabel2.Size      = new System.Drawing.Size(52, 44);
     this.toolStripLabel2.Text      = "NOTA";
     //
     // scoreBox
     //
     this.scoreBox.BackColor        = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(32)))), ((int)(((byte)(32)))));
     this.scoreBox.Font             = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.scoreBox.ForeColor        = System.Drawing.Color.LemonChiffon;
     this.scoreBox.Margin           = new System.Windows.Forms.Padding(47, 0, 1, 0);
     this.scoreBox.Name             = "scoreBox";
     this.scoreBox.ReadOnly         = true;
     this.scoreBox.Size             = new System.Drawing.Size(70, 47);
     this.scoreBox.TextBoxTextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // toolStrip4
     //
     this.toolStrip4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.toolStrip4.Dock      = System.Windows.Forms.DockStyle.Fill;
     this.toolStrip4.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.toolStrip4.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toolStripLabel5,
         this.CorrectBox
     });
     this.toolStrip4.Location = new System.Drawing.Point(0, 103);
     this.toolStrip4.Name     = "toolStrip4";
     this.toolStrip4.Size     = new System.Drawing.Size(208, 54);
     this.toolStrip4.TabIndex = 6;
     this.toolStrip4.Text     = "toolStrip4";
     //
     // toolStripLabel5
     //
     this.toolStripLabel5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.toolStripLabel5.Font      = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.toolStripLabel5.ForeColor = System.Drawing.Color.DarkOrange;
     this.toolStripLabel5.Name      = "toolStripLabel5";
     this.toolStripLabel5.Size      = new System.Drawing.Size(98, 51);
     this.toolStripLabel5.Text      = "CORRECTAS";
     //
     // CorrectBox
     //
     this.CorrectBox.BackColor        = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(32)))), ((int)(((byte)(32)))));
     this.CorrectBox.Font             = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.CorrectBox.ForeColor        = System.Drawing.Color.LemonChiffon;
     this.CorrectBox.Name             = "CorrectBox";
     this.CorrectBox.ReadOnly         = true;
     this.CorrectBox.Size             = new System.Drawing.Size(70, 54);
     this.CorrectBox.TextBoxTextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // toolStrip3
     //
     this.toolStrip3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.toolStrip3.Dock      = System.Windows.Forms.DockStyle.Fill;
     this.toolStrip3.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.toolStrip3.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.resultlbl,
         this.verBox,
         this.validator
     });
     this.toolStrip3.Location = new System.Drawing.Point(208, 103);
     this.toolStrip3.Name     = "toolStrip3";
     this.toolStrip3.Size     = new System.Drawing.Size(1066, 54);
     this.toolStrip3.TabIndex = 4;
     this.toolStrip3.Text     = "toolStrip3";
     //
     // resultlbl
     //
     this.resultlbl.Font      = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.resultlbl.ForeColor = System.Drawing.Color.DarkOrange;
     this.resultlbl.Name      = "resultlbl";
     this.resultlbl.Size      = new System.Drawing.Size(93, 51);
     this.resultlbl.Text      = "RESPUESTA";
     //
     // verBox
     //
     this.verBox.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(32)))), ((int)(((byte)(32)))));
     this.verBox.Font      = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.verBox.ForeColor = System.Drawing.Color.LemonChiffon;
     this.verBox.Name      = "verBox";
     this.verBox.Size      = new System.Drawing.Size(800, 54);
     //
     // validator
     //
     this.validator.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.validator.Font                  = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.validator.ForeColor             = System.Drawing.Color.Gold;
     this.validator.Image                 = ((System.Drawing.Image)(resources.GetObject("validator.Image")));
     this.validator.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.validator.Name                  = "validator";
     this.validator.Size                  = new System.Drawing.Size(79, 51);
     this.validator.Text                  = "VALIDAR";
     this.validator.Click                += new System.EventHandler(this.validator_Click);
     //
     // toolStrip2
     //
     this.toolStrip2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.toolStrip2.Dock      = System.Windows.Forms.DockStyle.Fill;
     this.toolStrip2.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.toolStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.carnelbl,
         this.carneBox
     });
     this.toolStrip2.Location = new System.Drawing.Point(0, 0);
     this.toolStrip2.Name     = "toolStrip2";
     this.toolStrip2.Size     = new System.Drawing.Size(208, 56);
     this.toolStrip2.TabIndex = 3;
     this.toolStrip2.Text     = "toolStrip2";
     //
     // carnelbl
     //
     this.carnelbl.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.carnelbl.Font      = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.carnelbl.ForeColor = System.Drawing.Color.GreenYellow;
     this.carnelbl.Name      = "carnelbl";
     this.carnelbl.Size      = new System.Drawing.Size(61, 53);
     this.carnelbl.Text      = "CARNÉ";
     //
     // carneBox
     //
     this.carneBox.AutoCompleteMode   = System.Windows.Forms.AutoCompleteMode.Suggest;
     this.carneBox.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.CustomSource;
     this.carneBox.BackColor          = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(32)))), ((int)(((byte)(32)))));
     this.carneBox.Font         = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.carneBox.ForeColor    = System.Drawing.Color.LemonChiffon;
     this.carneBox.Name         = "carneBox";
     this.carneBox.Size         = new System.Drawing.Size(130, 56);
     this.carneBox.TextChanged += new System.EventHandler(this.carneBox_TextChanged);
     //
     // picBox
     //
     this.picBox.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.picBox.Location = new System.Drawing.Point(3, 161);
     this.picBox.Margin   = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.picBox.Name     = "picBox";
     this.tableLayoutPanel4.SetRowSpan(this.picBox, 2);
     this.picBox.Size     = new System.Drawing.Size(202, 163);
     this.picBox.TabIndex = 2;
     this.picBox.TabStop  = false;
     //
     // stuListDGV
     //
     this.stuListDGV.AutoGenerateColumns           = false;
     this.stuListDGV.BackgroundColor               = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(32)))), ((int)(((byte)(32)))));
     dataGridViewCellStyle1.Alignment              = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle1.BackColor              = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     dataGridViewCellStyle1.Font                   = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle1.ForeColor              = System.Drawing.Color.LemonChiffon;
     dataGridViewCellStyle1.SelectionBackColor     = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor     = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle1.WrapMode               = System.Windows.Forms.DataGridViewTriState.True;
     this.stuListDGV.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
     this.stuListDGV.ColumnHeadersHeightSizeMode   = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.stuListDGV.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
         this.dataGridViewTextBoxColumn37,
         this.dataGridViewTextBoxColumn36,
         this.dataGridViewTextBoxColumn38,
         this.dataGridViewTextBoxColumn39,
         this.dataGridViewTextBoxColumn32
     });
     this.stuListDGV.DataSource = this.stuListBS;
     this.stuListDGV.Dock       = System.Windows.Forms.DockStyle.Fill;
     this.stuListDGV.EnableHeadersVisualStyles = false;
     this.stuListDGV.Location          = new System.Drawing.Point(3, 332);
     this.stuListDGV.Margin            = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.stuListDGV.Name              = "stuListDGV";
     this.stuListDGV.RowHeadersVisible = false;
     this.tableLayoutPanel4.SetRowSpan(this.stuListDGV, 2);
     this.stuListDGV.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.stuListDGV.Size          = new System.Drawing.Size(202, 266);
     this.stuListDGV.TabIndex      = 0;
     //
     // dataGridViewTextBoxColumn37
     //
     this.dataGridViewTextBoxColumn37.DataPropertyName = "StudentID";
     this.dataGridViewTextBoxColumn37.HeaderText       = "ID";
     this.dataGridViewTextBoxColumn37.Name             = "dataGridViewTextBoxColumn37";
     //
     // dataGridViewTextBoxColumn36
     //
     this.dataGridViewTextBoxColumn36.DataPropertyName = "Section";
     this.dataGridViewTextBoxColumn36.HeaderText       = "S";
     this.dataGridViewTextBoxColumn36.Name             = "dataGridViewTextBoxColumn36";
     //
     // dataGridViewTextBoxColumn38
     //
     this.dataGridViewTextBoxColumn38.DataPropertyName = "LastNames";
     this.dataGridViewTextBoxColumn38.HeaderText       = "Apellidos";
     this.dataGridViewTextBoxColumn38.Name             = "dataGridViewTextBoxColumn38";
     //
     // dataGridViewTextBoxColumn39
     //
     this.dataGridViewTextBoxColumn39.DataPropertyName = "FirstNames";
     this.dataGridViewTextBoxColumn39.HeaderText       = "Nombres";
     this.dataGridViewTextBoxColumn39.Name             = "dataGridViewTextBoxColumn39";
     //
     // dataGridViewTextBoxColumn32
     //
     this.dataGridViewTextBoxColumn32.DataPropertyName = "Class";
     this.dataGridViewTextBoxColumn32.HeaderText       = "Class";
     this.dataGridViewTextBoxColumn32.Name             = "dataGridViewTextBoxColumn32";
     this.dataGridViewTextBoxColumn32.Visible          = false;
     //
     // stuListBS
     //
     this.stuListBS.DataMember = "StuList";
     this.stuListBS.DataSource = this.dB;
     //
     // studentDataGridView
     //
     this.studentDataGridView.AllowUserToAddRows    = false;
     this.studentDataGridView.AllowUserToDeleteRows = false;
     this.studentDataGridView.AutoGenerateColumns   = false;
     this.studentDataGridView.BackgroundColor       = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     dataGridViewCellStyle2.Alignment          = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle2.BackColor          = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     dataGridViewCellStyle2.Font               = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle2.ForeColor          = System.Drawing.Color.LemonChiffon;
     dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle2.WrapMode           = System.Windows.Forms.DataGridViewTriState.True;
     this.studentDataGridView.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2;
     this.studentDataGridView.ColumnHeadersHeightSizeMode   = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.studentDataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
         this.QRCode,
         this.StudentID,
         this.dataGridViewTextBoxColumn13,
         this.dataGridViewTextBoxColumn14,
         this.dataGridViewTextBoxColumn15,
         this.Correct,
         this.Error,
         this.dataGridViewTextBoxColumn20,
         this.dataGridViewTextBoxColumn17,
         this.dataGridViewTextBoxColumn40,
         this.dataGridViewTextBoxColumn9
     });
     this.studentDataGridView.DataSource                = this.studentBS;
     dataGridViewCellStyle6.Alignment                   = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle6.BackColor                   = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle6.Font                        = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle6.ForeColor                   = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle6.SelectionBackColor          = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle6.SelectionForeColor          = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle6.WrapMode                    = System.Windows.Forms.DataGridViewTriState.False;
     this.studentDataGridView.DefaultCellStyle          = dataGridViewCellStyle6;
     this.studentDataGridView.Dock                      = System.Windows.Forms.DockStyle.Fill;
     this.studentDataGridView.EnableHeadersVisualStyles = false;
     this.studentDataGridView.Location                  = new System.Drawing.Point(211, 161);
     this.studentDataGridView.Margin                    = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.studentDataGridView.MultiSelect               = false;
     this.studentDataGridView.Name                      = "studentDataGridView";
     this.studentDataGridView.ReadOnly                  = true;
     this.tableLayoutPanel4.SetRowSpan(this.studentDataGridView, 3);
     this.studentDataGridView.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.studentDataGridView.Size          = new System.Drawing.Size(1060, 386);
     this.studentDataGridView.TabIndex      = 0;
     //
     // QRCode
     //
     this.QRCode.DataPropertyName = "QRCode";
     this.QRCode.HeaderText       = "QRCode";
     this.QRCode.Name             = "QRCode";
     this.QRCode.ReadOnly         = true;
     //
     // StudentID
     //
     this.StudentID.DataPropertyName  = "StudentID";
     dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.StudentID.DefaultCellStyle  = dataGridViewCellStyle3;
     this.StudentID.HeaderText        = "Carné";
     this.StudentID.Name     = "StudentID";
     this.StudentID.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn13
     //
     this.dataGridViewTextBoxColumn13.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn13.DataPropertyName = "Name";
     dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn13.DefaultCellStyle = dataGridViewCellStyle4;
     this.dataGridViewTextBoxColumn13.HeaderText       = "Nombres";
     this.dataGridViewTextBoxColumn13.Name             = "dataGridViewTextBoxColumn13";
     this.dataGridViewTextBoxColumn13.ReadOnly         = true;
     this.dataGridViewTextBoxColumn13.Width            = 103;
     //
     // dataGridViewTextBoxColumn14
     //
     this.dataGridViewTextBoxColumn14.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn14.DataPropertyName = "Surname";
     dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn14.DefaultCellStyle = dataGridViewCellStyle5;
     this.dataGridViewTextBoxColumn14.HeaderText       = "Apellidos";
     this.dataGridViewTextBoxColumn14.Name             = "dataGridViewTextBoxColumn14";
     this.dataGridViewTextBoxColumn14.ReadOnly         = true;
     this.dataGridViewTextBoxColumn14.Width            = 104;
     //
     // dataGridViewTextBoxColumn15
     //
     this.dataGridViewTextBoxColumn15.DataPropertyName = "Score";
     this.dataGridViewTextBoxColumn15.HeaderText       = "Nota";
     this.dataGridViewTextBoxColumn15.Name             = "dataGridViewTextBoxColumn15";
     this.dataGridViewTextBoxColumn15.ReadOnly         = true;
     //
     // Correct
     //
     this.Correct.DataPropertyName = "Correct";
     this.Correct.HeaderText       = "Correctas";
     this.Correct.Name             = "Correct";
     this.Correct.ReadOnly         = true;
     //
     // Error
     //
     this.Error.DataPropertyName = "Error";
     this.Error.HeaderText       = "Error en";
     this.Error.Name             = "Error";
     this.Error.ReadOnly         = true;
     //
     // dataGridViewTextBoxColumn20
     //
     this.dataGridViewTextBoxColumn20.DataPropertyName = "LProvided";
     this.dataGridViewTextBoxColumn20.HeaderText       = "Respuesta";
     this.dataGridViewTextBoxColumn20.Name             = "dataGridViewTextBoxColumn20";
     this.dataGridViewTextBoxColumn20.ReadOnly         = true;
     //
     // dataGridViewTextBoxColumn17
     //
     this.dataGridViewTextBoxColumn17.DataPropertyName = "Obs";
     this.dataGridViewTextBoxColumn17.HeaderText       = "Obs";
     this.dataGridViewTextBoxColumn17.Name             = "dataGridViewTextBoxColumn17";
     this.dataGridViewTextBoxColumn17.ReadOnly         = true;
     //
     // dataGridViewTextBoxColumn40
     //
     this.dataGridViewTextBoxColumn40.DataPropertyName = "GUID";
     this.dataGridViewTextBoxColumn40.HeaderText       = "GUID";
     this.dataGridViewTextBoxColumn40.Name             = "dataGridViewTextBoxColumn40";
     this.dataGridViewTextBoxColumn40.ReadOnly         = true;
     //
     // dataGridViewTextBoxColumn9
     //
     this.dataGridViewTextBoxColumn9.DataPropertyName = "EID";
     this.dataGridViewTextBoxColumn9.HeaderText       = "EID";
     this.dataGridViewTextBoxColumn9.Name             = "dataGridViewTextBoxColumn9";
     this.dataGridViewTextBoxColumn9.ReadOnly         = true;
     //
     // studentBS
     //
     this.studentBS.DataMember = "Student";
     this.studentBS.DataSource = this.dB;
     this.studentBS.Filter     = "";
     //
     // toolStrip1
     //
     this.toolStrip1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.toolStrip1.Dock      = System.Windows.Forms.DockStyle.Fill;
     this.toolStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.namelbl,
         this.nameBox,
         this.surnamelbl,
         this.surnameBox
     });
     this.toolStrip1.Location = new System.Drawing.Point(208, 0);
     this.toolStrip1.Name     = "toolStrip1";
     this.toolStrip1.Size     = new System.Drawing.Size(1066, 56);
     this.toolStrip1.TabIndex = 0;
     this.toolStrip1.Text     = "toolStrip1";
     //
     // namelbl
     //
     this.namelbl.Font      = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.namelbl.ForeColor = System.Drawing.Color.GreenYellow;
     this.namelbl.Name      = "namelbl";
     this.namelbl.Size      = new System.Drawing.Size(86, 53);
     this.namelbl.Text      = "NOMBRES";
     //
     // nameBox
     //
     this.nameBox.BackColor        = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(32)))), ((int)(((byte)(32)))));
     this.nameBox.Font             = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.nameBox.ForeColor        = System.Drawing.Color.LemonChiffon;
     this.nameBox.Name             = "nameBox";
     this.nameBox.ReadOnly         = true;
     this.nameBox.Size             = new System.Drawing.Size(400, 56);
     this.nameBox.TextBoxTextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // surnamelbl
     //
     this.surnamelbl.Font      = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.surnamelbl.ForeColor = System.Drawing.Color.GreenYellow;
     this.surnamelbl.Name      = "surnamelbl";
     this.surnamelbl.Size      = new System.Drawing.Size(91, 53);
     this.surnamelbl.Text      = "APELLIDOS";
     //
     // surnameBox
     //
     this.surnameBox.BackColor        = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(32)))), ((int)(((byte)(32)))));
     this.surnameBox.Font             = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.surnameBox.ForeColor        = System.Drawing.Color.LemonChiffon;
     this.surnameBox.Name             = "surnameBox";
     this.surnameBox.ReadOnly         = true;
     this.surnameBox.Size             = new System.Drawing.Size(400, 56);
     this.surnameBox.TextBoxTextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // ucScan
     //
     this.ucScan.BaudRate      = 9600;
     this.ucScan.ComPort       = "4";
     this.ucScan.DataBits      = 8;
     this.ucScan.DelayTimeFile = 500;
     this.ucScan.DelayTimeMsg  = 50;
     this.ucScan.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.ucScan.Location      = new System.Drawing.Point(212, 556);
     this.ucScan.Margin        = new System.Windows.Forms.Padding(4, 5, 4, 5);
     this.ucScan.MaxLength     = 8;
     this.ucScan.Name          = "ucScan";
     this.ucScan.Result        = "";
     this.ucScan.SendContent   = null;
     this.ucScan.Size          = new System.Drawing.Size(1058, 41);
     this.ucScan.Status        = "";
     this.ucScan.TabIndex      = 5;
     //
     // TLP
     //
     this.TLP.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.TLP.ColumnCount = 2;
     this.TLP.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 56.8779F));
     this.TLP.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 43.1221F));
     this.TLP.Controls.Add(this.tab, 0, 2);
     this.TLP.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.TLP.Location = new System.Drawing.Point(0, 0);
     this.TLP.Margin   = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.TLP.Name     = "TLP";
     this.TLP.RowCount = 3;
     this.TLP.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 6.739811F));
     this.TLP.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 38F));
     this.TLP.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 93.26019F));
     this.TLP.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.TLP.Size     = new System.Drawing.Size(1294, 740);
     this.TLP.TabIndex = 0;
     //
     // toolStripSeparator5
     //
     this.toolStripSeparator5.Name = "toolStripSeparator5";
     this.toolStripSeparator5.Size = new System.Drawing.Size(6, 39);
     //
     // toolStripLabel1
     //
     this.toolStripLabel1.Name = "toolStripLabel1";
     this.toolStripLabel1.Size = new System.Drawing.Size(86, 56);
     this.toolStripLabel1.Text = "toolStripLabel1";
     //
     // ValidFrm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor           = System.Drawing.Color.Gray;
     this.ClientSize          = new System.Drawing.Size(1294, 740);
     this.Controls.Add(this.TLP);
     this.Font   = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.Name   = "ValidFrm";
     this.Text   = "Generador de Exámenes del  Departamento de Física - Universidad Simón Bolívar    " +
                   "                                            Contacto: Fulvio Farina / fulviofari" +
                   "*****@*****.**";
     this.Load += new System.EventHandler(this.form_Load);
     this.tab.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dB)).EndInit();
     this.studTab.ResumeLayout(false);
     this.tableLayoutPanel4.ResumeLayout(false);
     this.tableLayoutPanel4.PerformLayout();
     this.toolStrip5.ResumeLayout(false);
     this.toolStrip5.PerformLayout();
     this.toolStrip4.ResumeLayout(false);
     this.toolStrip4.PerformLayout();
     this.toolStrip3.ResumeLayout(false);
     this.toolStrip3.PerformLayout();
     this.toolStrip2.ResumeLayout(false);
     this.toolStrip2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.picBox)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.stuListDGV)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.stuListBS)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.studentDataGridView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.studentBS)).EndInit();
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     this.TLP.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <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.Windows.Forms.Label productCodeLabel;
     System.Windows.Forms.Label nameLabel;
     System.Windows.Forms.Label versionLabel;
     System.Windows.Forms.Label releaseDateLabel1;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmProductIncidents));
     this.productsBindingNavigator = new System.Windows.Forms.BindingNavigator(this.components);
     this.productsBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.techSupportDataSet2C = new SportsPro.TechSupportDataSet2C();
     this.bindingNavigatorCountItem = new System.Windows.Forms.ToolStripLabel();
     this.bindingNavigatorMoveFirstItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMovePreviousItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorPositionItem = new System.Windows.Forms.ToolStripTextBox();
     this.bindingNavigatorSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorMoveNextItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMoveLastItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.productCodeTextBox = new System.Windows.Forms.TextBox();
     this.nameTextBox = new System.Windows.Forms.TextBox();
     this.versionTextBox = new System.Windows.Forms.TextBox();
     this.releaseDateTextBox = new System.Windows.Forms.TextBox();
     this.incidentsDataGridView = new System.Windows.Forms.DataGridView();
     this.incidentsBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.productsTableAdapter = new SportsPro.TechSupportDataSet2CTableAdapters.ProductsTableAdapter();
     this.tableAdapterManager = new SportsPro.TechSupportDataSet2CTableAdapters.TableAdapterManager();
     this.incidentsTableAdapter = new SportsPro.TechSupportDataSet2CTableAdapters.IncidentsTableAdapter();
     this.CustomerID = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.DateOpened = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.DateClosed = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Title = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.TechnicianName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.CustomerName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.DisplayCustomerInfo = new System.Windows.Forms.DataGridViewButtonColumn();
     productCodeLabel = new System.Windows.Forms.Label();
     nameLabel = new System.Windows.Forms.Label();
     versionLabel = new System.Windows.Forms.Label();
     releaseDateLabel1 = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.productsBindingNavigator)).BeginInit();
     this.productsBindingNavigator.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.productsBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.techSupportDataSet2C)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.incidentsDataGridView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.incidentsBindingSource)).BeginInit();
     this.SuspendLayout();
     //
     // productCodeLabel
     //
     productCodeLabel.AutoSize = true;
     productCodeLabel.Location = new System.Drawing.Point(9, 35);
     productCodeLabel.Name = "productCodeLabel";
     productCodeLabel.Size = new System.Drawing.Size(75, 13);
     productCodeLabel.TabIndex = 1;
     productCodeLabel.Text = "Product Code:";
     //
     // nameLabel
     //
     nameLabel.AutoSize = true;
     nameLabel.Location = new System.Drawing.Point(9, 61);
     nameLabel.Name = "nameLabel";
     nameLabel.Size = new System.Drawing.Size(38, 13);
     nameLabel.TabIndex = 3;
     nameLabel.Text = "Name:";
     //
     // versionLabel
     //
     versionLabel.AutoSize = true;
     versionLabel.Location = new System.Drawing.Point(9, 87);
     versionLabel.Name = "versionLabel";
     versionLabel.Size = new System.Drawing.Size(45, 13);
     versionLabel.TabIndex = 5;
     versionLabel.Text = "Version:";
     //
     // releaseDateLabel1
     //
     releaseDateLabel1.AutoSize = true;
     releaseDateLabel1.Location = new System.Drawing.Point(9, 113);
     releaseDateLabel1.Name = "releaseDateLabel1";
     releaseDateLabel1.Size = new System.Drawing.Size(75, 13);
     releaseDateLabel1.TabIndex = 9;
     releaseDateLabel1.Text = "Release Date:";
     //
     // productsBindingNavigator
     //
     this.productsBindingNavigator.AddNewItem = null;
     this.productsBindingNavigator.BindingSource = this.productsBindingSource;
     this.productsBindingNavigator.CountItem = this.bindingNavigatorCountItem;
     this.productsBindingNavigator.DeleteItem = null;
     this.productsBindingNavigator.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.bindingNavigatorMoveFirstItem,
     this.bindingNavigatorMovePreviousItem,
     this.bindingNavigatorSeparator,
     this.bindingNavigatorPositionItem,
     this.bindingNavigatorCountItem,
     this.bindingNavigatorSeparator1,
     this.bindingNavigatorMoveNextItem,
     this.bindingNavigatorMoveLastItem,
     this.bindingNavigatorSeparator2});
     this.productsBindingNavigator.Location = new System.Drawing.Point(0, 0);
     this.productsBindingNavigator.MoveFirstItem = this.bindingNavigatorMoveFirstItem;
     this.productsBindingNavigator.MoveLastItem = this.bindingNavigatorMoveLastItem;
     this.productsBindingNavigator.MoveNextItem = this.bindingNavigatorMoveNextItem;
     this.productsBindingNavigator.MovePreviousItem = this.bindingNavigatorMovePreviousItem;
     this.productsBindingNavigator.Name = "productsBindingNavigator";
     this.productsBindingNavigator.PositionItem = this.bindingNavigatorPositionItem;
     this.productsBindingNavigator.Size = new System.Drawing.Size(592, 25);
     this.productsBindingNavigator.TabIndex = 0;
     this.productsBindingNavigator.Text = "bindingNavigator1";
     //
     // productsBindingSource
     //
     this.productsBindingSource.DataMember = "Products";
     this.productsBindingSource.DataSource = this.techSupportDataSet2C;
     //
     // techSupportDataSet2C
     //
     this.techSupportDataSet2C.DataSetName = "TechSupportDataSet2C";
     this.techSupportDataSet2C.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // bindingNavigatorCountItem
     //
     this.bindingNavigatorCountItem.Name = "bindingNavigatorCountItem";
     this.bindingNavigatorCountItem.Size = new System.Drawing.Size(36, 22);
     this.bindingNavigatorCountItem.Text = "of {0}";
     this.bindingNavigatorCountItem.ToolTipText = "Total number of items";
     //
     // bindingNavigatorMoveFirstItem
     //
     this.bindingNavigatorMoveFirstItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveFirstItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveFirstItem.Image")));
     this.bindingNavigatorMoveFirstItem.Name = "bindingNavigatorMoveFirstItem";
     this.bindingNavigatorMoveFirstItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveFirstItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveFirstItem.Text = "Move first";
     //
     // bindingNavigatorMovePreviousItem
     //
     this.bindingNavigatorMovePreviousItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMovePreviousItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMovePreviousItem.Image")));
     this.bindingNavigatorMovePreviousItem.Name = "bindingNavigatorMovePreviousItem";
     this.bindingNavigatorMovePreviousItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMovePreviousItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMovePreviousItem.Text = "Move previous";
     //
     // bindingNavigatorSeparator
     //
     this.bindingNavigatorSeparator.Name = "bindingNavigatorSeparator";
     this.bindingNavigatorSeparator.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorPositionItem
     //
     this.bindingNavigatorPositionItem.AccessibleName = "Position";
     this.bindingNavigatorPositionItem.AutoSize = false;
     this.bindingNavigatorPositionItem.Name = "bindingNavigatorPositionItem";
     this.bindingNavigatorPositionItem.Size = new System.Drawing.Size(50, 21);
     this.bindingNavigatorPositionItem.Text = "0";
     this.bindingNavigatorPositionItem.ToolTipText = "Current position";
     //
     // bindingNavigatorSeparator1
     //
     this.bindingNavigatorSeparator1.Name = "bindingNavigatorSeparator1";
     this.bindingNavigatorSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorMoveNextItem
     //
     this.bindingNavigatorMoveNextItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveNextItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveNextItem.Image")));
     this.bindingNavigatorMoveNextItem.Name = "bindingNavigatorMoveNextItem";
     this.bindingNavigatorMoveNextItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveNextItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveNextItem.Text = "Move next";
     //
     // bindingNavigatorMoveLastItem
     //
     this.bindingNavigatorMoveLastItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveLastItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveLastItem.Image")));
     this.bindingNavigatorMoveLastItem.Name = "bindingNavigatorMoveLastItem";
     this.bindingNavigatorMoveLastItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveLastItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveLastItem.Text = "Move last";
     //
     // bindingNavigatorSeparator2
     //
     this.bindingNavigatorSeparator2.Name = "bindingNavigatorSeparator2";
     this.bindingNavigatorSeparator2.Size = new System.Drawing.Size(6, 25);
     //
     // productCodeTextBox
     //
     this.productCodeTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.productsBindingSource, "ProductCode", true));
     this.productCodeTextBox.Location = new System.Drawing.Point(90, 32);
     this.productCodeTextBox.Name = "productCodeTextBox";
     this.productCodeTextBox.ReadOnly = true;
     this.productCodeTextBox.Size = new System.Drawing.Size(100, 20);
     this.productCodeTextBox.TabIndex = 2;
     //
     // nameTextBox
     //
     this.nameTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.productsBindingSource, "Name", true));
     this.nameTextBox.Location = new System.Drawing.Point(90, 58);
     this.nameTextBox.Name = "nameTextBox";
     this.nameTextBox.ReadOnly = true;
     this.nameTextBox.Size = new System.Drawing.Size(200, 20);
     this.nameTextBox.TabIndex = 4;
     //
     // versionTextBox
     //
     this.versionTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.productsBindingSource, "Version", true));
     this.versionTextBox.Location = new System.Drawing.Point(90, 84);
     this.versionTextBox.Name = "versionTextBox";
     this.versionTextBox.ReadOnly = true;
     this.versionTextBox.Size = new System.Drawing.Size(100, 20);
     this.versionTextBox.TabIndex = 6;
     //
     // releaseDateTextBox
     //
     this.releaseDateTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.productsBindingSource, "ReleaseDate", true, System.Windows.Forms.DataSourceUpdateMode.OnValidation, null, "d"));
     this.releaseDateTextBox.Location = new System.Drawing.Point(90, 110);
     this.releaseDateTextBox.Name = "releaseDateTextBox";
     this.releaseDateTextBox.ReadOnly = true;
     this.releaseDateTextBox.Size = new System.Drawing.Size(100, 20);
     this.releaseDateTextBox.TabIndex = 10;
     //
     // incidentsDataGridView
     //
     this.incidentsDataGridView.AllowUserToAddRows = false;
     this.incidentsDataGridView.AllowUserToDeleteRows = false;
     this.incidentsDataGridView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.incidentsDataGridView.AutoGenerateColumns = false;
     this.incidentsDataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.incidentsDataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.CustomerID,
     this.DateOpened,
     this.DateClosed,
     this.Title,
     this.TechnicianName,
     this.CustomerName,
     this.DisplayCustomerInfo});
     this.incidentsDataGridView.DataSource = this.incidentsBindingSource;
     this.incidentsDataGridView.Location = new System.Drawing.Point(12, 144);
     this.incidentsDataGridView.Name = "incidentsDataGridView";
     this.incidentsDataGridView.ReadOnly = true;
     this.incidentsDataGridView.Size = new System.Drawing.Size(568, 137);
     this.incidentsDataGridView.TabIndex = 10;
     this.incidentsDataGridView.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.incidentsDataGridView_CellContentClick);
     //
     // incidentsBindingSource
     //
     this.incidentsBindingSource.DataMember = "FK_Incidents_Products";
     this.incidentsBindingSource.DataSource = this.productsBindingSource;
     //
     // productsTableAdapter
     //
     this.productsTableAdapter.ClearBeforeFill = true;
     //
     // tableAdapterManager
     //
     this.tableAdapterManager.BackupDataSetBeforeUpdate = false;
     this.tableAdapterManager.ProductsTableAdapter = this.productsTableAdapter;
     this.tableAdapterManager.UpdateOrder = SportsPro.TechSupportDataSet2CTableAdapters.TableAdapterManager.UpdateOrderOption.InsertUpdateDelete;
     //
     // incidentsTableAdapter
     //
     this.incidentsTableAdapter.ClearBeforeFill = true;
     //
     // CustomerID
     //
     this.CustomerID.DataPropertyName = "CustomerID";
     this.CustomerID.HeaderText = "CustomerID";
     this.CustomerID.Name = "CustomerID";
     this.CustomerID.ReadOnly = true;
     this.CustomerID.Visible = false;
     //
     // DateOpened
     //
     this.DateOpened.DataPropertyName = "DateOpened";
     this.DateOpened.HeaderText = "Date Opened";
     this.DateOpened.Name = "DateOpened";
     this.DateOpened.ReadOnly = true;
     //
     // DateClosed
     //
     this.DateClosed.DataPropertyName = "DateClosed";
     this.DateClosed.HeaderText = "Date Closed";
     this.DateClosed.Name = "DateClosed";
     this.DateClosed.ReadOnly = true;
     //
     // Title
     //
     this.Title.DataPropertyName = "Title";
     this.Title.HeaderText = "Title";
     this.Title.Name = "Title";
     this.Title.ReadOnly = true;
     //
     // TechnicianName
     //
     this.TechnicianName.DataPropertyName = "TechnicianName";
     this.TechnicianName.HeaderText = "Technician Name";
     this.TechnicianName.Name = "TechnicianName";
     this.TechnicianName.ReadOnly = true;
     this.TechnicianName.Width = 120;
     //
     // CustomerName
     //
     this.CustomerName.DataPropertyName = "CustomerName";
     this.CustomerName.HeaderText = "Customer Name";
     this.CustomerName.Name = "CustomerName";
     this.CustomerName.ReadOnly = true;
     this.CustomerName.Width = 120;
     //
     // DisplayCustomerInfo
     //
     this.DisplayCustomerInfo.HeaderText = "";
     this.DisplayCustomerInfo.Name = "DisplayCustomerInfo";
     this.DisplayCustomerInfo.ReadOnly = true;
     this.DisplayCustomerInfo.Text = "Display Customer Info";
     this.DisplayCustomerInfo.UseColumnTextForButtonValue = true;
     this.DisplayCustomerInfo.Width = 120;
     //
     // frmProductIncidents
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(592, 293);
     this.Controls.Add(this.incidentsDataGridView);
     this.Controls.Add(releaseDateLabel1);
     this.Controls.Add(this.releaseDateTextBox);
     this.Controls.Add(productCodeLabel);
     this.Controls.Add(this.productCodeTextBox);
     this.Controls.Add(nameLabel);
     this.Controls.Add(this.nameTextBox);
     this.Controls.Add(versionLabel);
     this.Controls.Add(this.versionTextBox);
     this.Controls.Add(this.productsBindingNavigator);
     this.Name = "frmProductIncidents";
     this.Text = "Incidents by Product";
     this.Load += new System.EventHandler(this.frmProductIncidents_Load);
     ((System.ComponentModel.ISupportInitialize)(this.productsBindingNavigator)).EndInit();
     this.productsBindingNavigator.ResumeLayout(false);
     this.productsBindingNavigator.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.productsBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.techSupportDataSet2C)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.incidentsDataGridView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.incidentsBindingSource)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Beispiel #12
0
 /// <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(MapViewer));
     DevExpress.XtraCharts.XYDiagram xyDiagram1 = new DevExpress.XtraCharts.XYDiagram();
     DevExpress.XtraCharts.Series series1 = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SeriesPoint seriesPoint1 = new DevExpress.XtraCharts.SeriesPoint(0);
     DevExpress.XtraCharts.LineSeriesView lineSeriesView1 = new DevExpress.XtraCharts.LineSeriesView();
     DevExpress.XtraCharts.PolygonGradientFillOptions polygonGradientFillOptions1 = new DevExpress.XtraCharts.PolygonGradientFillOptions();
     DevExpress.XtraCharts.PointSeriesLabel pointSeriesLabel1 = new DevExpress.XtraCharts.PointSeriesLabel();
     DevExpress.XtraCharts.PointOptions pointOptions1 = new DevExpress.XtraCharts.PointOptions();
     DevExpress.XtraCharts.LineSeriesView lineSeriesView2 = new DevExpress.XtraCharts.LineSeriesView();
     DevExpress.XtraCharts.PointSeriesLabel pointSeriesLabel2 = new DevExpress.XtraCharts.PointSeriesLabel();
     DevExpress.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1 = new DevExpress.Utils.ToolTipTitleItem();
     this.simpleButton3 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.lblZaxis = new DevExpress.XtraEditors.LabelControl();
     this.labelControl13 = new DevExpress.XtraEditors.LabelControl();
     this.lblYaxis = new DevExpress.XtraEditors.LabelControl();
     this.lblXaxis = new DevExpress.XtraEditors.LabelControl();
     this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
     this.lblCategory = new DevExpress.XtraEditors.LabelControl();
     this.lblDescription = new DevExpress.XtraEditors.LabelControl();
     this.lblName = new DevExpress.XtraEditors.LabelControl();
     this.lblLengthValues = new DevExpress.XtraEditors.LabelControl();
     this.lblLengthBytes = new DevExpress.XtraEditors.LabelControl();
     this.lblSRAMAddress = new DevExpress.XtraEditors.LabelControl();
     this.lblFlashAddress = new DevExpress.XtraEditors.LabelControl();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.panel1 = new System.Windows.Forms.Panel();
     this.popupContainerControl1 = new DevExpress.XtraEditors.PopupContainerControl();
     this.gridControl1 = new DevExpress.XtraGrid.GridControl();
     this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.copySelectedCellsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.pasteSelectedCellsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.inOrgininalPositionToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.atCurrentlySelectedLocationToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.editXaxisSymbolToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.editYaxisSymbolToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.smoothSelectionToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
     this.simpleButton4 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton5 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton6 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton7 = new DevExpress.XtraEditors.SimpleButton();
     this.surfaceGraphViewer1 = new SurfaceGraphViewer();
     this.xtraTabPage2 = new DevExpress.XtraTab.XtraTabPage();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.trackBarControl1 = new DevExpress.XtraEditors.TrackBarControl();
     this.chartControl1 = new DevExpress.XtraCharts.ChartControl();
     this.timer1 = new System.Windows.Forms.Timer(this.components);
     this.timer2 = new System.Windows.Forms.Timer(this.components);
     this.toolTipController1 = new DevExpress.Utils.ToolTipController(this.components);
     this.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton2 = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripButton4 = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton5 = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton6 = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton7 = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripLabel3 = new System.Windows.Forms.ToolStripLabel();
     this.toolStripComboBox3 = new System.Windows.Forms.ToolStripComboBox();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
     this.toolStripComboBox2 = new System.Windows.Forms.ToolStripComboBox();
     this.toolStripLabel2 = new System.Windows.Forms.ToolStripLabel();
     this.toolStripComboBox1 = new System.Windows.Forms.ToolStripComboBox();
     this.toolStripTextBox1 = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripButton3 = new System.Windows.Forms.ToolStripButton();
     this.timer3 = new System.Windows.Forms.Timer(this.components);
     this.timer4 = new System.Windows.Forms.Timer(this.components);
     this.popupContainerEdit1 = new DevExpress.XtraEditors.PopupContainerEdit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.popupContainerControl1)).BeginInit();
     this.popupContainerControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     this.contextMenuStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.xtraTabPage1.SuspendLayout();
     this.xtraTabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.trackBarControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.trackBarControl1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(lineSeriesView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(lineSeriesView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel2)).BeginInit();
     this.toolStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.popupContainerEdit1.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // simpleButton3
     //
     this.simpleButton3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.simpleButton3.Enabled = false;
     this.simpleButton3.Location = new System.Drawing.Point(14, 628);
     this.simpleButton3.Name = "simpleButton3";
     this.simpleButton3.Size = new System.Drawing.Size(92, 23);
     this.simpleButton3.TabIndex = 9;
     this.simpleButton3.Text = "Undo changes";
     this.simpleButton3.Click += new System.EventHandler(this.simpleButton3_Click);
     //
     // simpleButton2
     //
     this.simpleButton2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButton2.Enabled = false;
     this.simpleButton2.Location = new System.Drawing.Point(715, 628);
     this.simpleButton2.Name = "simpleButton2";
     this.simpleButton2.Size = new System.Drawing.Size(75, 23);
     this.simpleButton2.TabIndex = 8;
     this.simpleButton2.Text = "Save";
     this.simpleButton2.Click += new System.EventHandler(this.simpleButton2_Click);
     //
     // simpleButton1
     //
     this.simpleButton1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButton1.Location = new System.Drawing.Point(796, 628);
     this.simpleButton1.Name = "simpleButton1";
     this.simpleButton1.Size = new System.Drawing.Size(75, 23);
     this.simpleButton1.TabIndex = 7;
     this.simpleButton1.Text = "Close";
     this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click);
     //
     // groupControl2
     //
     this.toolTipController1.SetAllowHtmlText(this.groupControl2, DevExpress.Utils.DefaultBoolean.False);
     this.groupControl2.Controls.Add(this.lblZaxis);
     this.groupControl2.Controls.Add(this.labelControl13);
     this.groupControl2.Controls.Add(this.lblYaxis);
     this.groupControl2.Controls.Add(this.lblXaxis);
     this.groupControl2.Controls.Add(this.labelControl10);
     this.groupControl2.Controls.Add(this.labelControl11);
     this.groupControl2.Controls.Add(this.lblCategory);
     this.groupControl2.Controls.Add(this.lblDescription);
     this.groupControl2.Controls.Add(this.lblName);
     this.groupControl2.Controls.Add(this.lblLengthValues);
     this.groupControl2.Controls.Add(this.lblLengthBytes);
     this.groupControl2.Controls.Add(this.lblSRAMAddress);
     this.groupControl2.Controls.Add(this.lblFlashAddress);
     this.groupControl2.Controls.Add(this.labelControl7);
     this.groupControl2.Controls.Add(this.labelControl6);
     this.groupControl2.Controls.Add(this.labelControl5);
     this.groupControl2.Controls.Add(this.labelControl4);
     this.groupControl2.Controls.Add(this.labelControl3);
     this.groupControl2.Controls.Add(this.labelControl2);
     this.groupControl2.Controls.Add(this.labelControl1);
     this.groupControl2.Location = new System.Drawing.Point(3, 3);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(870, 90);
     this.toolTipController1.SetSuperTip(this.groupControl2, null);
     this.groupControl2.TabIndex = 6;
     this.groupControl2.Text = "Symbol details";
     this.groupControl2.Paint += new System.Windows.Forms.PaintEventHandler(this.groupControl2_Paint);
     //
     // lblZaxis
     //
     this.lblZaxis.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.lblZaxis.Appearance.Options.UseForeColor = true;
     this.lblZaxis.Location = new System.Drawing.Point(488, 30);
     this.lblZaxis.Name = "lblZaxis";
     this.lblZaxis.Size = new System.Drawing.Size(12, 13);
     this.lblZaxis.TabIndex = 19;
     this.lblZaxis.Text = "...";
     //
     // labelControl13
     //
     this.labelControl13.Location = new System.Drawing.Point(430, 30);
     this.labelControl13.Name = "labelControl13";
     this.labelControl13.Size = new System.Drawing.Size(29, 13);
     this.labelControl13.TabIndex = 18;
     this.labelControl13.Text = "Z-axis";
     //
     // lblYaxis
     //
     this.lblYaxis.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.lblYaxis.Appearance.Options.UseForeColor = true;
     this.lblYaxis.Location = new System.Drawing.Point(350, 62);
     this.lblYaxis.Name = "lblYaxis";
     this.lblYaxis.Size = new System.Drawing.Size(12, 13);
     this.lblYaxis.TabIndex = 17;
     this.lblYaxis.Text = "...";
     //
     // lblXaxis
     //
     this.lblXaxis.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.lblXaxis.Appearance.Options.UseForeColor = true;
     this.lblXaxis.Location = new System.Drawing.Point(350, 30);
     this.lblXaxis.Name = "lblXaxis";
     this.lblXaxis.Size = new System.Drawing.Size(12, 13);
     this.lblXaxis.TabIndex = 16;
     this.lblXaxis.Text = "...";
     //
     // labelControl10
     //
     this.labelControl10.Location = new System.Drawing.Point(305, 62);
     this.labelControl10.Name = "labelControl10";
     this.labelControl10.Size = new System.Drawing.Size(29, 13);
     this.labelControl10.TabIndex = 15;
     this.labelControl10.Text = "Y-axis";
     //
     // labelControl11
     //
     this.labelControl11.Location = new System.Drawing.Point(305, 30);
     this.labelControl11.Name = "labelControl11";
     this.labelControl11.Size = new System.Drawing.Size(29, 13);
     this.labelControl11.TabIndex = 14;
     this.labelControl11.Text = "X-axis";
     //
     // lblCategory
     //
     this.lblCategory.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.lblCategory.Appearance.Options.UseForeColor = true;
     this.lblCategory.Location = new System.Drawing.Point(488, 62);
     this.lblCategory.Name = "lblCategory";
     this.lblCategory.Size = new System.Drawing.Size(12, 13);
     this.lblCategory.TabIndex = 13;
     this.lblCategory.Text = "...";
     //
     // lblDescription
     //
     this.lblDescription.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.lblDescription.Appearance.Options.UseForeColor = true;
     this.lblDescription.Location = new System.Drawing.Point(671, 62);
     this.lblDescription.Name = "lblDescription";
     this.lblDescription.Size = new System.Drawing.Size(12, 13);
     this.lblDescription.TabIndex = 12;
     this.lblDescription.Text = "...";
     //
     // lblName
     //
     this.lblName.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.lblName.Appearance.Options.UseForeColor = true;
     this.lblName.Location = new System.Drawing.Point(671, 30);
     this.lblName.Name = "lblName";
     this.lblName.Size = new System.Drawing.Size(12, 13);
     this.lblName.TabIndex = 11;
     this.lblName.Text = "...";
     //
     // lblLengthValues
     //
     this.lblLengthValues.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.lblLengthValues.Appearance.Options.UseForeColor = true;
     this.lblLengthValues.Location = new System.Drawing.Point(251, 62);
     this.lblLengthValues.Name = "lblLengthValues";
     this.lblLengthValues.Size = new System.Drawing.Size(36, 13);
     this.lblLengthValues.TabIndex = 10;
     this.lblLengthValues.Text = "0x0000";
     //
     // lblLengthBytes
     //
     this.lblLengthBytes.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.lblLengthBytes.Appearance.Options.UseForeColor = true;
     this.lblLengthBytes.Location = new System.Drawing.Point(251, 30);
     this.lblLengthBytes.Name = "lblLengthBytes";
     this.lblLengthBytes.Size = new System.Drawing.Size(36, 13);
     this.lblLengthBytes.TabIndex = 9;
     this.lblLengthBytes.Text = "0x0000";
     //
     // lblSRAMAddress
     //
     this.lblSRAMAddress.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.lblSRAMAddress.Appearance.Options.UseForeColor = true;
     this.lblSRAMAddress.Location = new System.Drawing.Point(100, 62);
     this.lblSRAMAddress.Name = "lblSRAMAddress";
     this.lblSRAMAddress.Size = new System.Drawing.Size(36, 13);
     this.lblSRAMAddress.TabIndex = 8;
     this.lblSRAMAddress.Text = "0x0000";
     //
     // lblFlashAddress
     //
     this.lblFlashAddress.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.lblFlashAddress.Appearance.Options.UseForeColor = true;
     this.lblFlashAddress.Location = new System.Drawing.Point(100, 30);
     this.lblFlashAddress.Name = "lblFlashAddress";
     this.lblFlashAddress.Size = new System.Drawing.Size(48, 13);
     this.lblFlashAddress.TabIndex = 7;
     this.lblFlashAddress.Text = "0x000000";
     //
     // labelControl7
     //
     this.labelControl7.Location = new System.Drawing.Point(430, 62);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(45, 13);
     this.labelControl7.TabIndex = 6;
     this.labelControl7.Text = "Category";
     //
     // labelControl6
     //
     this.labelControl6.Location = new System.Drawing.Point(598, 62);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(53, 13);
     this.labelControl6.TabIndex = 5;
     this.labelControl6.Text = "Description";
     //
     // labelControl5
     //
     this.labelControl5.Location = new System.Drawing.Point(598, 30);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(27, 13);
     this.labelControl5.TabIndex = 4;
     this.labelControl5.Text = "Name";
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(164, 62);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(75, 13);
     this.labelControl4.TabIndex = 3;
     this.labelControl4.Text = "Length (values)";
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(164, 30);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(71, 13);
     this.labelControl3.TabIndex = 2;
     this.labelControl3.Text = "Length (bytes)";
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(18, 62);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(69, 13);
     this.labelControl2.TabIndex = 1;
     this.labelControl2.Text = "SRAM address";
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(18, 30);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(66, 13);
     this.labelControl1.TabIndex = 0;
     this.labelControl1.Text = "Flash address";
     //
     // groupControl1
     //
     this.toolTipController1.SetAllowHtmlText(this.groupControl1, DevExpress.Utils.DefaultBoolean.False);
     this.groupControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl1.Controls.Add(this.splitContainer1);
     this.groupControl1.Location = new System.Drawing.Point(3, 28);
     this.groupControl1.LookAndFeel.SkinName = "Black";
     this.groupControl1.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(870, 594);
     this.toolTipController1.SetSuperTip(this.groupControl1, null);
     this.groupControl1.TabIndex = 5;
     this.groupControl1.Text = "Symbol data";
     this.groupControl1.DoubleClick += new System.EventHandler(this.groupControl1_DoubleClick);
     this.groupControl1.Paint += new System.Windows.Forms.PaintEventHandler(this.groupControl1_Paint);
     //
     // splitContainer1
     //
     this.toolTipController1.SetAllowHtmlText(this.splitContainer1, DevExpress.Utils.DefaultBoolean.False);
     this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.Location = new System.Drawing.Point(2, 20);
     this.splitContainer1.Name = "splitContainer1";
     this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer1.Panel1
     //
     this.toolTipController1.SetAllowHtmlText(this.splitContainer1.Panel1, DevExpress.Utils.DefaultBoolean.False);
     this.splitContainer1.Panel1.Controls.Add(this.panel1);
     this.toolTipController1.SetSuperTip(this.splitContainer1.Panel1, null);
     //
     // splitContainer1.Panel2
     //
     this.toolTipController1.SetAllowHtmlText(this.splitContainer1.Panel2, DevExpress.Utils.DefaultBoolean.False);
     this.splitContainer1.Panel2.Controls.Add(this.xtraTabControl1);
     this.toolTipController1.SetSuperTip(this.splitContainer1.Panel2, null);
     this.splitContainer1.Size = new System.Drawing.Size(866, 572);
     this.splitContainer1.SplitterDistance = 284;
     this.toolTipController1.SetSuperTip(this.splitContainer1, null);
     this.splitContainer1.TabIndex = 1;
     this.splitContainer1.MouseLeave += new System.EventHandler(this.splitContainer1_MouseLeave);
     this.splitContainer1.SplitterMoved += new System.Windows.Forms.SplitterEventHandler(this.splitContainer1_SplitterMoved);
     this.splitContainer1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.splitContainer1_MouseDown);
     this.splitContainer1.MouseUp += new System.Windows.Forms.MouseEventHandler(this.splitContainer1_MouseUp);
     //
     // panel1
     //
     this.toolTipController1.SetAllowHtmlText(this.panel1, DevExpress.Utils.DefaultBoolean.False);
     this.panel1.Controls.Add(this.popupContainerControl1);
     this.panel1.Controls.Add(this.gridControl1);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(866, 284);
     this.toolTipController1.SetSuperTip(this.panel1, null);
     this.panel1.TabIndex = 2;
     //
     // popupContainerControl1
     //
     this.toolTipController1.SetAllowHtmlText(this.popupContainerControl1, DevExpress.Utils.DefaultBoolean.False);
     this.popupContainerControl1.Controls.Add(this.groupControl2);
     this.popupContainerControl1.Location = new System.Drawing.Point(3, 72);
     this.popupContainerControl1.Name = "popupContainerControl1";
     this.popupContainerControl1.Size = new System.Drawing.Size(878, 97);
     this.toolTipController1.SetSuperTip(this.popupContainerControl1, null);
     this.popupContainerControl1.TabIndex = 1;
     //
     // gridControl1
     //
     this.gridControl1.ContextMenuStrip = this.contextMenuStrip1;
     this.gridControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControl1.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.gridControl1.Location = new System.Drawing.Point(0, 0);
     this.gridControl1.LookAndFeel.SkinName = "Black";
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.Name = "gridControl1";
     this.gridControl1.Size = new System.Drawing.Size(866, 284);
     this.gridControl1.TabIndex = 0;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView1});
     //
     // contextMenuStrip1
     //
     this.toolTipController1.SetAllowHtmlText(this.contextMenuStrip1, DevExpress.Utils.DefaultBoolean.False);
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.copySelectedCellsToolStripMenuItem,
     this.pasteSelectedCellsToolStripMenuItem,
     this.editXaxisSymbolToolStripMenuItem,
     this.editYaxisSymbolToolStripMenuItem,
     this.smoothSelectionToolStripMenuItem});
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(179, 114);
     this.toolTipController1.SetSuperTip(this.contextMenuStrip1, null);
     this.contextMenuStrip1.Opening += new System.ComponentModel.CancelEventHandler(this.contextMenuStrip1_Opening);
     //
     // copySelectedCellsToolStripMenuItem
     //
     this.copySelectedCellsToolStripMenuItem.Name = "copySelectedCellsToolStripMenuItem";
     this.copySelectedCellsToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
     this.copySelectedCellsToolStripMenuItem.Text = "Copy selected cells";
     this.copySelectedCellsToolStripMenuItem.Click += new System.EventHandler(this.copySelectedCellsToolStripMenuItem_Click);
     //
     // pasteSelectedCellsToolStripMenuItem
     //
     this.pasteSelectedCellsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.inOrgininalPositionToolStripMenuItem,
     this.atCurrentlySelectedLocationToolStripMenuItem});
     this.pasteSelectedCellsToolStripMenuItem.Name = "pasteSelectedCellsToolStripMenuItem";
     this.pasteSelectedCellsToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
     this.pasteSelectedCellsToolStripMenuItem.Text = "Paste selected cells";
     //
     // inOrgininalPositionToolStripMenuItem
     //
     this.inOrgininalPositionToolStripMenuItem.Name = "inOrgininalPositionToolStripMenuItem";
     this.inOrgininalPositionToolStripMenuItem.Size = new System.Drawing.Size(225, 22);
     this.inOrgininalPositionToolStripMenuItem.Text = "At original position";
     this.inOrgininalPositionToolStripMenuItem.Click += new System.EventHandler(this.inOrgininalPositionToolStripMenuItem_Click);
     //
     // atCurrentlySelectedLocationToolStripMenuItem
     //
     this.atCurrentlySelectedLocationToolStripMenuItem.Name = "atCurrentlySelectedLocationToolStripMenuItem";
     this.atCurrentlySelectedLocationToolStripMenuItem.Size = new System.Drawing.Size(225, 22);
     this.atCurrentlySelectedLocationToolStripMenuItem.Text = "At currently selected location";
     this.atCurrentlySelectedLocationToolStripMenuItem.Click += new System.EventHandler(this.atCurrentlySelectedLocationToolStripMenuItem_Click);
     //
     // editXaxisSymbolToolStripMenuItem
     //
     this.editXaxisSymbolToolStripMenuItem.Name = "editXaxisSymbolToolStripMenuItem";
     this.editXaxisSymbolToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
     this.editXaxisSymbolToolStripMenuItem.Text = "Edit x-axis";
     this.editXaxisSymbolToolStripMenuItem.Click += new System.EventHandler(this.editXaxisSymbolToolStripMenuItem_Click);
     //
     // editYaxisSymbolToolStripMenuItem
     //
     this.editYaxisSymbolToolStripMenuItem.Name = "editYaxisSymbolToolStripMenuItem";
     this.editYaxisSymbolToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
     this.editYaxisSymbolToolStripMenuItem.Text = "Edit y-axis";
     this.editYaxisSymbolToolStripMenuItem.Click += new System.EventHandler(this.editYaxisSymbolToolStripMenuItem_Click);
     //
     // smoothSelectionToolStripMenuItem
     //
     this.smoothSelectionToolStripMenuItem.Name = "smoothSelectionToolStripMenuItem";
     this.smoothSelectionToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
     this.smoothSelectionToolStripMenuItem.Text = "Smooth selection";
     this.smoothSelectionToolStripMenuItem.Click += new System.EventHandler(this.smoothSelectionToolStripMenuItem_Click);
     //
     // gridView1
     //
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsCustomization.AllowColumnMoving = false;
     this.gridView1.OptionsCustomization.AllowFilter = false;
     this.gridView1.OptionsCustomization.AllowGroup = false;
     this.gridView1.OptionsCustomization.AllowSort = false;
     this.gridView1.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridView1.OptionsSelection.EnableAppearanceFocusedRow = false;
     this.gridView1.OptionsSelection.MultiSelect = true;
     this.gridView1.OptionsSelection.MultiSelectMode = DevExpress.XtraGrid.Views.Grid.GridMultiSelectMode.CellSelect;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     this.gridView1.SelectionChanged += new DevExpress.Data.SelectionChangedEventHandler(this.gridView1_SelectionChanged_1);
     this.gridView1.ValidatingEditor += new DevExpress.XtraEditors.Controls.BaseContainerValidateEditorEventHandler(this.gridView1_ValidatingEditor);
     this.gridView1.CustomDrawRowIndicator += new DevExpress.XtraGrid.Views.Grid.RowIndicatorCustomDrawEventHandler(this.gridView1_CustomDrawRowIndicator);
     this.gridView1.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gridView1_CellValueChanged);
     this.gridView1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.gridView1_KeyDown);
     this.gridView1.CellValueChanging += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gridView1_CellValueChanging);
     this.gridView1.CustomDrawCell += new DevExpress.XtraGrid.Views.Base.RowCellCustomDrawEventHandler(this.gridView1_CustomDrawCell);
     this.gridView1.ShownEditor += new System.EventHandler(this.gridView1_ShownEditor);
     this.gridView1.RowUpdated += new DevExpress.XtraGrid.Views.Base.RowObjectEventHandler(this.gridView1_RowUpdated);
     this.gridView1.ShowingEditor += new System.ComponentModel.CancelEventHandler(this.gridView1_ShowingEditor);
     this.gridView1.HiddenEditor += new System.EventHandler(this.gridView1_HiddenEditor);
     this.gridView1.CustomDrawColumnHeader += new DevExpress.XtraGrid.Views.Grid.ColumnHeaderCustomDrawEventHandler(this.gridView1_CustomDrawColumnHeader);
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.xtraTabControl1.HeaderLocation = DevExpress.XtraTab.TabHeaderLocation.Left;
     this.xtraTabControl1.HeaderOrientation = DevExpress.XtraTab.TabOrientation.Vertical;
     this.xtraTabControl1.Location = new System.Drawing.Point(0, 0);
     this.xtraTabControl1.Name = "xtraTabControl1";
     this.xtraTabControl1.SelectedTabPage = this.xtraTabPage1;
     this.xtraTabControl1.Size = new System.Drawing.Size(866, 284);
     this.xtraTabControl1.TabIndex = 2;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPage1,
     this.xtraTabPage2});
     this.xtraTabControl1.SelectedPageChanged += new DevExpress.XtraTab.TabPageChangedEventHandler(this.xtraTabControl1_SelectedPageChanged);
     //
     // xtraTabPage1
     //
     this.xtraTabPage1.Controls.Add(this.simpleButton4);
     this.xtraTabPage1.Controls.Add(this.simpleButton5);
     this.xtraTabPage1.Controls.Add(this.simpleButton6);
     this.xtraTabPage1.Controls.Add(this.simpleButton7);
     this.xtraTabPage1.Controls.Add(this.surfaceGraphViewer1);
     this.xtraTabPage1.Name = "xtraTabPage1";
     this.xtraTabPage1.Size = new System.Drawing.Size(836, 275);
     this.xtraTabPage1.Text = "3D Graph";
     //
     // simpleButton4
     //
     this.simpleButton4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButton4.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton4.Image")));
     this.simpleButton4.Location = new System.Drawing.Point(814, 60);
     this.simpleButton4.Name = "simpleButton4";
     this.simpleButton4.Size = new System.Drawing.Size(23, 23);
     this.simpleButton4.TabIndex = 12;
     this.simpleButton4.ToolTip = "Turn graph counter clockwise";
     this.simpleButton4.Click += new System.EventHandler(this.simpleButton4_Click);
     //
     // simpleButton5
     //
     this.simpleButton5.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButton5.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton5.Image")));
     this.simpleButton5.Location = new System.Drawing.Point(814, 89);
     this.simpleButton5.Name = "simpleButton5";
     this.simpleButton5.Size = new System.Drawing.Size(23, 23);
     this.simpleButton5.TabIndex = 11;
     this.simpleButton5.ToolTip = "Turn graph clockwise";
     this.simpleButton5.Click += new System.EventHandler(this.simpleButton5_Click);
     //
     // simpleButton6
     //
     this.simpleButton6.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButton6.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton6.Image")));
     this.simpleButton6.Location = new System.Drawing.Point(814, 32);
     this.simpleButton6.Name = "simpleButton6";
     this.simpleButton6.Size = new System.Drawing.Size(23, 23);
     this.simpleButton6.TabIndex = 10;
     this.simpleButton6.ToolTip = "Zoom out";
     this.simpleButton6.Click += new System.EventHandler(this.simpleButton6_Click);
     //
     // simpleButton7
     //
     this.simpleButton7.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButton7.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton7.Image")));
     this.simpleButton7.Location = new System.Drawing.Point(814, 3);
     this.simpleButton7.Name = "simpleButton7";
     this.simpleButton7.Size = new System.Drawing.Size(23, 23);
     this.simpleButton7.TabIndex = 9;
     this.simpleButton7.ToolTip = "Zoom in";
     this.simpleButton7.Click += new System.EventHandler(this.simpleButton7_Click);
     //
     // surfaceGraphViewer1
     //
     this.toolTipController1.SetAllowHtmlText(this.surfaceGraphViewer1, DevExpress.Utils.DefaultBoolean.False);
     this.surfaceGraphViewer1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.surfaceGraphViewer1.IsRedWhite = false;
     this.surfaceGraphViewer1.IsSixteenbit = false;
     this.surfaceGraphViewer1.IsUpsideDown = false;
     this.surfaceGraphViewer1.Location = new System.Drawing.Point(0, 0);
     this.surfaceGraphViewer1.Map_compare_content = null;
     this.surfaceGraphViewer1.Map_content = null;
     this.surfaceGraphViewer1.Map_length = 0;
     this.surfaceGraphViewer1.Map_name = "";
     this.surfaceGraphViewer1.Map_original_content = null;
     this.surfaceGraphViewer1.Name = "surfaceGraphViewer1";
     this.surfaceGraphViewer1.NumberOfColumns = 8;
     this.surfaceGraphViewer1.Pan_x = 45;
     this.surfaceGraphViewer1.Pan_y = 77;
     this.surfaceGraphViewer1.Pov_d = 0.6;
     this.surfaceGraphViewer1.Pov_x = 30;
     this.surfaceGraphViewer1.Pov_y = 56;
     this.surfaceGraphViewer1.Pov_z = 21;
     this.surfaceGraphViewer1.Size = new System.Drawing.Size(808, 275);
     this.toolTipController1.SetSuperTip(this.surfaceGraphViewer1, null);
     this.surfaceGraphViewer1.TabIndex = 0;
     this.surfaceGraphViewer1.X_axis = null;
     this.surfaceGraphViewer1.X_axis_descr = "";
     this.surfaceGraphViewer1.Y_axis = null;
     this.surfaceGraphViewer1.Y_axis_descr = "";
     this.surfaceGraphViewer1.Z_axis = null;
     this.surfaceGraphViewer1.Z_axis_descr = "";
     //
     // xtraTabPage2
     //
     this.xtraTabPage2.Controls.Add(this.labelControl9);
     this.xtraTabPage2.Controls.Add(this.labelControl8);
     this.xtraTabPage2.Controls.Add(this.trackBarControl1);
     this.xtraTabPage2.Controls.Add(this.chartControl1);
     this.xtraTabPage2.Name = "xtraTabPage2";
     this.xtraTabPage2.Size = new System.Drawing.Size(836, 275);
     this.xtraTabPage2.Text = "2D Graph";
     //
     // labelControl9
     //
     this.labelControl9.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl9.AutoEllipsis = true;
     this.labelControl9.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl9.Location = new System.Drawing.Point(645, 201);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(188, 34);
     this.labelControl9.TabIndex = 4;
     this.labelControl9.Text = "MAP";
     //
     // labelControl8
     //
     this.labelControl8.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.labelControl8.AutoEllipsis = true;
     this.labelControl8.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl8.Location = new System.Drawing.Point(6, 201);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(104, 34);
     this.labelControl8.TabIndex = 3;
     this.labelControl8.Text = "MAP values";
     //
     // trackBarControl1
     //
     this.trackBarControl1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.trackBarControl1.EditValue = null;
     this.trackBarControl1.Location = new System.Drawing.Point(125, 201);
     this.trackBarControl1.Name = "trackBarControl1";
     this.trackBarControl1.Size = new System.Drawing.Size(500, 45);
     this.trackBarControl1.TabIndex = 2;
     this.trackBarControl1.ValueChanged += new System.EventHandler(this.trackBarControl1_ValueChanged);
     //
     // chartControl1
     //
     this.toolTipController1.SetAllowHtmlText(this.chartControl1, DevExpress.Utils.DefaultBoolean.False);
     this.chartControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.chartControl1.CacheToMemory = true;
     xyDiagram1.AxisX.VisibleInPanesSerializable = "-1";
     xyDiagram1.AxisX.Range.SideMarginsEnabled = false;
     xyDiagram1.AxisX.Range.ScrollingRange.SideMarginsEnabled = true;
     xyDiagram1.AxisY.VisibleInPanesSerializable = "-1";
     xyDiagram1.AxisY.Range.SideMarginsEnabled = false;
     xyDiagram1.AxisY.Range.ScrollingRange.SideMarginsEnabled = true;
     this.chartControl1.Diagram = xyDiagram1;
     this.chartControl1.Legend.Border.Visible = false;
     this.chartControl1.Location = new System.Drawing.Point(3, 3);
     this.chartControl1.Name = "chartControl1";
     this.chartControl1.RefreshDataOnRepaint = false;
     this.chartControl1.RuntimeHitTesting = false;
     this.chartControl1.RuntimeSeriesSelectionMode = DevExpress.XtraCharts.SeriesSelectionMode.Point;
     series1.Name = "Values";
     series1.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
     seriesPoint1});
     lineSeriesView1.LineMarkerOptions.Size = 8;
     lineSeriesView1.LineMarkerOptions.FillStyle.FillMode = DevExpress.XtraCharts.FillMode.Gradient;
     polygonGradientFillOptions1.Color2 = System.Drawing.Color.Gold;
     lineSeriesView1.LineMarkerOptions.FillStyle.Options = polygonGradientFillOptions1;
     lineSeriesView1.Color = System.Drawing.Color.DarkGoldenrod;
     series1.View = lineSeriesView1;
     series1.ArgumentDataMember = "X";
     series1.ArgumentScaleType = DevExpress.XtraCharts.ScaleType.Numerical;
     pointSeriesLabel1.Angle = 90;
     pointSeriesLabel1.TextColor = System.Drawing.Color.MidnightBlue;
     pointSeriesLabel1.Font = new System.Drawing.Font("Tahoma", 6F, System.Drawing.FontStyle.Bold);
     pointSeriesLabel1.Border.Visible = false;
     pointSeriesLabel1.Antialiasing = true;
     pointSeriesLabel1.LineVisible = true;
     series1.Label = pointSeriesLabel1;
     pointOptions1.PointView = DevExpress.XtraCharts.PointView.ArgumentAndValues;
     series1.PointOptions = pointOptions1;
     this.chartControl1.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
     series1};
     this.chartControl1.SeriesTemplate.View = lineSeriesView2;
     pointSeriesLabel2.LineVisible = true;
     this.chartControl1.SeriesTemplate.Label = pointSeriesLabel2;
     this.chartControl1.Size = new System.Drawing.Size(830, 185);
     this.toolTipController1.SetSuperTip(this.chartControl1, null);
     this.chartControl1.TabIndex = 1;
     this.chartControl1.Visible = false;
     this.chartControl1.CustomDrawSeriesPoint += new DevExpress.XtraCharts.CustomDrawSeriesPointEventHandler(this.chartControl1_CustomDrawSeriesPoint);
     this.chartControl1.MouseUp += new System.Windows.Forms.MouseEventHandler(this.chartControl1_MouseUp);
     this.chartControl1.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.chartControl1_MouseDoubleClick);
     this.chartControl1.MouseMove += new System.Windows.Forms.MouseEventHandler(this.chartControl1_MouseMove);
     this.chartControl1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.chartControl1_MouseDown);
     this.chartControl1.ObjectHotTracked += new DevExpress.XtraCharts.HotTrackEventHandler(this.chartControl1_ObjectHotTracked);
     this.chartControl1.CustomDrawSeries += new DevExpress.XtraCharts.CustomDrawSeriesEventHandler(this.chartControl1_CustomDrawSeries);
     this.chartControl1.Click += new System.EventHandler(this.chartControl1_Click);
     //
     // timer1
     //
     this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
     //
     // timer2
     //
     this.timer2.Tick += new System.EventHandler(this.timer2_Tick);
     //
     // toolTipController1
     //
     this.toolTipController1.Rounded = true;
     //
     // toolStrip1
     //
     this.toolTipController1.SetAllowHtmlText(this.toolStrip1, DevExpress.Utils.DefaultBoolean.False);
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripButton1,
     this.toolStripButton2,
     this.toolStripSeparator3,
     this.toolStripButton4,
     this.toolStripButton5,
     this.toolStripButton6,
     this.toolStripButton7,
     this.toolStripSeparator1,
     this.toolStripLabel3,
     this.toolStripComboBox3,
     this.toolStripSeparator2,
     this.toolStripLabel1,
     this.toolStripComboBox2,
     this.toolStripLabel2,
     this.toolStripComboBox1,
     this.toolStripTextBox1,
     this.toolStripButton3});
     this.toolStrip1.Location = new System.Drawing.Point(0, 0);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.Size = new System.Drawing.Size(876, 25);
     this.toolTipController1.SetSuperTip(this.toolStrip1, null);
     this.toolStrip1.TabIndex = 10;
     this.toolStrip1.Text = "toolStrip1";
     //
     // toolStripButton1
     //
     this.toolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton1.Image")));
     this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton1.Name = "toolStripButton1";
     this.toolStripButton1.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton1.Text = "Toggle graph section";
     this.toolStripButton1.Click += new System.EventHandler(this.toolStripButton1_Click);
     //
     // toolStripButton2
     //
     this.toolStripButton2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton2.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton2.Image")));
     this.toolStripButton2.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton2.Name = "toolStripButton2";
     this.toolStripButton2.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton2.Text = "Toggle hexview";
     this.toolStripButton2.Click += new System.EventHandler(this.toolStripButton2_Click);
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripButton4
     //
     this.toolStripButton4.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton4.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton4.Image")));
     this.toolStripButton4.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton4.Name = "toolStripButton4";
     this.toolStripButton4.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton4.Text = "Maximize graph";
     this.toolStripButton4.Click += new System.EventHandler(this.toolStripButton4_Click);
     //
     // toolStripButton5
     //
     this.toolStripButton5.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton5.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton5.Image")));
     this.toolStripButton5.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton5.Name = "toolStripButton5";
     this.toolStripButton5.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton5.Text = "Maximize table";
     this.toolStripButton5.Click += new System.EventHandler(this.toolStripButton5_Click);
     //
     // toolStripButton6
     //
     this.toolStripButton6.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton6.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton6.Image")));
     this.toolStripButton6.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton6.Name = "toolStripButton6";
     this.toolStripButton6.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton6.Text = "Maximize window";
     this.toolStripButton6.Click += new System.EventHandler(this.toolStripButton6_Click);
     //
     // toolStripButton7
     //
     this.toolStripButton7.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton7.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton7.Image")));
     this.toolStripButton7.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton7.Name = "toolStripButton7";
     this.toolStripButton7.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton7.Text = "Toggle graph/map";
     this.toolStripButton7.Click += new System.EventHandler(this.toolStripButton7_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripLabel3
     //
     this.toolStripLabel3.Name = "toolStripLabel3";
     this.toolStripLabel3.Size = new System.Drawing.Size(51, 22);
     this.toolStripLabel3.Text = "Viewtype";
     //
     // toolStripComboBox3
     //
     this.toolStripComboBox3.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest;
     this.toolStripComboBox3.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.toolStripComboBox3.Items.AddRange(new object[] {
     "Hex view ",
     "Decimal view ",
     "Easy view"});
     this.toolStripComboBox3.Name = "toolStripComboBox3";
     this.toolStripComboBox3.Size = new System.Drawing.Size(160, 25);
     this.toolStripComboBox3.SelectedIndexChanged += new System.EventHandler(this.toolStripComboBox3_SelectedIndexChanged);
     this.toolStripComboBox3.KeyDown += new System.Windows.Forms.KeyEventHandler(this.toolStripComboBox3_KeyDown);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripLabel1
     //
     this.toolStripLabel1.Name = "toolStripLabel1";
     this.toolStripLabel1.Size = new System.Drawing.Size(77, 22);
     this.toolStripLabel1.Text = "Axis lock mode";
     //
     // toolStripComboBox2
     //
     this.toolStripComboBox2.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest;
     this.toolStripComboBox2.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.toolStripComboBox2.Items.AddRange(new object[] {
     "Autoscale",
     "Lock to peak in maps",
     "Lock to map limit"});
     this.toolStripComboBox2.Name = "toolStripComboBox2";
     this.toolStripComboBox2.Size = new System.Drawing.Size(121, 25);
     this.toolStripComboBox2.SelectedIndexChanged += new System.EventHandler(this.toolStripComboBox2_SelectedIndexChanged);
     //
     // toolStripLabel2
     //
     this.toolStripLabel2.Name = "toolStripLabel2";
     this.toolStripLabel2.Size = new System.Drawing.Size(67, 22);
     this.toolStripLabel2.Text = "Mathematics";
     //
     // toolStripComboBox1
     //
     this.toolStripComboBox1.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest;
     this.toolStripComboBox1.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.toolStripComboBox1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.toolStripComboBox1.Items.AddRange(new object[] {
     "Addition",
     "Multiply",
     "Divide",
     "Fill"});
     this.toolStripComboBox1.Name = "toolStripComboBox1";
     this.toolStripComboBox1.Size = new System.Drawing.Size(121, 25);
     //
     // toolStripTextBox1
     //
     this.toolStripTextBox1.Name = "toolStripTextBox1";
     this.toolStripTextBox1.Size = new System.Drawing.Size(60, 25);
     this.toolStripTextBox1.Text = "2";
     this.toolStripTextBox1.TextBoxTextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // toolStripButton3
     //
     this.toolStripButton3.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton3.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton3.Image")));
     this.toolStripButton3.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton3.Name = "toolStripButton3";
     this.toolStripButton3.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton3.Text = "Execute";
     this.toolStripButton3.Click += new System.EventHandler(this.toolStripButton3_Click);
     //
     // timer3
     //
     this.timer3.Tick += new System.EventHandler(this.timer3_Tick);
     //
     // timer4
     //
     this.timer4.Enabled = true;
     this.timer4.Interval = 500;
     this.timer4.Tick += new System.EventHandler(this.timer4_Tick);
     //
     // popupContainerEdit1
     //
     this.popupContainerEdit1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.popupContainerEdit1.Location = new System.Drawing.Point(125, 631);
     this.popupContainerEdit1.Name = "popupContainerEdit1";
     this.popupContainerEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.popupContainerEdit1.Properties.PopupControl = this.popupContainerControl1;
     this.popupContainerEdit1.Size = new System.Drawing.Size(161, 20);
     toolTipTitleItem1.Text = "Click here for table details";
     superToolTip1.Items.Add(toolTipTitleItem1);
     superToolTip1.AllowHtmlText = DevExpress.Utils.DefaultBoolean.False;
     this.popupContainerEdit1.SuperTip = superToolTip1;
     this.popupContainerEdit1.TabIndex = 11;
     this.popupContainerEdit1.CustomDisplayText += new DevExpress.XtraEditors.Controls.CustomDisplayTextEventHandler(this.popupContainerEdit1_CustomDisplayText);
     //
     // MapViewer
     //
     this.toolTipController1.SetAllowHtmlText(this, DevExpress.Utils.DefaultBoolean.False);
     this.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Appearance.Options.UseFont = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.simpleButton1);
     this.Controls.Add(this.simpleButton2);
     this.Controls.Add(this.toolStrip1);
     this.Controls.Add(this.simpleButton3);
     this.Controls.Add(this.groupControl1);
     this.Controls.Add(this.popupContainerEdit1);
     this.LookAndFeel.SkinName = "Black";
     this.Name = "MapViewer";
     this.Size = new System.Drawing.Size(876, 664);
     this.toolTipController1.SetSuperTip(this, null);
     this.VisibleChanged += new System.EventHandler(this.MapViewer_VisibleChanged);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     this.groupControl2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     this.splitContainer1.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.popupContainerControl1)).EndInit();
     this.popupContainerControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     this.contextMenuStrip1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.xtraTabPage1.ResumeLayout(false);
     this.xtraTabPage2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.trackBarControl1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.trackBarControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(lineSeriesView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(lineSeriesView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).EndInit();
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.popupContainerEdit1.Properties)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Beispiel #13
0
 /// <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(Admin));
     this.bindingNavigator1 = new System.Windows.Forms.BindingNavigator(this.components);
     this.bindingNavigatorCountItem = new System.Windows.Forms.ToolStripLabel();
     this.bindingNavigatorMoveFirstItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMovePreviousItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorPositionItem = new System.Windows.Forms.ToolStripTextBox();
     this.打开OToolStripButton = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorMoveNextItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMoveLastItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripLabel2 = new System.Windows.Forms.ToolStripLabel();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
     this.toolStripSeparator = new System.Windows.Forms.ToolStripSeparator();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.label1 = new System.Windows.Forms.Label();
     this.comboBox1 = new System.Windows.Forms.ComboBox();
     this.textBox1 = new System.Windows.Forms.TextBox();
     this.button1 = new System.Windows.Forms.Button();
     this.button2 = new System.Windows.Forms.Button();
     this.button3 = new System.Windows.Forms.Button();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.comboBox2 = new System.Windows.Forms.ComboBox();
     ((System.ComponentModel.ISupportInitialize)(this.bindingNavigator1)).BeginInit();
     this.bindingNavigator1.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.groupBox3.SuspendLayout();
     this.SuspendLayout();
     //
     // bindingNavigator1
     //
     this.bindingNavigator1.AddNewItem = null;
     this.bindingNavigator1.CountItem = this.bindingNavigatorCountItem;
     this.bindingNavigator1.DeleteItem = null;
     this.bindingNavigator1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.bindingNavigator1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.bindingNavigatorMoveFirstItem,
     this.bindingNavigatorMovePreviousItem,
     this.bindingNavigatorSeparator,
     this.bindingNavigatorPositionItem,
     this.bindingNavigatorCountItem,
     this.打开OToolStripButton,
     this.bindingNavigatorSeparator1,
     this.bindingNavigatorMoveNextItem,
     this.bindingNavigatorMoveLastItem,
     this.bindingNavigatorSeparator2,
     this.toolStripLabel2,
     this.toolStripSeparator1,
     this.toolStripLabel1,
     this.toolStripSeparator});
     this.bindingNavigator1.Location = new System.Drawing.Point(0, 535);
     this.bindingNavigator1.MoveFirstItem = this.bindingNavigatorMoveFirstItem;
     this.bindingNavigator1.MoveLastItem = this.bindingNavigatorMoveLastItem;
     this.bindingNavigator1.MoveNextItem = this.bindingNavigatorMoveNextItem;
     this.bindingNavigator1.MovePreviousItem = this.bindingNavigatorMovePreviousItem;
     this.bindingNavigator1.Name = "bindingNavigator1";
     this.bindingNavigator1.PositionItem = this.bindingNavigatorPositionItem;
     this.bindingNavigator1.Size = new System.Drawing.Size(864, 26);
     this.bindingNavigator1.TabIndex = 3;
     this.bindingNavigator1.Text = "bindingNavigator1";
     //
     // bindingNavigatorCountItem
     //
     this.bindingNavigatorCountItem.Name = "bindingNavigatorCountItem";
     this.bindingNavigatorCountItem.Size = new System.Drawing.Size(38, 23);
     this.bindingNavigatorCountItem.Text = "/ {0}";
     this.bindingNavigatorCountItem.ToolTipText = "总页数";
     //
     // bindingNavigatorMoveFirstItem
     //
     this.bindingNavigatorMoveFirstItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveFirstItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveFirstItem.Image")));
     this.bindingNavigatorMoveFirstItem.Name = "bindingNavigatorMoveFirstItem";
     this.bindingNavigatorMoveFirstItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveFirstItem.Size = new System.Drawing.Size(23, 23);
     this.bindingNavigatorMoveFirstItem.Text = "移到页首";
     this.bindingNavigatorMoveFirstItem.Click += new System.EventHandler(this.bindingNavigatorMoveFirstItem_Click);
     //
     // bindingNavigatorMovePreviousItem
     //
     this.bindingNavigatorMovePreviousItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMovePreviousItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMovePreviousItem.Image")));
     this.bindingNavigatorMovePreviousItem.Name = "bindingNavigatorMovePreviousItem";
     this.bindingNavigatorMovePreviousItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMovePreviousItem.Size = new System.Drawing.Size(23, 23);
     this.bindingNavigatorMovePreviousItem.Text = "移到上一页";
     this.bindingNavigatorMovePreviousItem.Click += new System.EventHandler(this.bindingNavigatorMovePreviousItem_Click);
     //
     // bindingNavigatorSeparator
     //
     this.bindingNavigatorSeparator.Name = "bindingNavigatorSeparator";
     this.bindingNavigatorSeparator.Size = new System.Drawing.Size(6, 26);
     //
     // bindingNavigatorPositionItem
     //
     this.bindingNavigatorPositionItem.AccessibleName = "位置";
     this.bindingNavigatorPositionItem.AutoSize = false;
     this.bindingNavigatorPositionItem.Name = "bindingNavigatorPositionItem";
     this.bindingNavigatorPositionItem.Size = new System.Drawing.Size(50, 26);
     this.bindingNavigatorPositionItem.Text = "0";
     this.bindingNavigatorPositionItem.ToolTipText = "当前位置";
     //
     // 打开OToolStripButton
     //
     this.打开OToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.打开OToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("打开OToolStripButton.Image")));
     this.打开OToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.打开OToolStripButton.Name = "打开OToolStripButton";
     this.打开OToolStripButton.Size = new System.Drawing.Size(23, 23);
     this.打开OToolStripButton.Text = "跳转(&Q)";
     this.打开OToolStripButton.Click += new System.EventHandler(this.打开OToolStripButton_Click);
     //
     // bindingNavigatorSeparator1
     //
     this.bindingNavigatorSeparator1.Name = "bindingNavigatorSeparator1";
     this.bindingNavigatorSeparator1.Size = new System.Drawing.Size(6, 26);
     //
     // bindingNavigatorMoveNextItem
     //
     this.bindingNavigatorMoveNextItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveNextItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveNextItem.Image")));
     this.bindingNavigatorMoveNextItem.Name = "bindingNavigatorMoveNextItem";
     this.bindingNavigatorMoveNextItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveNextItem.Size = new System.Drawing.Size(23, 23);
     this.bindingNavigatorMoveNextItem.Text = "移到下一页";
     this.bindingNavigatorMoveNextItem.Click += new System.EventHandler(this.bindingNavigatorMoveNextItem_Click);
     //
     // bindingNavigatorMoveLastItem
     //
     this.bindingNavigatorMoveLastItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveLastItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveLastItem.Image")));
     this.bindingNavigatorMoveLastItem.Name = "bindingNavigatorMoveLastItem";
     this.bindingNavigatorMoveLastItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveLastItem.Size = new System.Drawing.Size(23, 23);
     this.bindingNavigatorMoveLastItem.Text = "移到页尾";
     this.bindingNavigatorMoveLastItem.Click += new System.EventHandler(this.bindingNavigatorMoveLastItem_Click);
     //
     // bindingNavigatorSeparator2
     //
     this.bindingNavigatorSeparator2.Name = "bindingNavigatorSeparator2";
     this.bindingNavigatorSeparator2.Size = new System.Drawing.Size(6, 26);
     //
     // toolStripLabel2
     //
     this.toolStripLabel2.Name = "toolStripLabel2";
     this.toolStripLabel2.Size = new System.Drawing.Size(0, 23);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 26);
     //
     // toolStripLabel1
     //
     this.toolStripLabel1.Name = "toolStripLabel1";
     this.toolStripLabel1.Size = new System.Drawing.Size(102, 23);
     this.toolStripLabel1.Text = "每页显示15条";
     //
     // toolStripSeparator
     //
     this.toolStripSeparator.Name = "toolStripSeparator";
     this.toolStripSeparator.Size = new System.Drawing.Size(6, 26);
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Controls.Add(this.comboBox1);
     this.groupBox1.Controls.Add(this.textBox1);
     this.groupBox1.Controls.Add(this.button1);
     this.groupBox1.Location = new System.Drawing.Point(13, 13);
     this.groupBox1.Margin = new System.Windows.Forms.Padding(4);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Padding = new System.Windows.Forms.Padding(4);
     this.groupBox1.Size = new System.Drawing.Size(389, 106);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "查询条件(为空则查找所有记录)";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(99, 24);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(75, 15);
     this.label1.TabIndex = 5;
     this.label1.Text = "时间范围:";
     //
     // comboBox1
     //
     this.comboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBox1.FormattingEnabled = true;
     this.comboBox1.Items.AddRange(new object[] {
     "全部",
     "3个月之内",
     "3月前1年内",
     "1年以前"});
     this.comboBox1.Location = new System.Drawing.Point(180, 21);
     this.comboBox1.Name = "comboBox1";
     this.comboBox1.Size = new System.Drawing.Size(109, 23);
     this.comboBox1.TabIndex = 4;
     this.comboBox1.SelectedIndexChanged += new System.EventHandler(this.comboBox1_SelectedIndexChanged);
     //
     // textBox1
     //
     this.textBox1.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.textBox1.Location = new System.Drawing.Point(102, 51);
     this.textBox1.Margin = new System.Windows.Forms.Padding(4);
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new System.Drawing.Size(187, 24);
     this.textBox1.TabIndex = 0;
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(297, 25);
     this.button1.Margin = new System.Windows.Forms.Padding(4);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(84, 60);
     this.button1.TabIndex = 3;
     this.button1.Text = "查找";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.Search_Click);
     //
     // button2
     //
     this.button2.Location = new System.Drawing.Point(20, 34);
     this.button2.Name = "button2";
     this.button2.Size = new System.Drawing.Size(76, 51);
     this.button2.TabIndex = 15;
     this.button2.Text = "删除";
     this.button2.UseVisualStyleBackColor = true;
     this.button2.Click += new System.EventHandler(this.Delete_Click);
     //
     // button3
     //
     this.button3.Location = new System.Drawing.Point(124, 34);
     this.button3.Name = "button3";
     this.button3.Size = new System.Drawing.Size(75, 51);
     this.button3.TabIndex = 16;
     this.button3.Text = "保存";
     this.button3.UseVisualStyleBackColor = true;
     this.button3.Click += new System.EventHandler(this.Update_Click);
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.button2);
     this.groupBox2.Controls.Add(this.button3);
     this.groupBox2.Location = new System.Drawing.Point(610, 13);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(216, 105);
     this.groupBox2.TabIndex = 17;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "操作";
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.comboBox2);
     this.groupBox3.Location = new System.Drawing.Point(439, 15);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Size = new System.Drawing.Size(150, 104);
     this.groupBox3.TabIndex = 18;
     this.groupBox3.TabStop = false;
     this.groupBox3.Text = "所属洗衣店";
     //
     // comboBox2
     //
     this.comboBox2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBox2.FormattingEnabled = true;
     this.comboBox2.Location = new System.Drawing.Point(6, 49);
     this.comboBox2.Name = "comboBox2";
     this.comboBox2.Size = new System.Drawing.Size(138, 23);
     this.comboBox2.TabIndex = 10;
     this.comboBox2.SelectedIndexChanged += new System.EventHandler(this.comboBox2_SelectedIndexChanged);
     //
     // Admin
     //
     this.AcceptButton = this.button1;
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(864, 561);
     this.Controls.Add(this.groupBox3);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.bindingNavigator1);
     this.Font = new System.Drawing.Font("宋体", 11F);
     this.Margin = new System.Windows.Forms.Padding(4);
     this.Name = "Admin";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "管理";
     this.Load += new System.EventHandler(this.Admin_Load);
     ((System.ComponentModel.ISupportInitialize)(this.bindingNavigator1)).EndInit();
     this.bindingNavigator1.ResumeLayout(false);
     this.bindingNavigator1.PerformLayout();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.groupBox2.ResumeLayout(false);
     this.groupBox3.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
     this.toolStrip1            = new System.Windows.Forms.ToolStrip();
     this.qqxxzButton           = new System.Windows.Forms.ToolStripSplitButton();
     this.其他ToolStripMenuItem   = new System.Windows.Forms.ToolStripMenuItem();
     this.qqzhxButton           = new System.Windows.Forms.ToolStripSplitButton();
     this.自动挂机ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.vkButton         = new System.Windows.Forms.ToolStripTextBox();
     this.textBox1         = new System.Windows.Forms.TextBox();
     this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
     this.toolStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // toolStrip1
     //
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.qqxxzButton,
         this.qqzhxButton,
         this.vkButton,
         this.toolStripButton1
     });
     this.toolStrip1.Location = new System.Drawing.Point(0, 0);
     this.toolStrip1.Name     = "toolStrip1";
     this.toolStrip1.Size     = new System.Drawing.Size(373, 25);
     this.toolStrip1.TabIndex = 0;
     this.toolStrip1.Text     = "toolStrip1";
     //
     // qqxxzButton
     //
     this.qqxxzButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.qqxxzButton.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.其他ToolStripMenuItem
     });
     this.qqxxzButton.Image = ((System.Drawing.Image)(resources.GetObject("qqxxzButton.Image")));
     this.qqxxzButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.qqxxzButton.Name         = "qqxxzButton";
     this.qqxxzButton.Size         = new System.Drawing.Size(32, 22);
     this.qqxxzButton.Text         = "toolStripSplitButton1";
     this.qqxxzButton.ButtonClick += new System.EventHandler(this.QqxxzButtonButtonClick);
     //
     // 其他ToolStripMenuItem
     //
     this.其他ToolStripMenuItem.Name         = "其他ToolStripMenuItem";
     this.其他ToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Q)));
     this.其他ToolStripMenuItem.Size         = new System.Drawing.Size(147, 22);
     this.其他ToolStripMenuItem.Text         = "其他";
     this.其他ToolStripMenuItem.Click       += new System.EventHandler(this.其他ToolStripMenuItemClick);
     //
     // qqzhxButton
     //
     this.qqzhxButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.qqzhxButton.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.自动挂机ToolStripMenuItem
     });
     this.qqzhxButton.Image = ((System.Drawing.Image)(resources.GetObject("qqzhxButton.Image")));
     this.qqzhxButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.qqzhxButton.Name         = "qqzhxButton";
     this.qqzhxButton.Size         = new System.Drawing.Size(48, 22);
     this.qqzhxButton.Text         = "幻想";
     this.qqzhxButton.ButtonClick += new System.EventHandler(this.QqzhxButtonButtonClick);
     //
     // 自动挂机ToolStripMenuItem
     //
     this.自动挂机ToolStripMenuItem.Name   = "自动挂机ToolStripMenuItem";
     this.自动挂机ToolStripMenuItem.Size   = new System.Drawing.Size(124, 22);
     this.自动挂机ToolStripMenuItem.Text   = "自动挂机";
     this.自动挂机ToolStripMenuItem.Click += new System.EventHandler(this.自动挂机ToolStripMenuItemClick);
     //
     // vkButton
     //
     this.vkButton.AcceptsTab = true;
     this.vkButton.Name       = "vkButton";
     this.vkButton.Size       = new System.Drawing.Size(100, 25);
     this.vkButton.KeyPress  += new System.Windows.Forms.KeyPressEventHandler(this.VkButtonKeyPress);
     //
     // textBox1
     //
     this.textBox1.Dock       = System.Windows.Forms.DockStyle.Fill;
     this.textBox1.Location   = new System.Drawing.Point(0, 25);
     this.textBox1.Multiline  = true;
     this.textBox1.Name       = "textBox1";
     this.textBox1.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.textBox1.Size       = new System.Drawing.Size(373, 133);
     this.textBox1.TabIndex   = 1;
     //
     // toolStripButton1
     //
     this.toolStripButton1.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton1.Image                 = ((System.Drawing.Image)(resources.GetObject("toolStripButton1.Image")));
     this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton1.Name   = "toolStripButton1";
     this.toolStripButton1.Size   = new System.Drawing.Size(23, 22);
     this.toolStripButton1.Text   = "toolStripButton1";
     this.toolStripButton1.Click += new System.EventHandler(this.ToolStripButton1Click);
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(373, 158);
     this.Controls.Add(this.textBox1);
     this.Controls.Add(this.toolStrip1);
     this.Name = "MainForm";
     this.Text = "Panda";
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
     this.bindingSourceEPStudents          = new System.Windows.Forms.BindingSource(this.components);
     this.bindingNavigator1                = new System.Windows.Forms.BindingNavigator(this.components);
     this.bindingNavigatorCountItem        = new System.Windows.Forms.ToolStripLabel();
     this.bindingNavigatorMoveFirstItem    = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMovePreviousItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator        = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorPositionItem     = new System.Windows.Forms.ToolStripTextBox();
     this.bindingNavigatorSeparator1       = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorMoveNextItem     = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMoveLastItem     = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator2       = new System.Windows.Forms.ToolStripSeparator();
     this.tabControl1   = new System.Windows.Forms.TabControl();
     this.tabPage1      = new System.Windows.Forms.TabPage();
     this.dataGridView1 = new System.Windows.Forms.DataGridView();
     this.iDNumberDataGridViewTextBoxColumn      = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.studentNameDataGridViewTextBoxColumn   = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.genderDataGridViewTextBoxColumn        = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.emailDataGridViewTextBoxColumn         = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.classRecordNoDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.gradeLevelDataGridViewTextBoxColumn    = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.roomDataGridViewTextBoxColumn          = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.pdfFilenameDataGridViewTextBoxColumn   = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.tabPage2           = new System.Windows.Forms.TabPage();
     this.btnSendOne         = new System.Windows.Forms.Button();
     this.textBox8           = new System.Windows.Forms.TextBox();
     this.label8             = new System.Windows.Forms.Label();
     this.textBox7           = new System.Windows.Forms.TextBox();
     this.label7             = new System.Windows.Forms.Label();
     this.textBox6           = new System.Windows.Forms.TextBox();
     this.label6             = new System.Windows.Forms.Label();
     this.textBox5           = new System.Windows.Forms.TextBox();
     this.label5             = new System.Windows.Forms.Label();
     this.textBox4           = new System.Windows.Forms.TextBox();
     this.label4             = new System.Windows.Forms.Label();
     this.textBox3           = new System.Windows.Forms.TextBox();
     this.label3             = new System.Windows.Forms.Label();
     this.textBox2           = new System.Windows.Forms.TextBox();
     this.label2             = new System.Windows.Forms.Label();
     this.textBox1           = new System.Windows.Forms.TextBox();
     this.label1             = new System.Windows.Forms.Label();
     this.btnLoadExcelData   = new System.Windows.Forms.Button();
     this.txtSearch          = new System.Windows.Forms.TextBox();
     this.btnSearch          = new System.Windows.Forms.Button();
     this.comboBoxRooms      = new System.Windows.Forms.ComboBox();
     this.btnSendAll         = new System.Windows.Forms.Button();
     this.statusStrip1       = new System.Windows.Forms.StatusStrip();
     this.sendingStatusStrip = new System.Windows.Forms.ToolStripStatusLabel();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSourceEPStudents)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingNavigator1)).BeginInit();
     this.bindingNavigator1.SuspendLayout();
     this.tabControl1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
     this.tabPage2.SuspendLayout();
     this.statusStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // bindingSourceEPStudents
     //
     this.bindingSourceEPStudents.DataSource = typeof(Student);
     //
     // bindingNavigator1
     //
     this.bindingNavigator1.AddNewItem    = null;
     this.bindingNavigator1.BindingSource = this.bindingSourceEPStudents;
     this.bindingNavigator1.CountItem     = this.bindingNavigatorCountItem;
     this.bindingNavigator1.DeleteItem    = null;
     this.bindingNavigator1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.bindingNavigatorMoveFirstItem,
         this.bindingNavigatorMovePreviousItem,
         this.bindingNavigatorSeparator,
         this.bindingNavigatorPositionItem,
         this.bindingNavigatorCountItem,
         this.bindingNavigatorSeparator1,
         this.bindingNavigatorMoveNextItem,
         this.bindingNavigatorMoveLastItem,
         this.bindingNavigatorSeparator2
     });
     this.bindingNavigator1.Location         = new System.Drawing.Point(0, 0);
     this.bindingNavigator1.MoveFirstItem    = this.bindingNavigatorMoveFirstItem;
     this.bindingNavigator1.MoveLastItem     = this.bindingNavigatorMoveLastItem;
     this.bindingNavigator1.MoveNextItem     = this.bindingNavigatorMoveNextItem;
     this.bindingNavigator1.MovePreviousItem = this.bindingNavigatorMovePreviousItem;
     this.bindingNavigator1.Name             = "bindingNavigator1";
     this.bindingNavigator1.PositionItem     = this.bindingNavigatorPositionItem;
     this.bindingNavigator1.Size             = new System.Drawing.Size(1012, 25);
     this.bindingNavigator1.TabIndex         = 0;
     this.bindingNavigator1.Text             = "bindingNavigator1";
     //
     // bindingNavigatorCountItem
     //
     this.bindingNavigatorCountItem.Name        = "bindingNavigatorCountItem";
     this.bindingNavigatorCountItem.Size        = new System.Drawing.Size(35, 22);
     this.bindingNavigatorCountItem.Text        = "of {0}";
     this.bindingNavigatorCountItem.ToolTipText = "Total number of items";
     //
     // bindingNavigatorMoveFirstItem
     //
     this.bindingNavigatorMoveFirstItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveFirstItem.Image        = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveFirstItem.Image")));
     this.bindingNavigatorMoveFirstItem.Name         = "bindingNavigatorMoveFirstItem";
     this.bindingNavigatorMoveFirstItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveFirstItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveFirstItem.Text = "Move first";
     //
     // bindingNavigatorMovePreviousItem
     //
     this.bindingNavigatorMovePreviousItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMovePreviousItem.Image        = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMovePreviousItem.Image")));
     this.bindingNavigatorMovePreviousItem.Name         = "bindingNavigatorMovePreviousItem";
     this.bindingNavigatorMovePreviousItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMovePreviousItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMovePreviousItem.Text = "Move previous";
     //
     // bindingNavigatorSeparator
     //
     this.bindingNavigatorSeparator.Name = "bindingNavigatorSeparator";
     this.bindingNavigatorSeparator.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorPositionItem
     //
     this.bindingNavigatorPositionItem.AccessibleName = "Position";
     this.bindingNavigatorPositionItem.AutoSize       = false;
     this.bindingNavigatorPositionItem.Name           = "bindingNavigatorPositionItem";
     this.bindingNavigatorPositionItem.Size           = new System.Drawing.Size(50, 23);
     this.bindingNavigatorPositionItem.Text           = "0";
     this.bindingNavigatorPositionItem.ToolTipText    = "Current position";
     //
     // bindingNavigatorSeparator1
     //
     this.bindingNavigatorSeparator1.Name = "bindingNavigatorSeparator1";
     this.bindingNavigatorSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorMoveNextItem
     //
     this.bindingNavigatorMoveNextItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveNextItem.Image        = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveNextItem.Image")));
     this.bindingNavigatorMoveNextItem.Name         = "bindingNavigatorMoveNextItem";
     this.bindingNavigatorMoveNextItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveNextItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveNextItem.Text = "Move next";
     //
     // bindingNavigatorMoveLastItem
     //
     this.bindingNavigatorMoveLastItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveLastItem.Image        = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveLastItem.Image")));
     this.bindingNavigatorMoveLastItem.Name         = "bindingNavigatorMoveLastItem";
     this.bindingNavigatorMoveLastItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveLastItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveLastItem.Text = "Move last";
     //
     // bindingNavigatorSeparator2
     //
     this.bindingNavigatorSeparator2.Name = "bindingNavigatorSeparator2";
     this.bindingNavigatorSeparator2.Size = new System.Drawing.Size(6, 25);
     //
     // tabControl1
     //
     this.tabControl1.Controls.Add(this.tabPage1);
     this.tabControl1.Controls.Add(this.tabPage2);
     this.tabControl1.Location      = new System.Drawing.Point(12, 81);
     this.tabControl1.Name          = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size          = new System.Drawing.Size(992, 462);
     this.tabControl1.TabIndex      = 1;
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.dataGridView1);
     this.tabPage1.Location = new System.Drawing.Point(4, 22);
     this.tabPage1.Name     = "tabPage1";
     this.tabPage1.Padding  = new System.Windows.Forms.Padding(3);
     this.tabPage1.Size     = new System.Drawing.Size(984, 436);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text     = "Datasheet View";
     this.tabPage1.UseVisualStyleBackColor = true;
     //
     // dataGridView1
     //
     this.dataGridView1.AutoGenerateColumns         = false;
     this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
         this.iDNumberDataGridViewTextBoxColumn,
         this.studentNameDataGridViewTextBoxColumn,
         this.genderDataGridViewTextBoxColumn,
         this.emailDataGridViewTextBoxColumn,
         this.classRecordNoDataGridViewTextBoxColumn,
         this.gradeLevelDataGridViewTextBoxColumn,
         this.roomDataGridViewTextBoxColumn,
         this.pdfFilenameDataGridViewTextBoxColumn
     });
     this.dataGridView1.DataSource = this.bindingSourceEPStudents;
     this.dataGridView1.Location   = new System.Drawing.Point(6, 6);
     this.dataGridView1.Name       = "dataGridView1";
     this.dataGridView1.Size       = new System.Drawing.Size(970, 421);
     this.dataGridView1.TabIndex   = 0;
     //
     // iDNumberDataGridViewTextBoxColumn
     //
     this.iDNumberDataGridViewTextBoxColumn.DataPropertyName = "IDNumber";
     this.iDNumberDataGridViewTextBoxColumn.HeaderText       = "IDNumber";
     this.iDNumberDataGridViewTextBoxColumn.Name             = "iDNumberDataGridViewTextBoxColumn";
     //
     // studentNameDataGridViewTextBoxColumn
     //
     this.studentNameDataGridViewTextBoxColumn.DataPropertyName = "StudentName";
     this.studentNameDataGridViewTextBoxColumn.HeaderText       = "StudentName";
     this.studentNameDataGridViewTextBoxColumn.Name             = "studentNameDataGridViewTextBoxColumn";
     this.studentNameDataGridViewTextBoxColumn.Width            = 200;
     //
     // genderDataGridViewTextBoxColumn
     //
     this.genderDataGridViewTextBoxColumn.DataPropertyName = "Gender";
     this.genderDataGridViewTextBoxColumn.HeaderText       = "Gender";
     this.genderDataGridViewTextBoxColumn.Name             = "genderDataGridViewTextBoxColumn";
     //
     // emailDataGridViewTextBoxColumn
     //
     this.emailDataGridViewTextBoxColumn.DataPropertyName = "Email";
     this.emailDataGridViewTextBoxColumn.HeaderText       = "Email";
     this.emailDataGridViewTextBoxColumn.Name             = "emailDataGridViewTextBoxColumn";
     //
     // classRecordNoDataGridViewTextBoxColumn
     //
     this.classRecordNoDataGridViewTextBoxColumn.DataPropertyName = "ClassRecordNo";
     this.classRecordNoDataGridViewTextBoxColumn.HeaderText       = "ClassRecordNo";
     this.classRecordNoDataGridViewTextBoxColumn.Name             = "classRecordNoDataGridViewTextBoxColumn";
     //
     // gradeLevelDataGridViewTextBoxColumn
     //
     this.gradeLevelDataGridViewTextBoxColumn.DataPropertyName = "GradeLevel";
     this.gradeLevelDataGridViewTextBoxColumn.HeaderText       = "GradeLevel";
     this.gradeLevelDataGridViewTextBoxColumn.Name             = "gradeLevelDataGridViewTextBoxColumn";
     //
     // roomDataGridViewTextBoxColumn
     //
     this.roomDataGridViewTextBoxColumn.DataPropertyName = "Room";
     this.roomDataGridViewTextBoxColumn.HeaderText       = "Room";
     this.roomDataGridViewTextBoxColumn.Name             = "roomDataGridViewTextBoxColumn";
     //
     // pdfFilenameDataGridViewTextBoxColumn
     //
     this.pdfFilenameDataGridViewTextBoxColumn.DataPropertyName = "PdfFilename";
     this.pdfFilenameDataGridViewTextBoxColumn.HeaderText       = "PdfFilename";
     this.pdfFilenameDataGridViewTextBoxColumn.Name             = "pdfFilenameDataGridViewTextBoxColumn";
     //
     // tabPage2
     //
     this.tabPage2.Controls.Add(this.btnSendOne);
     this.tabPage2.Controls.Add(this.textBox8);
     this.tabPage2.Controls.Add(this.label8);
     this.tabPage2.Controls.Add(this.textBox7);
     this.tabPage2.Controls.Add(this.label7);
     this.tabPage2.Controls.Add(this.textBox6);
     this.tabPage2.Controls.Add(this.label6);
     this.tabPage2.Controls.Add(this.textBox5);
     this.tabPage2.Controls.Add(this.label5);
     this.tabPage2.Controls.Add(this.textBox4);
     this.tabPage2.Controls.Add(this.label4);
     this.tabPage2.Controls.Add(this.textBox3);
     this.tabPage2.Controls.Add(this.label3);
     this.tabPage2.Controls.Add(this.textBox2);
     this.tabPage2.Controls.Add(this.label2);
     this.tabPage2.Controls.Add(this.textBox1);
     this.tabPage2.Controls.Add(this.label1);
     this.tabPage2.Location = new System.Drawing.Point(4, 22);
     this.tabPage2.Name     = "tabPage2";
     this.tabPage2.Padding  = new System.Windows.Forms.Padding(3);
     this.tabPage2.Size     = new System.Drawing.Size(984, 436);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text     = "Detail View";
     this.tabPage2.UseVisualStyleBackColor = true;
     //
     // btnSendOne
     //
     this.btnSendOne.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnSendOne.Location = new System.Drawing.Point(385, 321);
     this.btnSendOne.Name     = "btnSendOne";
     this.btnSendOne.Size     = new System.Drawing.Size(137, 39);
     this.btnSendOne.TabIndex = 16;
     this.btnSendOne.Text     = "Send";
     this.btnSendOne.UseVisualStyleBackColor = true;
     this.btnSendOne.Click += new System.EventHandler(this.BtnSendOneClick);
     //
     // textBox8
     //
     this.textBox8.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bindingSourceEPStudents, "PdfFilename", true));
     this.textBox8.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox8.Location = new System.Drawing.Point(307, 273);
     this.textBox8.Name     = "textBox8";
     this.textBox8.Size     = new System.Drawing.Size(354, 26);
     this.textBox8.TabIndex = 15;
     //
     // label8
     //
     this.label8.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label8.Location = new System.Drawing.Point(132, 276);
     this.label8.Name     = "label8";
     this.label8.Size     = new System.Drawing.Size(169, 23);
     this.label8.TabIndex = 14;
     this.label8.Text     = "PDF Filename";
     //
     // textBox7
     //
     this.textBox7.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bindingSourceEPStudents, "Room", true));
     this.textBox7.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox7.Location = new System.Drawing.Point(307, 241);
     this.textBox7.Name     = "textBox7";
     this.textBox7.Size     = new System.Drawing.Size(354, 26);
     this.textBox7.TabIndex = 13;
     //
     // label7
     //
     this.label7.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label7.Location = new System.Drawing.Point(132, 244);
     this.label7.Name     = "label7";
     this.label7.Size     = new System.Drawing.Size(169, 23);
     this.label7.TabIndex = 12;
     this.label7.Text     = "Room";
     //
     // textBox6
     //
     this.textBox6.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bindingSourceEPStudents, "GradeLevel", true));
     this.textBox6.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox6.Location = new System.Drawing.Point(307, 209);
     this.textBox6.Name     = "textBox6";
     this.textBox6.Size     = new System.Drawing.Size(354, 26);
     this.textBox6.TabIndex = 11;
     //
     // label6
     //
     this.label6.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.Location = new System.Drawing.Point(132, 212);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(169, 23);
     this.label6.TabIndex = 10;
     this.label6.Text     = "Grade Level:";
     //
     // textBox5
     //
     this.textBox5.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bindingSourceEPStudents, "ClassRecordNo", true));
     this.textBox5.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox5.Location = new System.Drawing.Point(307, 177);
     this.textBox5.Name     = "textBox5";
     this.textBox5.Size     = new System.Drawing.Size(354, 26);
     this.textBox5.TabIndex = 9;
     //
     // label5
     //
     this.label5.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.Location = new System.Drawing.Point(132, 180);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(169, 23);
     this.label5.TabIndex = 8;
     this.label5.Text     = "Class Record No:";
     //
     // textBox4
     //
     this.textBox4.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bindingSourceEPStudents, "Email", true));
     this.textBox4.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox4.Location = new System.Drawing.Point(307, 145);
     this.textBox4.Name     = "textBox4";
     this.textBox4.Size     = new System.Drawing.Size(354, 26);
     this.textBox4.TabIndex = 7;
     //
     // label4
     //
     this.label4.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.Location = new System.Drawing.Point(132, 148);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(169, 23);
     this.label4.TabIndex = 6;
     this.label4.Text     = "Email:";
     //
     // textBox3
     //
     this.textBox3.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bindingSourceEPStudents, "Gender", true));
     this.textBox3.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox3.Location = new System.Drawing.Point(307, 113);
     this.textBox3.Name     = "textBox3";
     this.textBox3.Size     = new System.Drawing.Size(354, 26);
     this.textBox3.TabIndex = 5;
     //
     // label3
     //
     this.label3.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.Location = new System.Drawing.Point(132, 116);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(169, 23);
     this.label3.TabIndex = 4;
     this.label3.Text     = "Gender:";
     //
     // textBox2
     //
     this.textBox2.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bindingSourceEPStudents, "StudentName", true));
     this.textBox2.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox2.Location = new System.Drawing.Point(307, 81);
     this.textBox2.Name     = "textBox2";
     this.textBox2.Size     = new System.Drawing.Size(354, 26);
     this.textBox2.TabIndex = 3;
     //
     // label2
     //
     this.label2.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location = new System.Drawing.Point(132, 84);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(169, 23);
     this.label2.TabIndex = 2;
     this.label2.Text     = "Student Name:";
     //
     // textBox1
     //
     this.textBox1.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bindingSourceEPStudents, "IDNumber", true));
     this.textBox1.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox1.Location = new System.Drawing.Point(307, 49);
     this.textBox1.Name     = "textBox1";
     this.textBox1.Size     = new System.Drawing.Size(354, 26);
     this.textBox1.TabIndex = 1;
     //
     // label1
     //
     this.label1.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(132, 52);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(169, 23);
     this.label1.TabIndex = 0;
     this.label1.Text     = "ID Number:";
     //
     // btnLoadExcelData
     //
     this.btnLoadExcelData.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnLoadExcelData.Location = new System.Drawing.Point(12, 38);
     this.btnLoadExcelData.Name     = "btnLoadExcelData";
     this.btnLoadExcelData.Size     = new System.Drawing.Size(172, 33);
     this.btnLoadExcelData.TabIndex = 2;
     this.btnLoadExcelData.Text     = "Load Excel Data";
     this.btnLoadExcelData.UseVisualStyleBackColor = true;
     this.btnLoadExcelData.Click += new System.EventHandler(this.BtnLoadExcelDataClick);
     //
     // txtSearch
     //
     this.txtSearch.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtSearch.Location = new System.Drawing.Point(235, 41);
     this.txtSearch.Name     = "txtSearch";
     this.txtSearch.Size     = new System.Drawing.Size(201, 26);
     this.txtSearch.TabIndex = 3;
     //
     // btnSearch
     //
     this.btnSearch.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnSearch.Location = new System.Drawing.Point(442, 38);
     this.btnSearch.Name     = "btnSearch";
     this.btnSearch.Size     = new System.Drawing.Size(96, 33);
     this.btnSearch.TabIndex = 4;
     this.btnSearch.Text     = "Search";
     this.btnSearch.UseVisualStyleBackColor = true;
     this.btnSearch.Click += new System.EventHandler(this.BtnSearchClick);
     //
     // comboBoxRooms
     //
     this.comboBoxRooms.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.comboBoxRooms.FormattingEnabled = true;
     this.comboBoxRooms.Location          = new System.Drawing.Point(711, 41);
     this.comboBoxRooms.Name                  = "comboBoxRooms";
     this.comboBoxRooms.Size                  = new System.Drawing.Size(153, 28);
     this.comboBoxRooms.TabIndex              = 5;
     this.comboBoxRooms.SelectedIndexChanged += new System.EventHandler(this.ComboBoxRoomsSelectedIndexChanged);
     //
     // btnSendAll
     //
     this.btnSendAll.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnSendAll.Location = new System.Drawing.Point(870, 38);
     this.btnSendAll.Name     = "btnSendAll";
     this.btnSendAll.Size     = new System.Drawing.Size(130, 33);
     this.btnSendAll.TabIndex = 6;
     this.btnSendAll.Text     = "Send All";
     this.btnSendAll.UseVisualStyleBackColor = true;
     this.btnSendAll.Click += new System.EventHandler(this.BtnSendAllClick);
     //
     // statusStrip1
     //
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.sendingStatusStrip
     });
     this.statusStrip1.Location = new System.Drawing.Point(0, 552);
     this.statusStrip1.Name     = "statusStrip1";
     this.statusStrip1.Size     = new System.Drawing.Size(1012, 22);
     this.statusStrip1.TabIndex = 7;
     this.statusStrip1.Text     = "statusStrip1";
     //
     // sendingStatusStrip
     //
     this.sendingStatusStrip.Name = "sendingStatusStrip";
     this.sendingStatusStrip.Size = new System.Drawing.Size(42, 17);
     this.sendingStatusStrip.Text = "Ready.";
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1012, 574);
     this.Controls.Add(this.statusStrip1);
     this.Controls.Add(this.btnSendAll);
     this.Controls.Add(this.comboBoxRooms);
     this.Controls.Add(this.btnSearch);
     this.Controls.Add(this.txtSearch);
     this.Controls.Add(this.btnLoadExcelData);
     this.Controls.Add(this.tabControl1);
     this.Controls.Add(this.bindingNavigator1);
     this.Name          = "MainForm";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "MainForm";
     ((System.ComponentModel.ISupportInitialize)(this.bindingSourceEPStudents)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingNavigator1)).EndInit();
     this.bindingNavigator1.ResumeLayout(false);
     this.bindingNavigator1.PerformLayout();
     this.tabControl1.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
     this.tabPage2.ResumeLayout(false);
     this.tabPage2.PerformLayout();
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Beispiel #16
0
 /// <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.Windows.Forms.Label id_proprietarioLabel;
     System.Windows.Forms.Label nomeLabel;
     System.Windows.Forms.Label enderecoLabel;
     System.Windows.Forms.Label cpf_cnpjLabel;
     System.Windows.Forms.Label telefoneLabel;
     System.Windows.Forms.Label emailLabel;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form3));
     this.bd_imobiliariaDataSet = new adonaimobi.bd_imobiliariaDataSet();
     this.proprietarioBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.proprietarioTableAdapter = new adonaimobi.bd_imobiliariaDataSetTableAdapters.proprietarioTableAdapter();
     this.tableAdapterManager = new adonaimobi.bd_imobiliariaDataSetTableAdapters.TableAdapterManager();
     this.proprietarioBindingNavigator = new System.Windows.Forms.BindingNavigator(this.components);
     this.bindingNavigatorAddNewItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorCountItem = new System.Windows.Forms.ToolStripLabel();
     this.bindingNavigatorDeleteItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMoveFirstItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMovePreviousItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorPositionItem = new System.Windows.Forms.ToolStripTextBox();
     this.bindingNavigatorSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorMoveNextItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMoveLastItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.proprietarioBindingNavigatorSaveItem = new System.Windows.Forms.ToolStripButton();
     this.id_proprietarioTextBox = new System.Windows.Forms.TextBox();
     this.nomeTextBox = new System.Windows.Forms.TextBox();
     this.enderecoTextBox = new System.Windows.Forms.TextBox();
     this.cpf_cnpjTextBox = new System.Windows.Forms.TextBox();
     this.telefoneTextBox = new System.Windows.Forms.TextBox();
     this.emailTextBox = new System.Windows.Forms.TextBox();
     this.proprietarioDataGridView = new System.Windows.Forms.DataGridView();
     this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn6 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.label1 = new System.Windows.Forms.Label();
     id_proprietarioLabel = new System.Windows.Forms.Label();
     nomeLabel = new System.Windows.Forms.Label();
     enderecoLabel = new System.Windows.Forms.Label();
     cpf_cnpjLabel = new System.Windows.Forms.Label();
     telefoneLabel = new System.Windows.Forms.Label();
     emailLabel = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.bd_imobiliariaDataSet)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.proprietarioBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.proprietarioBindingNavigator)).BeginInit();
     this.proprietarioBindingNavigator.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.proprietarioDataGridView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.SuspendLayout();
     //
     // id_proprietarioLabel
     //
     id_proprietarioLabel.AutoSize = true;
     id_proprietarioLabel.Location = new System.Drawing.Point(383, 277);
     id_proprietarioLabel.Name = "id_proprietarioLabel";
     id_proprietarioLabel.Size = new System.Drawing.Size(77, 13);
     id_proprietarioLabel.TabIndex = 1;
     id_proprietarioLabel.Text = "ID Proprietário:";
     //
     // nomeLabel
     //
     nomeLabel.AutoSize = true;
     nomeLabel.Location = new System.Drawing.Point(638, 273);
     nomeLabel.Name = "nomeLabel";
     nomeLabel.Size = new System.Drawing.Size(38, 13);
     nomeLabel.TabIndex = 3;
     nomeLabel.Text = "Nome:";
     //
     // enderecoLabel
     //
     enderecoLabel.AutoSize = true;
     enderecoLabel.Location = new System.Drawing.Point(849, 272);
     enderecoLabel.Name = "enderecoLabel";
     enderecoLabel.Size = new System.Drawing.Size(56, 13);
     enderecoLabel.TabIndex = 5;
     enderecoLabel.Text = "Endereço:";
     //
     // cpf_cnpjLabel
     //
     cpf_cnpjLabel.AutoSize = true;
     cpf_cnpjLabel.Location = new System.Drawing.Point(394, 323);
     cpf_cnpjLabel.Name = "cpf_cnpjLabel";
     cpf_cnpjLabel.Size = new System.Drawing.Size(66, 13);
     cpf_cnpjLabel.TabIndex = 7;
     cpf_cnpjLabel.Text = "CPF - CNPJ:";
     //
     // telefoneLabel
     //
     telefoneLabel.AutoSize = true;
     telefoneLabel.Location = new System.Drawing.Point(624, 323);
     telefoneLabel.Name = "telefoneLabel";
     telefoneLabel.Size = new System.Drawing.Size(52, 13);
     telefoneLabel.TabIndex = 9;
     telefoneLabel.Text = "Telefone:";
     //
     // emailLabel
     //
     emailLabel.AutoSize = true;
     emailLabel.Location = new System.Drawing.Point(867, 323);
     emailLabel.Name = "emailLabel";
     emailLabel.Size = new System.Drawing.Size(38, 13);
     emailLabel.TabIndex = 11;
     emailLabel.Text = "E-mail:";
     //
     // bd_imobiliariaDataSet
     //
     this.bd_imobiliariaDataSet.DataSetName = "bd_imobiliariaDataSet";
     this.bd_imobiliariaDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // proprietarioBindingSource
     //
     this.proprietarioBindingSource.DataMember = "proprietario";
     this.proprietarioBindingSource.DataSource = this.bd_imobiliariaDataSet;
     //
     // proprietarioTableAdapter
     //
     this.proprietarioTableAdapter.ClearBeforeFill = true;
     //
     // tableAdapterManager
     //
     this.tableAdapterManager.aluguelTableAdapter = null;
     this.tableAdapterManager.BackupDataSetBeforeUpdate = false;
     this.tableAdapterManager.comprador_inquilinoTableAdapter = null;
     this.tableAdapterManager.contratoTableAdapter = null;
     this.tableAdapterManager.corretorTableAdapter = null;
     this.tableAdapterManager.imobiliariaTableAdapter = null;
     this.tableAdapterManager.imovelTableAdapter = null;
     this.tableAdapterManager.notafiscalTableAdapter = null;
     this.tableAdapterManager.proprietarioTableAdapter = this.proprietarioTableAdapter;
     this.tableAdapterManager.UpdateOrder = adonaimobi.bd_imobiliariaDataSetTableAdapters.TableAdapterManager.UpdateOrderOption.InsertUpdateDelete;
     this.tableAdapterManager.vendaTableAdapter = null;
     //
     // proprietarioBindingNavigator
     //
     this.proprietarioBindingNavigator.AddNewItem = this.bindingNavigatorAddNewItem;
     this.proprietarioBindingNavigator.BindingSource = this.proprietarioBindingSource;
     this.proprietarioBindingNavigator.CountItem = this.bindingNavigatorCountItem;
     this.proprietarioBindingNavigator.DeleteItem = this.bindingNavigatorDeleteItem;
     this.proprietarioBindingNavigator.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.bindingNavigatorMoveFirstItem,
     this.bindingNavigatorMovePreviousItem,
     this.bindingNavigatorSeparator,
     this.bindingNavigatorPositionItem,
     this.bindingNavigatorCountItem,
     this.bindingNavigatorSeparator1,
     this.bindingNavigatorMoveNextItem,
     this.bindingNavigatorMoveLastItem,
     this.bindingNavigatorSeparator2,
     this.bindingNavigatorAddNewItem,
     this.bindingNavigatorDeleteItem,
     this.proprietarioBindingNavigatorSaveItem});
     this.proprietarioBindingNavigator.Location = new System.Drawing.Point(0, 0);
     this.proprietarioBindingNavigator.MoveFirstItem = this.bindingNavigatorMoveFirstItem;
     this.proprietarioBindingNavigator.MoveLastItem = this.bindingNavigatorMoveLastItem;
     this.proprietarioBindingNavigator.MoveNextItem = this.bindingNavigatorMoveNextItem;
     this.proprietarioBindingNavigator.MovePreviousItem = this.bindingNavigatorMovePreviousItem;
     this.proprietarioBindingNavigator.Name = "proprietarioBindingNavigator";
     this.proprietarioBindingNavigator.PositionItem = this.bindingNavigatorPositionItem;
     this.proprietarioBindingNavigator.Size = new System.Drawing.Size(1295, 25);
     this.proprietarioBindingNavigator.TabIndex = 0;
     this.proprietarioBindingNavigator.Text = "bindingNavigator1";
     //
     // bindingNavigatorAddNewItem
     //
     this.bindingNavigatorAddNewItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorAddNewItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorAddNewItem.Image")));
     this.bindingNavigatorAddNewItem.Name = "bindingNavigatorAddNewItem";
     this.bindingNavigatorAddNewItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorAddNewItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorAddNewItem.Text = "Add new";
     //
     // bindingNavigatorCountItem
     //
     this.bindingNavigatorCountItem.Name = "bindingNavigatorCountItem";
     this.bindingNavigatorCountItem.Size = new System.Drawing.Size(35, 22);
     this.bindingNavigatorCountItem.Text = "of {0}";
     this.bindingNavigatorCountItem.ToolTipText = "Total number of items";
     //
     // bindingNavigatorDeleteItem
     //
     this.bindingNavigatorDeleteItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorDeleteItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorDeleteItem.Image")));
     this.bindingNavigatorDeleteItem.Name = "bindingNavigatorDeleteItem";
     this.bindingNavigatorDeleteItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorDeleteItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorDeleteItem.Text = "Delete";
     //
     // bindingNavigatorMoveFirstItem
     //
     this.bindingNavigatorMoveFirstItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveFirstItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveFirstItem.Image")));
     this.bindingNavigatorMoveFirstItem.Name = "bindingNavigatorMoveFirstItem";
     this.bindingNavigatorMoveFirstItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveFirstItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveFirstItem.Text = "Move first";
     //
     // bindingNavigatorMovePreviousItem
     //
     this.bindingNavigatorMovePreviousItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMovePreviousItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMovePreviousItem.Image")));
     this.bindingNavigatorMovePreviousItem.Name = "bindingNavigatorMovePreviousItem";
     this.bindingNavigatorMovePreviousItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMovePreviousItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMovePreviousItem.Text = "Move previous";
     //
     // bindingNavigatorSeparator
     //
     this.bindingNavigatorSeparator.Name = "bindingNavigatorSeparator";
     this.bindingNavigatorSeparator.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorPositionItem
     //
     this.bindingNavigatorPositionItem.AccessibleName = "Position";
     this.bindingNavigatorPositionItem.AutoSize = false;
     this.bindingNavigatorPositionItem.Name = "bindingNavigatorPositionItem";
     this.bindingNavigatorPositionItem.Size = new System.Drawing.Size(50, 23);
     this.bindingNavigatorPositionItem.Text = "0";
     this.bindingNavigatorPositionItem.ToolTipText = "Current position";
     //
     // bindingNavigatorSeparator1
     //
     this.bindingNavigatorSeparator1.Name = "bindingNavigatorSeparator1";
     this.bindingNavigatorSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorMoveNextItem
     //
     this.bindingNavigatorMoveNextItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveNextItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveNextItem.Image")));
     this.bindingNavigatorMoveNextItem.Name = "bindingNavigatorMoveNextItem";
     this.bindingNavigatorMoveNextItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveNextItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveNextItem.Text = "Move next";
     //
     // bindingNavigatorMoveLastItem
     //
     this.bindingNavigatorMoveLastItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveLastItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveLastItem.Image")));
     this.bindingNavigatorMoveLastItem.Name = "bindingNavigatorMoveLastItem";
     this.bindingNavigatorMoveLastItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveLastItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveLastItem.Text = "Move last";
     //
     // bindingNavigatorSeparator2
     //
     this.bindingNavigatorSeparator2.Name = "bindingNavigatorSeparator2";
     this.bindingNavigatorSeparator2.Size = new System.Drawing.Size(6, 25);
     //
     // proprietarioBindingNavigatorSaveItem
     //
     this.proprietarioBindingNavigatorSaveItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.proprietarioBindingNavigatorSaveItem.Image = ((System.Drawing.Image)(resources.GetObject("proprietarioBindingNavigatorSaveItem.Image")));
     this.proprietarioBindingNavigatorSaveItem.Name = "proprietarioBindingNavigatorSaveItem";
     this.proprietarioBindingNavigatorSaveItem.Size = new System.Drawing.Size(23, 22);
     this.proprietarioBindingNavigatorSaveItem.Text = "Save Data";
     this.proprietarioBindingNavigatorSaveItem.Click += new System.EventHandler(this.proprietarioBindingNavigatorSaveItem_Click);
     //
     // id_proprietarioTextBox
     //
     this.id_proprietarioTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.proprietarioBindingSource, "id_proprietario", true));
     this.id_proprietarioTextBox.Location = new System.Drawing.Point(466, 277);
     this.id_proprietarioTextBox.Name = "id_proprietarioTextBox";
     this.id_proprietarioTextBox.Size = new System.Drawing.Size(100, 20);
     this.id_proprietarioTextBox.TabIndex = 2;
     //
     // nomeTextBox
     //
     this.nomeTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.proprietarioBindingSource, "nome", true));
     this.nomeTextBox.Location = new System.Drawing.Point(682, 273);
     this.nomeTextBox.Name = "nomeTextBox";
     this.nomeTextBox.Size = new System.Drawing.Size(100, 20);
     this.nomeTextBox.TabIndex = 4;
     //
     // enderecoTextBox
     //
     this.enderecoTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.proprietarioBindingSource, "endereco", true));
     this.enderecoTextBox.Location = new System.Drawing.Point(911, 269);
     this.enderecoTextBox.Name = "enderecoTextBox";
     this.enderecoTextBox.Size = new System.Drawing.Size(157, 20);
     this.enderecoTextBox.TabIndex = 6;
     //
     // cpf_cnpjTextBox
     //
     this.cpf_cnpjTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.proprietarioBindingSource, "cpf_cnpj", true));
     this.cpf_cnpjTextBox.Location = new System.Drawing.Point(466, 327);
     this.cpf_cnpjTextBox.Name = "cpf_cnpjTextBox";
     this.cpf_cnpjTextBox.Size = new System.Drawing.Size(100, 20);
     this.cpf_cnpjTextBox.TabIndex = 8;
     //
     // telefoneTextBox
     //
     this.telefoneTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.proprietarioBindingSource, "telefone", true));
     this.telefoneTextBox.Location = new System.Drawing.Point(682, 323);
     this.telefoneTextBox.Name = "telefoneTextBox";
     this.telefoneTextBox.Size = new System.Drawing.Size(100, 20);
     this.telefoneTextBox.TabIndex = 10;
     //
     // emailTextBox
     //
     this.emailTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.proprietarioBindingSource, "email", true));
     this.emailTextBox.Location = new System.Drawing.Point(911, 323);
     this.emailTextBox.Name = "emailTextBox";
     this.emailTextBox.Size = new System.Drawing.Size(157, 20);
     this.emailTextBox.TabIndex = 12;
     //
     // proprietarioDataGridView
     //
     this.proprietarioDataGridView.AutoGenerateColumns = false;
     this.proprietarioDataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.proprietarioDataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.dataGridViewTextBoxColumn1,
     this.dataGridViewTextBoxColumn2,
     this.dataGridViewTextBoxColumn3,
     this.dataGridViewTextBoxColumn4,
     this.dataGridViewTextBoxColumn5,
     this.dataGridViewTextBoxColumn6});
     this.proprietarioDataGridView.DataSource = this.proprietarioBindingSource;
     this.proprietarioDataGridView.Location = new System.Drawing.Point(390, 385);
     this.proprietarioDataGridView.Name = "proprietarioDataGridView";
     this.proprietarioDataGridView.Size = new System.Drawing.Size(643, 400);
     this.proprietarioDataGridView.TabIndex = 13;
     //
     // dataGridViewTextBoxColumn1
     //
     this.dataGridViewTextBoxColumn1.DataPropertyName = "id_proprietario";
     this.dataGridViewTextBoxColumn1.HeaderText = "id_proprietario";
     this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
     //
     // dataGridViewTextBoxColumn2
     //
     this.dataGridViewTextBoxColumn2.DataPropertyName = "nome";
     this.dataGridViewTextBoxColumn2.HeaderText = "nome";
     this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
     //
     // dataGridViewTextBoxColumn3
     //
     this.dataGridViewTextBoxColumn3.DataPropertyName = "endereco";
     this.dataGridViewTextBoxColumn3.HeaderText = "endereco";
     this.dataGridViewTextBoxColumn3.Name = "dataGridViewTextBoxColumn3";
     //
     // dataGridViewTextBoxColumn4
     //
     this.dataGridViewTextBoxColumn4.DataPropertyName = "cpf_cnpj";
     this.dataGridViewTextBoxColumn4.HeaderText = "cpf_cnpj";
     this.dataGridViewTextBoxColumn4.Name = "dataGridViewTextBoxColumn4";
     //
     // dataGridViewTextBoxColumn5
     //
     this.dataGridViewTextBoxColumn5.DataPropertyName = "telefone";
     this.dataGridViewTextBoxColumn5.HeaderText = "telefone";
     this.dataGridViewTextBoxColumn5.Name = "dataGridViewTextBoxColumn5";
     //
     // dataGridViewTextBoxColumn6
     //
     this.dataGridViewTextBoxColumn6.DataPropertyName = "email";
     this.dataGridViewTextBoxColumn6.HeaderText = "email";
     this.dataGridViewTextBoxColumn6.Name = "dataGridViewTextBoxColumn6";
     //
     // pictureBox1
     //
     this.pictureBox1.Image = global::adonaimobi.Properties.Resources.Capturaraaa;
     this.pictureBox1.Location = new System.Drawing.Point(1089, 150);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(119, 95);
     this.pictureBox1.TabIndex = 14;
     this.pictureBox1.TabStop = false;
     //
     // label1
     //
     this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(687, 178);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(123, 25);
     this.label1.TabIndex = 16;
     this.label1.Text = "Proprietário";
     //
     // Form3
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1295, 882);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.pictureBox1);
     this.Controls.Add(this.proprietarioDataGridView);
     this.Controls.Add(id_proprietarioLabel);
     this.Controls.Add(this.id_proprietarioTextBox);
     this.Controls.Add(nomeLabel);
     this.Controls.Add(this.nomeTextBox);
     this.Controls.Add(enderecoLabel);
     this.Controls.Add(this.enderecoTextBox);
     this.Controls.Add(cpf_cnpjLabel);
     this.Controls.Add(this.cpf_cnpjTextBox);
     this.Controls.Add(telefoneLabel);
     this.Controls.Add(this.telefoneTextBox);
     this.Controls.Add(emailLabel);
     this.Controls.Add(this.emailTextBox);
     this.Controls.Add(this.proprietarioBindingNavigator);
     this.Name = "Form3";
     this.Text = "Proprietario";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.Form3_Load);
     ((System.ComponentModel.ISupportInitialize)(this.bd_imobiliariaDataSet)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.proprietarioBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.proprietarioBindingNavigator)).EndInit();
     this.proprietarioBindingNavigator.ResumeLayout(false);
     this.proprietarioBindingNavigator.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.proprietarioDataGridView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Beispiel #17
0
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
     this.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.textBox1   = new System.Windows.Forms.ToolStripTextBox();
     this.Button1    = new System.Windows.Forms.ToolStripButton();
     this.textBox2   = new System.Windows.Forms.ToolStripTextBox();
     this.Button2    = new System.Windows.Forms.ToolStripButton();
     this.Button3    = new System.Windows.Forms.ToolStripButton();
     this.Button4    = new System.Windows.Forms.ToolStripButton();
     this.textBox3   = new System.Windows.Forms.ToolStripTextBox();
     this.Button5    = new System.Windows.Forms.ToolStripButton();
     this.textBox4   = new System.Windows.Forms.ToolStripTextBox();
     this.Button6    = new System.Windows.Forms.ToolStripButton();
     this.toolStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // toolStrip1
     //
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.textBox1,
         this.Button1,
         this.textBox2,
         this.Button2,
         this.Button3,
         this.Button4,
         this.textBox3,
         this.Button5,
         this.textBox4,
         this.Button6
     });
     this.toolStrip1.Location = new System.Drawing.Point(0, 0);
     this.toolStrip1.Name     = "toolStrip1";
     this.toolStrip1.Size     = new System.Drawing.Size(999, 25);
     this.toolStrip1.TabIndex = 2;
     this.toolStrip1.Text     = "toolStrip1";
     //
     // textBox1
     //
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new System.Drawing.Size(100, 25);
     //
     // Button1
     //
     this.Button1.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.Button1.Image                 = ((System.Drawing.Image)(resources.GetObject("Button1.Image")));
     this.Button1.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.Button1.Name   = "Button1";
     this.Button1.Size   = new System.Drawing.Size(33, 22);
     this.Button1.Text   = "Add";
     this.Button1.Click += new System.EventHandler(this.Button1Click);
     //
     // textBox2
     //
     this.textBox2.Name = "textBox2";
     this.textBox2.Size = new System.Drawing.Size(100, 25);
     //
     // Button2
     //
     this.Button2.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.Button2.Image                 = ((System.Drawing.Image)(resources.GetObject("Button2.Image")));
     this.Button2.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.Button2.Name   = "Button2";
     this.Button2.Size   = new System.Drawing.Size(34, 22);
     this.Button2.Text   = "Find";
     this.Button2.Click += new System.EventHandler(this.Button2Click);
     //
     // Button3
     //
     this.Button3.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.Button3.Image                 = ((System.Drawing.Image)(resources.GetObject("Button3.Image")));
     this.Button3.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.Button3.Name   = "Button3";
     this.Button3.Size   = new System.Drawing.Size(56, 22);
     this.Button3.Text   = "Random";
     this.Button3.Click += new System.EventHandler(this.Button3Click);
     //
     // Button4
     //
     this.Button4.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.Button4.Image                 = ((System.Drawing.Image)(resources.GetObject("Button4.Image")));
     this.Button4.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.Button4.Name   = "Button4";
     this.Button4.Size   = new System.Drawing.Size(38, 22);
     this.Button4.Text   = "Clear";
     this.Button4.Click += new System.EventHandler(this.Button4Click);
     //
     // textBox3
     //
     this.textBox3.Name = "textBox3";
     this.textBox3.Size = new System.Drawing.Size(100, 25);
     //
     // Button5
     //
     this.Button5.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.Button5.Image                 = ((System.Drawing.Image)(resources.GetObject("Button5.Image")));
     this.Button5.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.Button5.Name   = "Button5";
     this.Button5.Size   = new System.Drawing.Size(39, 22);
     this.Button5.Text   = "Lebel";
     this.Button5.Click += new System.EventHandler(this.Button5Click);
     //
     // textBox4
     //
     this.textBox4.Name = "textBox4";
     this.textBox4.Size = new System.Drawing.Size(100, 25);
     //
     // Button6
     //
     this.Button6.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.Button6.Image                 = ((System.Drawing.Image)(resources.GetObject("Button6.Image")));
     this.Button6.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.Button6.Name   = "Button6";
     this.Button6.Size   = new System.Drawing.Size(61, 22);
     this.Button6.Text   = "Remouve";
     this.Button6.Click += new System.EventHandler(this.Button6Click);
     //
     // Form1
     //
     this.ClientSize = new System.Drawing.Size(999, 636);
     this.Controls.Add(this.toolStrip1);
     this.DoubleBuffered = true;
     this.Name           = "Form1";
     this.Paint         += new System.Windows.Forms.PaintEventHandler(this.Form1Paint);
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormDataImport));
     this.buttonImport                     = new System.Windows.Forms.Button();
     this.comboBox1                        = new System.Windows.Forms.ComboBox();
     this.label1                           = new System.Windows.Forms.Label();
     this.label2                           = new System.Windows.Forms.Label();
     this.dataGridView1                    = new System.Windows.Forms.DataGridView();
     this.bindingNavigator1                = new System.Windows.Forms.BindingNavigator(this.components);
     this.bindingNavigatorMoveFirstItem    = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMovePreviousItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator        = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripLabel1                  = new System.Windows.Forms.ToolStripLabel();
     this.bindingNavigatorSeparator1       = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorMoveNextItem     = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMoveLastItem     = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator2       = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripLabel5                  = new System.Windows.Forms.ToolStripLabel();
     this.toolStripLabel4                  = new System.Windows.Forms.ToolStripLabel();
     this.toolStripLabel2                  = new System.Windows.Forms.ToolStripLabel();
     this.toolStripTextBox1                = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripLabel3                  = new System.Windows.Forms.ToolStripLabel();
     this.toolStripButton1                 = new System.Windows.Forms.ToolStripButton();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingNavigator1)).BeginInit();
     this.bindingNavigator1.SuspendLayout();
     this.SuspendLayout();
     //
     // buttonImport
     //
     this.buttonImport.Location = new System.Drawing.Point(285, 29);
     this.buttonImport.Name     = "buttonImport";
     this.buttonImport.Size     = new System.Drawing.Size(123, 23);
     this.buttonImport.TabIndex = 0;
     this.buttonImport.Text     = "开始导入数据";
     this.buttonImport.UseVisualStyleBackColor = true;
     this.buttonImport.Click += new System.EventHandler(this.ButtonImportClick);
     //
     // comboBox1
     //
     this.comboBox1.FormattingEnabled = true;
     this.comboBox1.Items.AddRange(new object[] {
         "一般材料登记记录"
     });
     this.comboBox1.Location = new System.Drawing.Point(12, 30);
     this.comboBox1.Name     = "comboBox1";
     this.comboBox1.Size     = new System.Drawing.Size(257, 20);
     this.comboBox1.TabIndex = 1;
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(12, 74);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(352, 23);
     this.label1.TabIndex  = 2;
     this.label1.Text      = "导入Excel表格的第一行为标题行。";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(12, 97);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(352, 23);
     this.label2.TabIndex  = 2;
     this.label2.Text      = "导入Excel文件只导入第一工作表。";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // dataGridView1
     //
     this.dataGridView1.AllowUserToAddRows    = false;
     this.dataGridView1.AllowUserToDeleteRows = false;
     this.dataGridView1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                        | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridView1.Location           = new System.Drawing.Point(12, 123);
     this.dataGridView1.Name               = "dataGridView1";
     this.dataGridView1.ReadOnly           = true;
     this.dataGridView1.RowTemplate.Height = 23;
     this.dataGridView1.Size               = new System.Drawing.Size(531, 146);
     this.dataGridView1.TabIndex           = 3;
     //
     // bindingNavigator1
     //
     this.bindingNavigator1.AddNewItem = null;
     this.bindingNavigator1.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.bindingNavigator1.CountItem  = null;
     this.bindingNavigator1.DeleteItem = null;
     this.bindingNavigator1.Dock       = System.Windows.Forms.DockStyle.None;
     this.bindingNavigator1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.bindingNavigatorMoveFirstItem,
         this.bindingNavigatorMovePreviousItem,
         this.bindingNavigatorSeparator,
         this.toolStripLabel1,
         this.bindingNavigatorSeparator1,
         this.bindingNavigatorMoveNextItem,
         this.bindingNavigatorMoveLastItem,
         this.bindingNavigatorSeparator2,
         this.toolStripLabel5,
         this.toolStripLabel4,
         this.toolStripLabel2,
         this.toolStripTextBox1,
         this.toolStripLabel3,
         this.toolStripButton1
     });
     this.bindingNavigator1.Location         = new System.Drawing.Point(12, 277);
     this.bindingNavigator1.MoveFirstItem    = this.bindingNavigatorMoveFirstItem;
     this.bindingNavigator1.MoveLastItem     = this.bindingNavigatorMoveLastItem;
     this.bindingNavigator1.MoveNextItem     = this.bindingNavigatorMoveNextItem;
     this.bindingNavigator1.MovePreviousItem = this.bindingNavigatorMovePreviousItem;
     this.bindingNavigator1.Name             = "bindingNavigator1";
     this.bindingNavigator1.PositionItem     = null;
     this.bindingNavigator1.Size             = new System.Drawing.Size(486, 25);
     this.bindingNavigator1.TabIndex         = 4;
     this.bindingNavigator1.Text             = "bindingNavigator1";
     //
     // bindingNavigatorMoveFirstItem
     //
     this.bindingNavigatorMoveFirstItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveFirstItem.Image        = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveFirstItem.Image")));
     this.bindingNavigatorMoveFirstItem.Name         = "bindingNavigatorMoveFirstItem";
     this.bindingNavigatorMoveFirstItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveFirstItem.Size   = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveFirstItem.Text   = "Move first";
     this.bindingNavigatorMoveFirstItem.Click += new System.EventHandler(this.BindingNavigatorMoveFirstItemClick);
     //
     // bindingNavigatorMovePreviousItem
     //
     this.bindingNavigatorMovePreviousItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMovePreviousItem.Image        = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMovePreviousItem.Image")));
     this.bindingNavigatorMovePreviousItem.Name         = "bindingNavigatorMovePreviousItem";
     this.bindingNavigatorMovePreviousItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMovePreviousItem.Size   = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMovePreviousItem.Text   = "Move previous";
     this.bindingNavigatorMovePreviousItem.Click += new System.EventHandler(this.BindingNavigatorMovePreviousItemClick);
     //
     // bindingNavigatorSeparator
     //
     this.bindingNavigatorSeparator.Name = "bindingNavigatorSeparator";
     this.bindingNavigatorSeparator.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripLabel1
     //
     this.toolStripLabel1.Name = "toolStripLabel1";
     this.toolStripLabel1.Size = new System.Drawing.Size(90, 22);
     this.toolStripLabel1.Text = "第 1 页 共 1 页";
     //
     // bindingNavigatorSeparator1
     //
     this.bindingNavigatorSeparator1.Name = "bindingNavigatorSeparator1";
     this.bindingNavigatorSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorMoveNextItem
     //
     this.bindingNavigatorMoveNextItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveNextItem.Image        = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveNextItem.Image")));
     this.bindingNavigatorMoveNextItem.Name         = "bindingNavigatorMoveNextItem";
     this.bindingNavigatorMoveNextItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveNextItem.Size   = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveNextItem.Text   = "Move next";
     this.bindingNavigatorMoveNextItem.Click += new System.EventHandler(this.BindingNavigatorMoveNextItemClick);
     //
     // bindingNavigatorMoveLastItem
     //
     this.bindingNavigatorMoveLastItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveLastItem.Image        = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveLastItem.Image")));
     this.bindingNavigatorMoveLastItem.Name         = "bindingNavigatorMoveLastItem";
     this.bindingNavigatorMoveLastItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveLastItem.Size   = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveLastItem.Text   = "Move last";
     this.bindingNavigatorMoveLastItem.Click += new System.EventHandler(this.BindingNavigatorMoveLastItemClick);
     //
     // bindingNavigatorSeparator2
     //
     this.bindingNavigatorSeparator2.Name = "bindingNavigatorSeparator2";
     this.bindingNavigatorSeparator2.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripLabel5
     //
     this.toolStripLabel5.Name = "toolStripLabel5";
     this.toolStripLabel5.Size = new System.Drawing.Size(68, 22);
     this.toolStripLabel5.Text = "总记录数:";
     //
     // toolStripLabel4
     //
     this.toolStripLabel4.Name = "toolStripLabel4";
     this.toolStripLabel4.Size = new System.Drawing.Size(44, 22);
     this.toolStripLabel4.Text = "         ";
     //
     // toolStripLabel2
     //
     this.toolStripLabel2.Name = "toolStripLabel2";
     this.toolStripLabel2.Size = new System.Drawing.Size(56, 22);
     this.toolStripLabel2.Text = "跳转到第";
     //
     // toolStripTextBox1
     //
     this.toolStripTextBox1.BorderStyle      = System.Windows.Forms.BorderStyle.FixedSingle;
     this.toolStripTextBox1.Name             = "toolStripTextBox1";
     this.toolStripTextBox1.Size             = new System.Drawing.Size(30, 25);
     this.toolStripTextBox1.TextBoxTextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.toolStripTextBox1.KeyPress        += new System.Windows.Forms.KeyPressEventHandler(this.ToolStripTextBox1KeyPress);
     //
     // toolStripLabel3
     //
     this.toolStripLabel3.Name = "toolStripLabel3";
     this.toolStripLabel3.Size = new System.Drawing.Size(20, 22);
     this.toolStripLabel3.Text = "页";
     //
     // toolStripButton1
     //
     this.toolStripButton1.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton1.Image                 = ((System.Drawing.Image)(resources.GetObject("toolStripButton1.Image")));
     this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton1.Name   = "toolStripButton1";
     this.toolStripButton1.Size   = new System.Drawing.Size(23, 22);
     this.toolStripButton1.Text   = "toolStripButton1";
     this.toolStripButton1.Click += new System.EventHandler(this.ToolStripButton1Click);
     //
     // FormDataImport
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(558, 315);
     this.Controls.Add(this.bindingNavigator1);
     this.Controls.Add(this.dataGridView1);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.comboBox1);
     this.Controls.Add(this.buttonImport);
     this.Name  = "FormDataImport";
     this.Text  = "数据批量导入";
     this.Load += new System.EventHandler(this.FormDataImportLoad);
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingNavigator1)).EndInit();
     this.bindingNavigator1.ResumeLayout(false);
     this.bindingNavigator1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <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(FormSelectSupply));
     this.statusStrip1 = new System.Windows.Forms.StatusStrip();
     this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
     this.labelStatus = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
     this.comboBoxSearchCondition = new System.Windows.Forms.ToolStripComboBox();
     this.textBoxSearchContition = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.buttonSearch = new System.Windows.Forms.ToolStripButton();
     this.buttonSelect = new System.Windows.Forms.ToolStripButton();
     this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
     this.reoGridControlMain = new unvell.ReoGrid.ReoGridControl();
     this.panelPagerWidget = new System.Windows.Forms.Panel();
     this.statusStrip1.SuspendLayout();
     this.toolStrip1.SuspendLayout();
     this.tableLayoutPanel1.SuspendLayout();
     this.SuspendLayout();
     //
     // statusStrip1
     //
     this.statusStrip1.ImageScalingSize = new System.Drawing.Size(32, 32);
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripStatusLabel1,
     this.labelStatus});
     this.statusStrip1.Location = new System.Drawing.Point(0, 507);
     this.statusStrip1.Name = "statusStrip1";
     this.statusStrip1.Padding = new System.Windows.Forms.Padding(0, 0, 16, 0);
     this.statusStrip1.Size = new System.Drawing.Size(774, 22);
     this.statusStrip1.TabIndex = 12;
     this.statusStrip1.Text = "statusStrip1";
     //
     // toolStripStatusLabel1
     //
     this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
     this.toolStripStatusLabel1.Size = new System.Drawing.Size(44, 17);
     this.toolStripStatusLabel1.Text = "状态:";
     //
     // labelStatus
     //
     this.labelStatus.Name = "labelStatus";
     this.labelStatus.Size = new System.Drawing.Size(56, 17);
     this.labelStatus.Text = "选择零件";
     //
     // toolStrip1
     //
     this.toolStrip1.BackgroundImage = global::WMS.UI.Properties.Resources.bottonW_q;
     this.toolStrip1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.toolStrip1.Font = new System.Drawing.Font("Microsoft YaHei UI", 9F);
     this.toolStrip1.ImageScalingSize = new System.Drawing.Size(20, 20);
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripLabel1,
     this.comboBoxSearchCondition,
     this.textBoxSearchContition,
     this.toolStripSeparator1,
     this.buttonSearch,
     this.buttonSelect});
     this.toolStrip1.Location = new System.Drawing.Point(0, 0);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.Size = new System.Drawing.Size(774, 27);
     this.toolStrip1.TabIndex = 2;
     this.toolStrip1.Text = "toolStrip1";
     //
     // toolStripLabel1
     //
     this.toolStripLabel1.Name = "toolStripLabel1";
     this.toolStripLabel1.Size = new System.Drawing.Size(67, 24);
     this.toolStripLabel1.Text = "零件类型:";
     //
     // comboBoxSearchCondition
     //
     this.comboBoxSearchCondition.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxSearchCondition.FlatStyle = System.Windows.Forms.FlatStyle.Standard;
     this.comboBoxSearchCondition.Items.AddRange(new object[] {
         "无",
     "供货零件代号"
     ,"零件名"});
     this.comboBoxSearchCondition.Name = "comboBoxSearchCondition";
     this.comboBoxSearchCondition.Size = new System.Drawing.Size(121, 27);
     //
     // textBoxSearchContition
     //
     this.textBoxSearchContition.Name = "textBoxSearchContition";
     this.textBoxSearchContition.Size = new System.Drawing.Size(200, 27);
     this.textBoxSearchContition.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBoxComponentNo_KeyPress);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 27);
     //
     // buttonSearch
     //
     this.buttonSearch.Image = ((System.Drawing.Image)(resources.GetObject("buttonSearch.Image")));
     this.buttonSearch.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.buttonSearch.Name = "buttonSearch";
     this.buttonSearch.Size = new System.Drawing.Size(55, 24);
     this.buttonSearch.Text = "查询";
     this.buttonSearch.Click += new System.EventHandler(this.buttonSearch_Click);
     //
     // buttonSelect
     //
     this.buttonSelect.Image = ((System.Drawing.Image)(resources.GetObject("buttonSelect.Image")));
     this.buttonSelect.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.buttonSelect.Name = "buttonSelect";
     this.buttonSelect.Size = new System.Drawing.Size(79, 24);
     this.buttonSelect.Text = "确认选择";
     this.buttonSelect.Click += new System.EventHandler(this.buttonSelect_Click);
     //
     // tableLayoutPanel1
     //
     this.tableLayoutPanel1.ColumnCount = 1;
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel1.Controls.Add(this.reoGridControlMain, 0, 0);
     this.tableLayoutPanel1.Controls.Add(this.panelPagerWidget, 0, 1);
     this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 27);
     this.tableLayoutPanel1.Name = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 2;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 38F));
     this.tableLayoutPanel1.Size = new System.Drawing.Size(774, 480);
     this.tableLayoutPanel1.TabIndex = 13;
     //
     // reoGridControlMain
     //
     this.reoGridControlMain.BackColor = System.Drawing.Color.White;
     this.reoGridControlMain.ColumnHeaderContextMenuStrip = null;
     this.reoGridControlMain.Dock = System.Windows.Forms.DockStyle.Fill;
     this.reoGridControlMain.LeadHeaderContextMenuStrip = null;
     this.reoGridControlMain.Location = new System.Drawing.Point(5, 4);
     this.reoGridControlMain.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
     this.reoGridControlMain.Name = "reoGridControlMain";
     this.reoGridControlMain.Readonly = true;
     this.reoGridControlMain.RowHeaderContextMenuStrip = null;
     this.reoGridControlMain.Script = null;
     this.reoGridControlMain.SheetTabContextMenuStrip = null;
     this.reoGridControlMain.SheetTabNewButtonVisible = true;
     this.reoGridControlMain.SheetTabVisible = true;
     this.reoGridControlMain.SheetTabWidth = 140;
     this.reoGridControlMain.ShowScrollEndSpacing = true;
     this.reoGridControlMain.Size = new System.Drawing.Size(764, 434);
     this.reoGridControlMain.TabIndex = 9;
     this.reoGridControlMain.Text = "reoGridControl1";
     //
     // panelPagerWidget
     //
     this.panelPagerWidget.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelPagerWidget.Location = new System.Drawing.Point(3, 445);
     this.panelPagerWidget.Name = "panelPagerWidget";
     this.panelPagerWidget.Size = new System.Drawing.Size(768, 32);
     this.panelPagerWidget.TabIndex = 10;
     //
     // FormSelectSupply
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(774, 529);
     this.Controls.Add(this.tableLayoutPanel1);
     this.Controls.Add(this.toolStrip1);
     this.Controls.Add(this.statusStrip1);
     this.Font = new System.Drawing.Font("黑体", 10F);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "FormSelectSupply";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "选择供货";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FormSelectStockInfo_FormClosing);
     this.Load += new System.EventHandler(this.FormJobTicketSelectStockInfo_Load);
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     this.tableLayoutPanel1.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Beispiel #20
0
 /// <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(ReportViewer));
     Microsoft.Reporting.WinForms.ReportDataSource reportDataSource3 = new Microsoft.Reporting.WinForms.ReportDataSource();
     this.TestBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.dnReport = new System.Windows.Forms.BindingNavigator(this.components);
     this.tspbPrint = new System.Windows.Forms.ToolStripSplitButton();
     this.toolPageSettings = new System.Windows.Forms.ToolStripMenuItem();
     this.toolPreview = new System.Windows.Forms.ToolStripMenuItem();
     this.toolPrint = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.toolRefresh = new System.Windows.Forms.ToolStripButton();
     this.toolStop = new System.Windows.Forms.ToolStripButton();
     this.toolBack = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
     this.toolExport = new System.Windows.Forms.ToolStripSplitButton();
     this.toolExcel = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
     this.tspbZoom = new System.Windows.Forms.ToolStripSplitButton();
     this.tool25 = new System.Windows.Forms.ToolStripMenuItem();
     this.tool50 = new System.Windows.Forms.ToolStripMenuItem();
     this.tool100 = new System.Windows.Forms.ToolStripMenuItem();
     this.tool200 = new System.Windows.Forms.ToolStripMenuItem();
     this.tool400 = new System.Windows.Forms.ToolStripMenuItem();
     this.toolWhole = new System.Windows.Forms.ToolStripMenuItem();
     this.toolPageWidth = new System.Windows.Forms.ToolStripMenuItem();
     this.tspbSearch = new System.Windows.Forms.ToolStripSplitButton();
     this.txtSearch = new System.Windows.Forms.ToolStripTextBox();
     this.toolSearch = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.toolSearchNext = new System.Windows.Forms.ToolStripMenuItem();
     this.tspbNavigation = new System.Windows.Forms.ToolStripSplitButton();
     this.toolFirst = new System.Windows.Forms.ToolStripMenuItem();
     this.toolLast = new System.Windows.Forms.ToolStripMenuItem();
     this.toolPrevious = new System.Windows.Forms.ToolStripMenuItem();
     this.toolNext = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.toolJump = new System.Windows.Forms.ToolStripMenuItem();
     this.txtJump = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripButton1 = new System.Windows.Forms.ToolStripSeparator();
     this.rptViewer = new Microsoft.Reporting.WinForms.ReportViewer();
     this.PreviewDialog = new System.Windows.Forms.PrintPreviewDialog();
     ((System.ComponentModel.ISupportInitialize)(this.TestBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dnReport)).BeginInit();
     this.dnReport.SuspendLayout();
     this.SuspendLayout();
     //
     // dnReport
     //
     this.dnReport.AddNewItem = null;
     this.dnReport.CountItem = null;
     this.dnReport.DeleteItem = null;
     this.dnReport.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.tspbPrint,
     this.toolStripSeparator1,
     this.toolRefresh,
     this.toolStop,
     this.toolBack,
     this.toolStripSeparator4,
     this.toolExport,
     this.toolStripSeparator5,
     this.tspbZoom,
     this.tspbSearch,
     this.tspbNavigation,
     this.toolStripButton1});
     this.dnReport.Location = new System.Drawing.Point(0, 0);
     this.dnReport.MoveFirstItem = null;
     this.dnReport.MoveLastItem = null;
     this.dnReport.MoveNextItem = null;
     this.dnReport.MovePreviousItem = null;
     this.dnReport.Name = "dnReport";
     this.dnReport.PositionItem = null;
     this.dnReport.Size = new System.Drawing.Size(641, 25);
     this.dnReport.TabIndex = 0;
     this.dnReport.Text = "bindingNavigator1";
     //
     // tspbPrint
     //
     this.tspbPrint.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.tspbPrint.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolPageSettings,
     this.toolPreview,
     this.toolPrint});
     this.tspbPrint.Image = ((System.Drawing.Image)(resources.GetObject("tspbPrint.Image")));
     this.tspbPrint.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.tspbPrint.Name = "tspbPrint";
     this.tspbPrint.Size = new System.Drawing.Size(45, 22);
     this.tspbPrint.Text = "打印";
     //
     // toolPageSettings
     //
     this.toolPageSettings.Name = "toolPageSettings";
     this.toolPageSettings.Size = new System.Drawing.Size(152, 22);
     this.toolPageSettings.Text = "页面设置";
     this.toolPageSettings.Click += new System.EventHandler(this.toolPageSettings_Click);
     //
     // toolPreview
     //
     this.toolPreview.Name = "toolPreview";
     this.toolPreview.Size = new System.Drawing.Size(152, 22);
     this.toolPreview.Text = "预览";
     this.toolPreview.Click += new System.EventHandler(this.toolPreview_Click);
     //
     // toolPrint
     //
     this.toolPrint.Name = "toolPrint";
     this.toolPrint.Size = new System.Drawing.Size(152, 22);
     this.toolPrint.Text = "打印";
     this.toolPrint.Click += new System.EventHandler(this.toolPrint_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // toolRefresh
     //
     this.toolRefresh.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolRefresh.Name = "toolRefresh";
     this.toolRefresh.Size = new System.Drawing.Size(33, 22);
     this.toolRefresh.Text = "刷新";
     this.toolRefresh.Click += new System.EventHandler(this.toolRefresh_Click);
     //
     // toolStop
     //
     this.toolStop.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStop.Name = "toolStop";
     this.toolStop.Size = new System.Drawing.Size(33, 22);
     this.toolStop.Text = "停止";
     this.toolStop.Click += new System.EventHandler(this.toolStop_Click);
     //
     // toolBack
     //
     this.toolBack.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolBack.Name = "toolBack";
     this.toolBack.Size = new System.Drawing.Size(33, 22);
     this.toolBack.Text = "后退";
     this.toolBack.Click += new System.EventHandler(this.toolBack_Click);
     //
     // toolStripSeparator4
     //
     this.toolStripSeparator4.Name = "toolStripSeparator4";
     this.toolStripSeparator4.Size = new System.Drawing.Size(6, 25);
     //
     // toolExport
     //
     this.toolExport.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolExcel});
     this.toolExport.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolExport.Name = "toolExport";
     this.toolExport.Size = new System.Drawing.Size(45, 22);
     this.toolExport.Text = "输出";
     //
     // toolExcel
     //
     this.toolExcel.Name = "toolExcel";
     this.toolExcel.Size = new System.Drawing.Size(136, 22);
     this.toolExcel.Text = "输出到Excel";
     this.toolExcel.Click += new System.EventHandler(this.toolExcel_Click);
     //
     // toolStripSeparator5
     //
     this.toolStripSeparator5.Name = "toolStripSeparator5";
     this.toolStripSeparator5.Size = new System.Drawing.Size(6, 25);
     //
     // tspbZoom
     //
     this.tspbZoom.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.tspbZoom.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.tool25,
     this.tool50,
     this.tool100,
     this.tool200,
     this.tool400,
     this.toolWhole,
     this.toolPageWidth});
     this.tspbZoom.Image = ((System.Drawing.Image)(resources.GetObject("tspbZoom.Image")));
     this.tspbZoom.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.tspbZoom.Name = "tspbZoom";
     this.tspbZoom.Size = new System.Drawing.Size(45, 22);
     this.tspbZoom.Text = "显示";
     //
     // tool25
     //
     this.tool25.Name = "tool25";
     this.tool25.Size = new System.Drawing.Size(130, 22);
     this.tool25.Text = "25%";
     this.tool25.Click += new System.EventHandler(this.tool25_Click);
     //
     // tool50
     //
     this.tool50.Name = "tool50";
     this.tool50.Size = new System.Drawing.Size(130, 22);
     this.tool50.Text = "50%";
     this.tool50.Click += new System.EventHandler(this.tool50_Click);
     //
     // tool100
     //
     this.tool100.Name = "tool100";
     this.tool100.Size = new System.Drawing.Size(130, 22);
     this.tool100.Text = "100%";
     this.tool100.Click += new System.EventHandler(this.tool100_Click);
     //
     // tool200
     //
     this.tool200.Name = "tool200";
     this.tool200.Size = new System.Drawing.Size(130, 22);
     this.tool200.Text = "200%";
     this.tool200.Click += new System.EventHandler(this.tool200_Click);
     //
     // tool400
     //
     this.tool400.Name = "tool400";
     this.tool400.Size = new System.Drawing.Size(130, 22);
     this.tool400.Text = "400%";
     this.tool400.Click += new System.EventHandler(this.tool400_Click);
     //
     // toolWhole
     //
     this.toolWhole.Name = "toolWhole";
     this.toolWhole.Size = new System.Drawing.Size(130, 22);
     this.toolWhole.Text = "&Whole Page";
     this.toolWhole.Click += new System.EventHandler(this.toolWhole_Click);
     //
     // toolPageWidth
     //
     this.toolPageWidth.Name = "toolPageWidth";
     this.toolPageWidth.Size = new System.Drawing.Size(130, 22);
     this.toolPageWidth.Text = "&Page Width";
     this.toolPageWidth.Click += new System.EventHandler(this.toolPageWidth_Click);
     //
     // tspbSearch
     //
     this.tspbSearch.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.tspbSearch.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.txtSearch,
     this.toolSearch,
     this.toolStripSeparator3,
     this.toolSearchNext});
     this.tspbSearch.Image = ((System.Drawing.Image)(resources.GetObject("tspbSearch.Image")));
     this.tspbSearch.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.tspbSearch.Name = "tspbSearch";
     this.tspbSearch.Size = new System.Drawing.Size(45, 22);
     this.tspbSearch.Text = "查找";
     //
     // txtSearch
     //
     this.txtSearch.Name = "txtSearch";
     this.txtSearch.Size = new System.Drawing.Size(100, 21);
     //
     // toolSearch
     //
     this.toolSearch.Name = "toolSearch";
     this.toolSearch.Size = new System.Drawing.Size(160, 22);
     this.toolSearch.Text = "查找";
     this.toolSearch.Click += new System.EventHandler(this.toolSearch_Click);
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(157, 6);
     //
     // toolSearchNext
     //
     this.toolSearchNext.Name = "toolSearchNext";
     this.toolSearchNext.Size = new System.Drawing.Size(160, 22);
     this.toolSearchNext.Text = "查找下一个";
     this.toolSearchNext.Click += new System.EventHandler(this.toolSearchNext_Click);
     //
     // tspbNavigation
     //
     this.tspbNavigation.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.tspbNavigation.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolFirst,
     this.toolLast,
     this.toolPrevious,
     this.toolNext,
     this.toolStripSeparator2,
     this.toolJump,
     this.txtJump});
     this.tspbNavigation.Image = ((System.Drawing.Image)(resources.GetObject("tspbNavigation.Image")));
     this.tspbNavigation.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.tspbNavigation.Name = "tspbNavigation";
     this.tspbNavigation.Size = new System.Drawing.Size(45, 22);
     this.tspbNavigation.Text = "导航";
     //
     // toolFirst
     //
     this.toolFirst.Name = "toolFirst";
     this.toolFirst.Size = new System.Drawing.Size(178, 22);
     this.toolFirst.Text = "首页";
     this.toolFirst.Click += new System.EventHandler(this.toolFirst_Click);
     //
     // toolLast
     //
     this.toolLast.Name = "toolLast";
     this.toolLast.Size = new System.Drawing.Size(178, 22);
     this.toolLast.Text = "末页";
     this.toolLast.Click += new System.EventHandler(this.toolLast_Click);
     //
     // toolPrevious
     //
     this.toolPrevious.Name = "toolPrevious";
     this.toolPrevious.Size = new System.Drawing.Size(178, 22);
     this.toolPrevious.Text = "上页";
     this.toolPrevious.Click += new System.EventHandler(this.toolPrevious_Click);
     //
     // toolNext
     //
     this.toolNext.Name = "toolNext";
     this.toolNext.Size = new System.Drawing.Size(178, 22);
     this.toolNext.Text = "下页";
     this.toolNext.Click += new System.EventHandler(this.toolNext_Click);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(175, 6);
     //
     // toolJump
     //
     this.toolJump.Name = "toolJump";
     this.toolJump.Size = new System.Drawing.Size(178, 22);
     this.toolJump.Text = "Jump to Specific:";
     this.toolJump.Click += new System.EventHandler(this.toolJump_Click);
     //
     // txtJump
     //
     this.txtJump.Name = "txtJump";
     this.txtJump.Size = new System.Drawing.Size(100, 21);
     //
     // toolStripButton1
     //
     this.toolStripButton1.Name = "toolStripButton1";
     this.toolStripButton1.Size = new System.Drawing.Size(6, 25);
     //
     // rptViewer
     //
     this.rptViewer.Dock = System.Windows.Forms.DockStyle.Fill;
     reportDataSource3.Name = "dsTest_Test";
     reportDataSource3.Value = this.TestBindingSource;
     this.rptViewer.LocalReport.DataSources.Add(reportDataSource3);
     this.rptViewer.LocalReport.ReportEmbeddedResource = "ReportProject.Report1.rdlc";
     this.rptViewer.Location = new System.Drawing.Point(0, 25);
     this.rptViewer.Name = "rptViewer";
     this.rptViewer.ShowToolBar = false;
     this.rptViewer.Size = new System.Drawing.Size(641, 486);
     this.rptViewer.TabIndex = 1;
     //
     // PreviewDialog
     //
     this.PreviewDialog.AutoScrollMargin = new System.Drawing.Size(0, 0);
     this.PreviewDialog.AutoScrollMinSize = new System.Drawing.Size(0, 0);
     this.PreviewDialog.ClientSize = new System.Drawing.Size(400, 300);
     this.PreviewDialog.Enabled = true;
     this.PreviewDialog.Icon = ((System.Drawing.Icon)(resources.GetObject("PreviewDialog.Icon")));
     this.PreviewDialog.Name = "printPreviewDialog1";
     this.PreviewDialog.Visible = false;
     //
     // ReportViewer
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(641, 511);
     this.Controls.Add(this.rptViewer);
     this.Controls.Add(this.dnReport);
     this.Name = "ReportViewer";
     this.Text = "报表打印";
     this.Load += new System.EventHandler(this.ReportViewer_Load);
     ((System.ComponentModel.ISupportInitialize)(this.TestBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dnReport)).EndInit();
     this.dnReport.ResumeLayout(false);
     this.dnReport.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <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(PlansForm));
     this.educationalDepartmentDataSet     = new DepartmentManager.EducationalDepartmentDataSet();
     this.plansBindingSource               = new System.Windows.Forms.BindingSource(this.components);
     this.plansTableAdapter                = new DepartmentManager.EducationalDepartmentDataSetTableAdapters.PlansTableAdapter();
     this.tableAdapterManager              = new DepartmentManager.EducationalDepartmentDataSetTableAdapters.TableAdapterManager();
     this.plansBindingNavigator            = new System.Windows.Forms.BindingNavigator(this.components);
     this.bindingNavigatorAddNewItem       = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorCountItem        = new System.Windows.Forms.ToolStripLabel();
     this.bindingNavigatorMoveFirstItem    = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMovePreviousItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator        = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorPositionItem     = new System.Windows.Forms.ToolStripTextBox();
     this.bindingNavigatorSeparator1       = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorMoveNextItem     = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMoveLastItem     = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator2       = new System.Windows.Forms.ToolStripSeparator();
     this.plansBindingNavigatorSaveItem    = new System.Windows.Forms.ToolStripButton();
     this.plansDataGridView                = new System.Windows.Forms.DataGridView();
     this.dataGridViewTextBoxColumn2       = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn3       = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn1       = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.bindingNavigatorDeleteItem       = new System.Windows.Forms.ToolStripButton();
     ((System.ComponentModel.ISupportInitialize)(this.educationalDepartmentDataSet)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.plansBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.plansBindingNavigator)).BeginInit();
     this.plansBindingNavigator.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.plansDataGridView)).BeginInit();
     this.SuspendLayout();
     //
     // educationalDepartmentDataSet
     //
     this.educationalDepartmentDataSet.DataSetName             = "EducationalDepartmentDataSet";
     this.educationalDepartmentDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // plansBindingSource
     //
     this.plansBindingSource.DataMember = "Plans";
     this.plansBindingSource.DataSource = this.educationalDepartmentDataSet;
     //
     // plansTableAdapter
     //
     this.plansTableAdapter.ClearBeforeFill = true;
     //
     // tableAdapterManager
     //
     this.tableAdapterManager.BackupDataSetBeforeUpdate = false;
     this.tableAdapterManager.GroupsTableAdapter        = null;
     this.tableAdapterManager.MarkRecordsTableAdapter   = null;
     this.tableAdapterManager.PlanContentTableAdapter   = null;
     this.tableAdapterManager.PlansTableAdapter         = this.plansTableAdapter;
     this.tableAdapterManager.StudentsTableAdapter      = null;
     this.tableAdapterManager.SubjectsTableAdapter      = null;
     this.tableAdapterManager.UpdateOrder = DepartmentManager.EducationalDepartmentDataSetTableAdapters.TableAdapterManager.UpdateOrderOption.InsertUpdateDelete;
     //
     // plansBindingNavigator
     //
     this.plansBindingNavigator.AddNewItem    = this.bindingNavigatorAddNewItem;
     this.plansBindingNavigator.BindingSource = this.plansBindingSource;
     this.plansBindingNavigator.CountItem     = this.bindingNavigatorCountItem;
     this.plansBindingNavigator.DeleteItem    = this.bindingNavigatorDeleteItem;
     this.plansBindingNavigator.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.bindingNavigatorMoveFirstItem,
         this.bindingNavigatorMovePreviousItem,
         this.bindingNavigatorSeparator,
         this.bindingNavigatorPositionItem,
         this.bindingNavigatorCountItem,
         this.bindingNavigatorSeparator1,
         this.bindingNavigatorMoveNextItem,
         this.bindingNavigatorMoveLastItem,
         this.bindingNavigatorSeparator2,
         this.bindingNavigatorAddNewItem,
         this.bindingNavigatorDeleteItem,
         this.plansBindingNavigatorSaveItem
     });
     this.plansBindingNavigator.Location         = new System.Drawing.Point(0, 0);
     this.plansBindingNavigator.MoveFirstItem    = this.bindingNavigatorMoveFirstItem;
     this.plansBindingNavigator.MoveLastItem     = this.bindingNavigatorMoveLastItem;
     this.plansBindingNavigator.MoveNextItem     = this.bindingNavigatorMoveNextItem;
     this.plansBindingNavigator.MovePreviousItem = this.bindingNavigatorMovePreviousItem;
     this.plansBindingNavigator.Name             = "plansBindingNavigator";
     this.plansBindingNavigator.PositionItem     = this.bindingNavigatorPositionItem;
     this.plansBindingNavigator.Size             = new System.Drawing.Size(515, 25);
     this.plansBindingNavigator.TabIndex         = 0;
     this.plansBindingNavigator.Text             = "bindingNavigator1";
     //
     // bindingNavigatorAddNewItem
     //
     this.bindingNavigatorAddNewItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorAddNewItem.Image        = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorAddNewItem.Image")));
     this.bindingNavigatorAddNewItem.Name         = "bindingNavigatorAddNewItem";
     this.bindingNavigatorAddNewItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorAddNewItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorAddNewItem.Text = "Add new";
     //
     // bindingNavigatorCountItem
     //
     this.bindingNavigatorCountItem.Name        = "bindingNavigatorCountItem";
     this.bindingNavigatorCountItem.Size        = new System.Drawing.Size(35, 22);
     this.bindingNavigatorCountItem.Text        = "of {0}";
     this.bindingNavigatorCountItem.ToolTipText = "Total number of items";
     //
     // bindingNavigatorMoveFirstItem
     //
     this.bindingNavigatorMoveFirstItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveFirstItem.Image        = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveFirstItem.Image")));
     this.bindingNavigatorMoveFirstItem.Name         = "bindingNavigatorMoveFirstItem";
     this.bindingNavigatorMoveFirstItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveFirstItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveFirstItem.Text = "Move first";
     //
     // bindingNavigatorMovePreviousItem
     //
     this.bindingNavigatorMovePreviousItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMovePreviousItem.Image        = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMovePreviousItem.Image")));
     this.bindingNavigatorMovePreviousItem.Name         = "bindingNavigatorMovePreviousItem";
     this.bindingNavigatorMovePreviousItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMovePreviousItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMovePreviousItem.Text = "Move previous";
     //
     // bindingNavigatorSeparator
     //
     this.bindingNavigatorSeparator.Name = "bindingNavigatorSeparator";
     this.bindingNavigatorSeparator.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorPositionItem
     //
     this.bindingNavigatorPositionItem.AccessibleName = "Position";
     this.bindingNavigatorPositionItem.AutoSize       = false;
     this.bindingNavigatorPositionItem.Name           = "bindingNavigatorPositionItem";
     this.bindingNavigatorPositionItem.Size           = new System.Drawing.Size(50, 23);
     this.bindingNavigatorPositionItem.Text           = "0";
     this.bindingNavigatorPositionItem.ToolTipText    = "Current position";
     //
     // bindingNavigatorSeparator1
     //
     this.bindingNavigatorSeparator1.Name = "bindingNavigatorSeparator1";
     this.bindingNavigatorSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorMoveNextItem
     //
     this.bindingNavigatorMoveNextItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveNextItem.Image        = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveNextItem.Image")));
     this.bindingNavigatorMoveNextItem.Name         = "bindingNavigatorMoveNextItem";
     this.bindingNavigatorMoveNextItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveNextItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveNextItem.Text = "Move next";
     //
     // bindingNavigatorMoveLastItem
     //
     this.bindingNavigatorMoveLastItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveLastItem.Image        = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveLastItem.Image")));
     this.bindingNavigatorMoveLastItem.Name         = "bindingNavigatorMoveLastItem";
     this.bindingNavigatorMoveLastItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveLastItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveLastItem.Text = "Move last";
     //
     // bindingNavigatorSeparator2
     //
     this.bindingNavigatorSeparator2.Name = "bindingNavigatorSeparator2";
     this.bindingNavigatorSeparator2.Size = new System.Drawing.Size(6, 25);
     //
     // plansBindingNavigatorSaveItem
     //
     this.plansBindingNavigatorSaveItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.plansBindingNavigatorSaveItem.Image        = ((System.Drawing.Image)(resources.GetObject("plansBindingNavigatorSaveItem.Image")));
     this.plansBindingNavigatorSaveItem.Name         = "plansBindingNavigatorSaveItem";
     this.plansBindingNavigatorSaveItem.Size         = new System.Drawing.Size(23, 22);
     this.plansBindingNavigatorSaveItem.Text         = "Save Data";
     this.plansBindingNavigatorSaveItem.Click       += new System.EventHandler(this.PlansBindingNavigatorSaveItem_Click);
     //
     // plansDataGridView
     //
     this.plansDataGridView.AutoGenerateColumns         = false;
     this.plansDataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.plansDataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
         this.dataGridViewTextBoxColumn2,
         this.dataGridViewTextBoxColumn3,
         this.dataGridViewTextBoxColumn1
     });
     this.plansDataGridView.DataSource = this.plansBindingSource;
     this.plansDataGridView.Location   = new System.Drawing.Point(12, 28);
     this.plansDataGridView.Name       = "plansDataGridView";
     this.plansDataGridView.Size       = new System.Drawing.Size(491, 294);
     this.plansDataGridView.TabIndex   = 1;
     this.plansDataGridView.DataError += new System.Windows.Forms.DataGridViewDataErrorEventHandler(this.PlansDataGridView_DataError);
     //
     // dataGridViewTextBoxColumn2
     //
     this.dataGridViewTextBoxColumn2.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this.dataGridViewTextBoxColumn2.DataPropertyName = "Speciality";
     this.dataGridViewTextBoxColumn2.HeaderText       = "Специальность";
     this.dataGridViewTextBoxColumn2.Name             = "dataGridViewTextBoxColumn2";
     //
     // dataGridViewTextBoxColumn3
     //
     this.dataGridViewTextBoxColumn3.DataPropertyName = "Year";
     this.dataGridViewTextBoxColumn3.HeaderText       = "Год";
     this.dataGridViewTextBoxColumn3.Name             = "dataGridViewTextBoxColumn3";
     this.dataGridViewTextBoxColumn3.Width            = 65;
     //
     // dataGridViewTextBoxColumn1
     //
     this.dataGridViewTextBoxColumn1.DataPropertyName = "Id";
     this.dataGridViewTextBoxColumn1.HeaderText       = "Id";
     this.dataGridViewTextBoxColumn1.Name             = "dataGridViewTextBoxColumn1";
     this.dataGridViewTextBoxColumn1.ReadOnly         = true;
     this.dataGridViewTextBoxColumn1.Visible          = false;
     //
     // bindingNavigatorDeleteItem
     //
     this.bindingNavigatorDeleteItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorDeleteItem.Image        = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorDeleteItem.Image")));
     this.bindingNavigatorDeleteItem.Name         = "bindingNavigatorDeleteItem";
     this.bindingNavigatorDeleteItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorDeleteItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorDeleteItem.Text = "Delete";
     //
     // PlansForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(515, 334);
     this.Controls.Add(this.plansDataGridView);
     this.Controls.Add(this.plansBindingNavigator);
     this.Name  = "PlansForm";
     this.Text  = "Специальности";
     this.Load += new System.EventHandler(this.PlansForm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.educationalDepartmentDataSet)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.plansBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.plansBindingNavigator)).EndInit();
     this.plansBindingNavigator.ResumeLayout(false);
     this.plansBindingNavigator.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.plansDataGridView)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Beispiel #22
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.TxtStoSearch = new System.Windows.Forms.ToolStripTextBox();
     this.BtStoSearch = new System.Windows.Forms.ToolStripButton();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.BirthDay = new System.Windows.Forms.DateTimePicker();
     this.label4 = new System.Windows.Forms.Label();
     this.TxtStoEmail = new System.Windows.Forms.TextBox();
     this.TxtStoPhone = new System.Windows.Forms.TextBox();
     this.TxtStoAddress = new System.Windows.Forms.TextBox();
     this.TxtStoName = new System.Windows.Forms.TextBox();
     this.label5 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.DgvSto = new System.Windows.Forms.DataGridView();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.toolStrip2 = new System.Windows.Forms.ToolStrip();
     this.BtStoCreate = new System.Windows.Forms.ToolStripButton();
     this.BtStoEdit = new System.Windows.Forms.ToolStripButton();
     this.BtStoDelete = new System.Windows.Forms.ToolStripButton();
     this.BtSupBack = new System.Windows.Forms.ToolStripButton();
     this.BtStoFresh = new System.Windows.Forms.ToolStripButton();
     this.CmbSto = new System.Windows.Forms.ComboBox();
     this.toolStrip1.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DgvSto)).BeginInit();
     this.groupBox3.SuspendLayout();
     this.toolStrip2.SuspendLayout();
     this.SuspendLayout();
     //
     // toolStrip1
     //
     this.toolStrip1.AutoSize = false;
     this.toolStrip1.ImageScalingSize = new System.Drawing.Size(20, 20);
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.TxtStoSearch,
     this.BtStoSearch});
     this.toolStrip1.Location = new System.Drawing.Point(0, 0);
     this.toolStrip1.Margin = new System.Windows.Forms.Padding(100, 0, 0, 0);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.Size = new System.Drawing.Size(920, 25);
     this.toolStrip1.TabIndex = 5;
     this.toolStrip1.Text = "toolStrip1";
     //
     // TxtStoSearch
     //
     this.TxtStoSearch.BackColor = System.Drawing.SystemColors.InactiveBorder;
     this.TxtStoSearch.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.TxtStoSearch.Margin = new System.Windows.Forms.Padding(380, 0, 1, 0);
     this.TxtStoSearch.Name = "TxtStoSearch";
     this.TxtStoSearch.Size = new System.Drawing.Size(100, 25);
     this.TxtStoSearch.Text = "Fill information";
     this.TxtStoSearch.Click += new System.EventHandler(this.TxtStoSearch_Click);
     //
     // BtStoSearch
     //
     this.BtStoSearch.ForeColor = System.Drawing.SystemColors.ControlText;
     this.BtStoSearch.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.BtStoSearch.Name = "BtStoSearch";
     this.BtStoSearch.Size = new System.Drawing.Size(46, 22);
     this.BtStoSearch.Text = "Search";
     this.BtStoSearch.Click += new System.EventHandler(this.BtStoSearch_Click);
     //
     // groupBox1
     //
     this.groupBox1.BackColor = System.Drawing.SystemColors.GradientActiveCaption;
     this.groupBox1.Controls.Add(this.BirthDay);
     this.groupBox1.Controls.Add(this.label4);
     this.groupBox1.Controls.Add(this.TxtStoEmail);
     this.groupBox1.Controls.Add(this.TxtStoPhone);
     this.groupBox1.Controls.Add(this.TxtStoAddress);
     this.groupBox1.Controls.Add(this.TxtStoName);
     this.groupBox1.Controls.Add(this.label5);
     this.groupBox1.Controls.Add(this.label3);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     this.groupBox1.Location = new System.Drawing.Point(587, 92);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(327, 251);
     this.groupBox1.TabIndex = 6;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Detail of Storekeeper";
     //
     // BirthDay
     //
     this.BirthDay.CustomFormat = " dd / MM / yyy";
     this.BirthDay.Enabled = false;
     this.BirthDay.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.BirthDay.Location = new System.Drawing.Point(132, 199);
     this.BirthDay.Name = "BirthDay";
     this.BirthDay.Size = new System.Drawing.Size(135, 22);
     this.BirthDay.TabIndex = 14;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(18, 199);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(57, 16);
     this.label4.TabIndex = 13;
     this.label4.Text = "Birthday";
     //
     // TxtStoEmail
     //
     this.TxtStoEmail.Enabled = false;
     this.TxtStoEmail.Location = new System.Drawing.Point(132, 163);
     this.TxtStoEmail.Name = "TxtStoEmail";
     this.TxtStoEmail.Size = new System.Drawing.Size(135, 22);
     this.TxtStoEmail.TabIndex = 12;
     //
     // TxtStoPhone
     //
     this.TxtStoPhone.Enabled = false;
     this.TxtStoPhone.Location = new System.Drawing.Point(132, 132);
     this.TxtStoPhone.Name = "TxtStoPhone";
     this.TxtStoPhone.Size = new System.Drawing.Size(135, 22);
     this.TxtStoPhone.TabIndex = 8;
     //
     // TxtStoAddress
     //
     this.TxtStoAddress.Enabled = false;
     this.TxtStoAddress.Location = new System.Drawing.Point(132, 91);
     this.TxtStoAddress.Name = "TxtStoAddress";
     this.TxtStoAddress.Size = new System.Drawing.Size(123, 22);
     this.TxtStoAddress.TabIndex = 7;
     this.TxtStoAddress.TextChanged += new System.EventHandler(this.TxtStoAddress_TextChanged);
     //
     // TxtStoName
     //
     this.TxtStoName.Enabled = false;
     this.TxtStoName.Location = new System.Drawing.Point(132, 39);
     this.TxtStoName.Name = "TxtStoName";
     this.TxtStoName.Size = new System.Drawing.Size(123, 22);
     this.TxtStoName.TabIndex = 6;
     this.TxtStoName.TextChanged += new System.EventHandler(this.TxtStoName_TextChanged);
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(18, 42);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(45, 16);
     this.label5.TabIndex = 4;
     this.label5.Text = "Name";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(18, 132);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(98, 16);
     this.label3.TabIndex = 2;
     this.label3.Text = "Phone Number";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(18, 166);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(42, 16);
     this.label2.TabIndex = 1;
     this.label2.Text = "Email";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(18, 94);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(59, 16);
     this.label1.TabIndex = 0;
     this.label1.Text = "Address";
     //
     // groupBox2
     //
     this.groupBox2.BackColor = System.Drawing.SystemColors.GradientActiveCaption;
     this.groupBox2.Controls.Add(this.DgvSto);
     this.groupBox2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     this.groupBox2.Location = new System.Drawing.Point(8, 92);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(560, 251);
     this.groupBox2.TabIndex = 8;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "List of Storekeepers";
     //
     // DgvSto
     //
     this.DgvSto.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.DgvSto.Location = new System.Drawing.Point(21, 32);
     this.DgvSto.Name = "DgvSto";
     this.DgvSto.Size = new System.Drawing.Size(532, 204);
     this.DgvSto.TabIndex = 0;
     this.DgvSto.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.DgvSto_CellClick);
     //
     // groupBox3
     //
     this.groupBox3.BackColor = System.Drawing.SystemColors.GradientActiveCaption;
     this.groupBox3.Controls.Add(this.toolStrip2);
     this.groupBox3.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     this.groupBox3.Location = new System.Drawing.Point(8, 30);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Size = new System.Drawing.Size(906, 56);
     this.groupBox3.TabIndex = 9;
     this.groupBox3.TabStop = false;
     this.groupBox3.Text = "Function";
     //
     // toolStrip2
     //
     this.toolStrip2.ImageScalingSize = new System.Drawing.Size(20, 20);
     this.toolStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.BtStoCreate,
     this.BtStoEdit,
     this.BtStoDelete,
     this.BtSupBack,
     this.BtStoFresh});
     this.toolStrip2.Location = new System.Drawing.Point(3, 18);
     this.toolStrip2.Name = "toolStrip2";
     this.toolStrip2.Size = new System.Drawing.Size(900, 25);
     this.toolStrip2.TabIndex = 0;
     this.toolStrip2.Text = "toolStrip2";
     //
     // BtStoCreate
     //
     this.BtStoCreate.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     this.BtStoCreate.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.BtStoCreate.Margin = new System.Windows.Forms.Padding(20, 1, 0, 2);
     this.BtStoCreate.Name = "BtStoCreate";
     this.BtStoCreate.Size = new System.Drawing.Size(50, 22);
     this.BtStoCreate.Text = "Create";
     this.BtStoCreate.Visible = false;
     this.BtStoCreate.Click += new System.EventHandler(this.BtStoCreate_Click);
     //
     // BtStoEdit
     //
     this.BtStoEdit.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     this.BtStoEdit.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.BtStoEdit.Margin = new System.Windows.Forms.Padding(50, 1, 0, 2);
     this.BtStoEdit.Name = "BtStoEdit";
     this.BtStoEdit.Size = new System.Drawing.Size(34, 22);
     this.BtStoEdit.Text = "Edit";
     this.BtStoEdit.Visible = false;
     this.BtStoEdit.Click += new System.EventHandler(this.BtStoEdit_Click);
     //
     // BtStoDelete
     //
     this.BtStoDelete.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.BtStoDelete.Margin = new System.Windows.Forms.Padding(50, 1, 0, 2);
     this.BtStoDelete.Name = "BtStoDelete";
     this.BtStoDelete.Size = new System.Drawing.Size(44, 22);
     this.BtStoDelete.Text = "Delete";
     this.BtStoDelete.Visible = false;
     this.BtStoDelete.Click += new System.EventHandler(this.BtStoDelete_Click);
     //
     // BtSupBack
     //
     this.BtSupBack.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.BtSupBack.Margin = new System.Windows.Forms.Padding(50, 1, 0, 2);
     this.BtSupBack.Name = "BtSupBack";
     this.BtSupBack.Size = new System.Drawing.Size(36, 22);
     this.BtSupBack.Text = "Back";
     this.BtSupBack.Click += new System.EventHandler(this.BtSupBack_Click);
     //
     // BtStoFresh
     //
     this.BtStoFresh.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.BtStoFresh.Margin = new System.Windows.Forms.Padding(50, 1, 0, 2);
     this.BtStoFresh.Name = "BtStoFresh";
     this.BtStoFresh.Size = new System.Drawing.Size(39, 22);
     this.BtStoFresh.Text = "Fresh";
     this.BtStoFresh.Visible = false;
     this.BtStoFresh.Click += new System.EventHandler(this.BtStoFresh_Click);
     //
     // CmbSto
     //
     this.CmbSto.FormattingEnabled = true;
     this.CmbSto.Items.AddRange(new object[] {
     "ID of Storekeeper",
     "Name of Storekeeper"});
     this.CmbSto.Location = new System.Drawing.Point(257, 0);
     this.CmbSto.Name = "CmbSto";
     this.CmbSto.Size = new System.Drawing.Size(121, 21);
     this.CmbSto.TabIndex = 10;
     //
     // FormStorekeepers
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.SystemColors.Highlight;
     this.ClientSize = new System.Drawing.Size(920, 355);
     this.Controls.Add(this.CmbSto);
     this.Controls.Add(this.groupBox3);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.toolStrip1);
     this.Name = "FormStorekeepers";
     this.Text = "Storekeepers";
     this.Load += new System.EventHandler(this.FormStorekeepers_Load);
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.groupBox2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.DgvSto)).EndInit();
     this.groupBox3.ResumeLayout(false);
     this.groupBox3.PerformLayout();
     this.toolStrip2.ResumeLayout(false);
     this.toolStrip2.PerformLayout();
     this.ResumeLayout(false);
 }
 /// <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(SoilAggregateToTown));
     this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
     this.toolStripLabel2 = new System.Windows.Forms.ToolStripLabel();
     this.lblPageCount = new System.Windows.Forms.ToolStripLabel();
     this.txtCurrentPage = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
     this.bindingNavigatorSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorMoveLastItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMoveNextItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorPositionItem = new System.Windows.Forms.ToolStripTextBox();
     this.bindingNavigatorSeparator = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMovePreviousItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorCountItem = new System.Windows.Forms.ToolStripLabel();
     this.bindingNavigator1 = new System.Windows.Forms.BindingNavigator(this.components);
     this.bindingNavigatorMoveFirstItem = new System.Windows.Forms.ToolStripButton();
     this.lbl_tablename = new System.Windows.Forms.Label();
     this.lbl_NUTRIENT_CODE = new System.Windows.Forms.Label();
     this.btn_calculation = new System.Windows.Forms.Button();
     this.dataGridView1 = new System.Windows.Forms.DataGridView();
     this.btn_Input = new System.Windows.Forms.Button();
     this.label5 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.dT_maize_s = new System.Windows.Forms.DateTimePicker();
     this.dT_maize_e = new System.Windows.Forms.DateTimePicker();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingNavigator1)).BeginInit();
     this.bindingNavigator1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
     this.SuspendLayout();
     //
     // toolStripLabel2
     //
     this.toolStripLabel2.Name = "toolStripLabel2";
     this.toolStripLabel2.Size = new System.Drawing.Size(44, 22);
     this.toolStripLabel2.Text = "下一页";
     //
     // lblPageCount
     //
     this.lblPageCount.Name = "lblPageCount";
     this.lblPageCount.Size = new System.Drawing.Size(0, 22);
     //
     // txtCurrentPage
     //
     this.txtCurrentPage.Name = "txtCurrentPage";
     this.txtCurrentPage.Size = new System.Drawing.Size(40, 25);
     //
     // toolStripLabel1
     //
     this.toolStripLabel1.Name = "toolStripLabel1";
     this.toolStripLabel1.Size = new System.Drawing.Size(44, 22);
     this.toolStripLabel1.Text = "上一页";
     //
     // bindingNavigatorSeparator2
     //
     this.bindingNavigatorSeparator2.Name = "bindingNavigatorSeparator2";
     this.bindingNavigatorSeparator2.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorMoveLastItem
     //
     this.bindingNavigatorMoveLastItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveLastItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveLastItem.Image")));
     this.bindingNavigatorMoveLastItem.Name = "bindingNavigatorMoveLastItem";
     this.bindingNavigatorMoveLastItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveLastItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveLastItem.Text = "移到最后一条记录";
     //
     // bindingNavigatorMoveNextItem
     //
     this.bindingNavigatorMoveNextItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveNextItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveNextItem.Image")));
     this.bindingNavigatorMoveNextItem.Name = "bindingNavigatorMoveNextItem";
     this.bindingNavigatorMoveNextItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveNextItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveNextItem.Text = "移到下一条记录";
     //
     // bindingNavigatorSeparator1
     //
     this.bindingNavigatorSeparator1.Name = "bindingNavigatorSeparator1";
     this.bindingNavigatorSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorPositionItem
     //
     this.bindingNavigatorPositionItem.AccessibleName = "位置";
     this.bindingNavigatorPositionItem.AutoSize = false;
     this.bindingNavigatorPositionItem.Name = "bindingNavigatorPositionItem";
     this.bindingNavigatorPositionItem.Size = new System.Drawing.Size(50, 23);
     this.bindingNavigatorPositionItem.Text = "0";
     this.bindingNavigatorPositionItem.ToolTipText = "当前位置";
     //
     // bindingNavigatorSeparator
     //
     this.bindingNavigatorSeparator.Name = "bindingNavigatorSeparator";
     this.bindingNavigatorSeparator.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripButton1
     //
     this.toolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton1.Image")));
     this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton1.Name = "toolStripButton1";
     this.toolStripButton1.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton1.Text = "toolStripButton1";
     this.toolStripButton1.Click += new System.EventHandler(this.toolStripButton1_Click);
     //
     // bindingNavigatorMovePreviousItem
     //
     this.bindingNavigatorMovePreviousItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMovePreviousItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMovePreviousItem.Image")));
     this.bindingNavigatorMovePreviousItem.Name = "bindingNavigatorMovePreviousItem";
     this.bindingNavigatorMovePreviousItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMovePreviousItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMovePreviousItem.Text = "移到上一条记录";
     //
     // bindingNavigatorCountItem
     //
     this.bindingNavigatorCountItem.Name = "bindingNavigatorCountItem";
     this.bindingNavigatorCountItem.Size = new System.Drawing.Size(32, 22);
     this.bindingNavigatorCountItem.Text = "/ {0}";
     this.bindingNavigatorCountItem.ToolTipText = "总项数";
     //
     // bindingNavigator1
     //
     this.bindingNavigator1.AddNewItem = null;
     this.bindingNavigator1.CountItem = this.bindingNavigatorCountItem;
     this.bindingNavigator1.DeleteItem = null;
     this.bindingNavigator1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.bindingNavigator1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.bindingNavigatorMoveFirstItem,
     this.bindingNavigatorMovePreviousItem,
     this.bindingNavigatorSeparator,
     this.bindingNavigatorPositionItem,
     this.bindingNavigatorCountItem,
     this.bindingNavigatorSeparator1,
     this.bindingNavigatorMoveNextItem,
     this.bindingNavigatorMoveLastItem,
     this.bindingNavigatorSeparator2,
     this.toolStripLabel1,
     this.txtCurrentPage,
     this.lblPageCount,
     this.toolStripLabel2,
     this.toolStripButton1});
     this.bindingNavigator1.Location = new System.Drawing.Point(0, 414);
     this.bindingNavigator1.MoveFirstItem = this.bindingNavigatorMoveFirstItem;
     this.bindingNavigator1.MoveLastItem = this.bindingNavigatorMoveLastItem;
     this.bindingNavigator1.MoveNextItem = this.bindingNavigatorMoveNextItem;
     this.bindingNavigator1.MovePreviousItem = this.bindingNavigatorMovePreviousItem;
     this.bindingNavigator1.Name = "bindingNavigator1";
     this.bindingNavigator1.PositionItem = this.bindingNavigatorPositionItem;
     this.bindingNavigator1.Size = new System.Drawing.Size(777, 25);
     this.bindingNavigator1.TabIndex = 97;
     this.bindingNavigator1.Text = "bindingNavigator1";
     this.bindingNavigator1.ItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.bindingNavigator1_ItemClicked);
     //
     // bindingNavigatorMoveFirstItem
     //
     this.bindingNavigatorMoveFirstItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveFirstItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveFirstItem.Image")));
     this.bindingNavigatorMoveFirstItem.Name = "bindingNavigatorMoveFirstItem";
     this.bindingNavigatorMoveFirstItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveFirstItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveFirstItem.Text = "移到第一条记录";
     //
     // lbl_tablename
     //
     this.lbl_tablename.AutoSize = true;
     this.lbl_tablename.Location = new System.Drawing.Point(83, 55);
     this.lbl_tablename.Name = "lbl_tablename";
     this.lbl_tablename.Size = new System.Drawing.Size(41, 12);
     this.lbl_tablename.TabIndex = 96;
     this.lbl_tablename.Text = "label1";
     this.lbl_tablename.Visible = false;
     //
     // lbl_NUTRIENT_CODE
     //
     this.lbl_NUTRIENT_CODE.AutoSize = true;
     this.lbl_NUTRIENT_CODE.Location = new System.Drawing.Point(457, 9);
     this.lbl_NUTRIENT_CODE.Name = "lbl_NUTRIENT_CODE";
     this.lbl_NUTRIENT_CODE.Size = new System.Drawing.Size(53, 12);
     this.lbl_NUTRIENT_CODE.TabIndex = 95;
     this.lbl_NUTRIENT_CODE.Text = "养分类型";
     this.lbl_NUTRIENT_CODE.Visible = false;
     //
     // btn_calculation
     //
     this.btn_calculation.Location = new System.Drawing.Point(531, 9);
     this.btn_calculation.Name = "btn_calculation";
     this.btn_calculation.Size = new System.Drawing.Size(75, 23);
     this.btn_calculation.TabIndex = 94;
     this.btn_calculation.Text = "汇总";
     this.btn_calculation.UseVisualStyleBackColor = true;
     this.btn_calculation.Click += new System.EventHandler(this.btn_calculation_Click);
     //
     // dataGridView1
     //
     this.dataGridView1.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridView1.Location = new System.Drawing.Point(27, 40);
     this.dataGridView1.Name = "dataGridView1";
     this.dataGridView1.RowTemplate.Height = 23;
     this.dataGridView1.Size = new System.Drawing.Size(719, 358);
     this.dataGridView1.TabIndex = 93;
     //
     // btn_Input
     //
     this.btn_Input.Location = new System.Drawing.Point(652, 9);
     this.btn_Input.Name = "btn_Input";
     this.btn_Input.Size = new System.Drawing.Size(75, 23);
     this.btn_Input.TabIndex = 92;
     this.btn_Input.Text = "入库";
     this.btn_Input.UseVisualStyleBackColor = true;
     this.btn_Input.Click += new System.EventHandler(this.btn_Input_Click);
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(228, 14);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(29, 12);
     this.label5.TabIndex = 90;
     this.label5.Text = "截止";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(9, 9);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(29, 12);
     this.label4.TabIndex = 89;
     this.label4.Text = "起始";
     //
     // dT_maize_s
     //
     this.dT_maize_s.Location = new System.Drawing.Point(44, 10);
     this.dT_maize_s.Name = "dT_maize_s";
     this.dT_maize_s.Size = new System.Drawing.Size(170, 21);
     this.dT_maize_s.TabIndex = 88;
     this.dT_maize_s.Value = new System.DateTime(2010, 4, 30, 0, 0, 0, 0);
     //
     // dT_maize_e
     //
     this.dT_maize_e.Location = new System.Drawing.Point(268, 10);
     this.dT_maize_e.Name = "dT_maize_e";
     this.dT_maize_e.Size = new System.Drawing.Size(170, 21);
     this.dT_maize_e.TabIndex = 91;
     this.dT_maize_e.Value = new System.DateTime(2010, 9, 1, 0, 0, 0, 0);
     //
     // SoilAggregateToTown
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(777, 439);
     this.Controls.Add(this.bindingNavigator1);
     this.Controls.Add(this.lbl_tablename);
     this.Controls.Add(this.lbl_NUTRIENT_CODE);
     this.Controls.Add(this.btn_calculation);
     this.Controls.Add(this.dataGridView1);
     this.Controls.Add(this.btn_Input);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.dT_maize_s);
     this.Controls.Add(this.dT_maize_e);
     this.Name = "SoilAggregateToTown";
     this.Text = "汇总到作业区";
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingNavigator1)).EndInit();
     this.bindingNavigator1.ResumeLayout(false);
     this.bindingNavigator1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Beispiel #24
0
 /// <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(StudentsForm));
     this.educationalDepartmentDataSet     = new DepartmentManager.EducationalDepartmentDataSet();
     this.groupsBindingSource              = new System.Windows.Forms.BindingSource(this.components);
     this.groupsTableAdapter               = new DepartmentManager.EducationalDepartmentDataSetTableAdapters.GroupsTableAdapter();
     this.tableAdapterManager              = new DepartmentManager.EducationalDepartmentDataSetTableAdapters.TableAdapterManager();
     this.studentsTableAdapter             = new DepartmentManager.EducationalDepartmentDataSetTableAdapters.StudentsTableAdapter();
     this.groupsBindingNavigator           = new System.Windows.Forms.BindingNavigator(this.components);
     this.bindingNavigatorAddNewItem       = new System.Windows.Forms.ToolStripButton();
     this.studentsBindingSource            = new System.Windows.Forms.BindingSource(this.components);
     this.bindingNavigatorCountItem        = new System.Windows.Forms.ToolStripLabel();
     this.bindingNavigatorDeleteItem       = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMoveFirstItem    = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMovePreviousItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator        = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorPositionItem     = new System.Windows.Forms.ToolStripTextBox();
     this.bindingNavigatorSeparator1       = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorMoveNextItem     = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMoveLastItem     = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator2       = new System.Windows.Forms.ToolStripSeparator();
     this.groupsBindingNavigatorSaveItem   = new System.Windows.Forms.ToolStripButton();
     this.studentsDataGridView             = new System.Windows.Forms.DataGridView();
     this.dataGridViewTextBoxColumn2       = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn3       = new System.Windows.Forms.DataGridViewComboBoxColumn();
     this.groupsBindingSource1             = new System.Windows.Forms.BindingSource(this.components);
     this.dataGridViewTextBoxColumn1       = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.plansBindingSource               = new System.Windows.Forms.BindingSource(this.components);
     this.plansTableAdapter    = new DepartmentManager.EducationalDepartmentDataSetTableAdapters.PlansTableAdapter();
     this.groupsBindingSource2 = new System.Windows.Forms.BindingSource(this.components);
     this.groupsComboBox1      = new System.Windows.Forms.ComboBox();
     this.label3                     = new System.Windows.Forms.Label();
     this.plansDataGridView          = new System.Windows.Forms.DataGridView();
     this.dataGridViewTextBoxColumn5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn6 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     ((System.ComponentModel.ISupportInitialize)(this.educationalDepartmentDataSet)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupsBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupsBindingNavigator)).BeginInit();
     this.groupsBindingNavigator.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.studentsBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.studentsDataGridView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupsBindingSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.plansBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupsBindingSource2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.plansDataGridView)).BeginInit();
     this.SuspendLayout();
     //
     // educationalDepartmentDataSet
     //
     this.educationalDepartmentDataSet.DataSetName             = "EducationalDepartmentDataSet";
     this.educationalDepartmentDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // groupsBindingSource
     //
     this.groupsBindingSource.DataMember = "Groups";
     this.groupsBindingSource.DataSource = this.educationalDepartmentDataSet;
     //
     // groupsTableAdapter
     //
     this.groupsTableAdapter.ClearBeforeFill = true;
     //
     // tableAdapterManager
     //
     this.tableAdapterManager.BackupDataSetBeforeUpdate = false;
     this.tableAdapterManager.GroupsTableAdapter        = this.groupsTableAdapter;
     this.tableAdapterManager.MarkRecordsTableAdapter   = null;
     this.tableAdapterManager.PlanContentTableAdapter   = null;
     this.tableAdapterManager.PlansTableAdapter         = null;
     this.tableAdapterManager.StudentsTableAdapter      = this.studentsTableAdapter;
     this.tableAdapterManager.SubjectsTableAdapter      = null;
     this.tableAdapterManager.UpdateOrder = DepartmentManager.EducationalDepartmentDataSetTableAdapters.TableAdapterManager.UpdateOrderOption.InsertUpdateDelete;
     //
     // studentsTableAdapter
     //
     this.studentsTableAdapter.ClearBeforeFill = true;
     //
     // groupsBindingNavigator
     //
     this.groupsBindingNavigator.AddNewItem    = this.bindingNavigatorAddNewItem;
     this.groupsBindingNavigator.BindingSource = this.studentsBindingSource;
     this.groupsBindingNavigator.CountItem     = this.bindingNavigatorCountItem;
     this.groupsBindingNavigator.DeleteItem    = this.bindingNavigatorDeleteItem;
     this.groupsBindingNavigator.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.bindingNavigatorMoveFirstItem,
         this.bindingNavigatorMovePreviousItem,
         this.bindingNavigatorSeparator,
         this.bindingNavigatorPositionItem,
         this.bindingNavigatorCountItem,
         this.bindingNavigatorSeparator1,
         this.bindingNavigatorMoveNextItem,
         this.bindingNavigatorMoveLastItem,
         this.bindingNavigatorSeparator2,
         this.bindingNavigatorAddNewItem,
         this.bindingNavigatorDeleteItem,
         this.groupsBindingNavigatorSaveItem
     });
     this.groupsBindingNavigator.Location         = new System.Drawing.Point(0, 0);
     this.groupsBindingNavigator.MoveFirstItem    = this.bindingNavigatorMoveFirstItem;
     this.groupsBindingNavigator.MoveLastItem     = this.bindingNavigatorMoveLastItem;
     this.groupsBindingNavigator.MoveNextItem     = this.bindingNavigatorMoveNextItem;
     this.groupsBindingNavigator.MovePreviousItem = this.bindingNavigatorMovePreviousItem;
     this.groupsBindingNavigator.Name             = "groupsBindingNavigator";
     this.groupsBindingNavigator.PositionItem     = this.bindingNavigatorPositionItem;
     this.groupsBindingNavigator.Size             = new System.Drawing.Size(713, 25);
     this.groupsBindingNavigator.TabIndex         = 0;
     this.groupsBindingNavigator.Text             = "bindingNavigator1";
     //
     // bindingNavigatorAddNewItem
     //
     this.bindingNavigatorAddNewItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorAddNewItem.Image        = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorAddNewItem.Image")));
     this.bindingNavigatorAddNewItem.Name         = "bindingNavigatorAddNewItem";
     this.bindingNavigatorAddNewItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorAddNewItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorAddNewItem.Text = "Add new";
     //
     // studentsBindingSource
     //
     this.studentsBindingSource.DataMember = "FK_Students_Groups";
     this.studentsBindingSource.DataSource = this.groupsBindingSource2;
     //
     // bindingNavigatorCountItem
     //
     this.bindingNavigatorCountItem.Name        = "bindingNavigatorCountItem";
     this.bindingNavigatorCountItem.Size        = new System.Drawing.Size(35, 22);
     this.bindingNavigatorCountItem.Text        = "of {0}";
     this.bindingNavigatorCountItem.ToolTipText = "Total number of items";
     //
     // bindingNavigatorDeleteItem
     //
     this.bindingNavigatorDeleteItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorDeleteItem.Image        = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorDeleteItem.Image")));
     this.bindingNavigatorDeleteItem.Name         = "bindingNavigatorDeleteItem";
     this.bindingNavigatorDeleteItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorDeleteItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorDeleteItem.Text = "Delete";
     //
     // bindingNavigatorMoveFirstItem
     //
     this.bindingNavigatorMoveFirstItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveFirstItem.Image        = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveFirstItem.Image")));
     this.bindingNavigatorMoveFirstItem.Name         = "bindingNavigatorMoveFirstItem";
     this.bindingNavigatorMoveFirstItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveFirstItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveFirstItem.Text = "Move first";
     //
     // bindingNavigatorMovePreviousItem
     //
     this.bindingNavigatorMovePreviousItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMovePreviousItem.Image        = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMovePreviousItem.Image")));
     this.bindingNavigatorMovePreviousItem.Name         = "bindingNavigatorMovePreviousItem";
     this.bindingNavigatorMovePreviousItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMovePreviousItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMovePreviousItem.Text = "Move previous";
     //
     // bindingNavigatorSeparator
     //
     this.bindingNavigatorSeparator.Name = "bindingNavigatorSeparator";
     this.bindingNavigatorSeparator.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorPositionItem
     //
     this.bindingNavigatorPositionItem.AccessibleName = "Position";
     this.bindingNavigatorPositionItem.AutoSize       = false;
     this.bindingNavigatorPositionItem.Name           = "bindingNavigatorPositionItem";
     this.bindingNavigatorPositionItem.Size           = new System.Drawing.Size(50, 23);
     this.bindingNavigatorPositionItem.Text           = "0";
     this.bindingNavigatorPositionItem.ToolTipText    = "Current position";
     //
     // bindingNavigatorSeparator1
     //
     this.bindingNavigatorSeparator1.Name = "bindingNavigatorSeparator1";
     this.bindingNavigatorSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorMoveNextItem
     //
     this.bindingNavigatorMoveNextItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveNextItem.Image        = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveNextItem.Image")));
     this.bindingNavigatorMoveNextItem.Name         = "bindingNavigatorMoveNextItem";
     this.bindingNavigatorMoveNextItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveNextItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveNextItem.Text = "Move next";
     //
     // bindingNavigatorMoveLastItem
     //
     this.bindingNavigatorMoveLastItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveLastItem.Image        = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveLastItem.Image")));
     this.bindingNavigatorMoveLastItem.Name         = "bindingNavigatorMoveLastItem";
     this.bindingNavigatorMoveLastItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveLastItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveLastItem.Text = "Move last";
     //
     // bindingNavigatorSeparator2
     //
     this.bindingNavigatorSeparator2.Name = "bindingNavigatorSeparator2";
     this.bindingNavigatorSeparator2.Size = new System.Drawing.Size(6, 25);
     //
     // groupsBindingNavigatorSaveItem
     //
     this.groupsBindingNavigatorSaveItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.groupsBindingNavigatorSaveItem.Image        = ((System.Drawing.Image)(resources.GetObject("groupsBindingNavigatorSaveItem.Image")));
     this.groupsBindingNavigatorSaveItem.Name         = "groupsBindingNavigatorSaveItem";
     this.groupsBindingNavigatorSaveItem.Size         = new System.Drawing.Size(23, 22);
     this.groupsBindingNavigatorSaveItem.Text         = "Save Data";
     this.groupsBindingNavigatorSaveItem.Click       += new System.EventHandler(this.GroupsBindingNavigatorSaveItem_Click);
     //
     // studentsDataGridView
     //
     this.studentsDataGridView.AutoGenerateColumns         = false;
     this.studentsDataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.studentsDataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
         this.dataGridViewTextBoxColumn2,
         this.dataGridViewTextBoxColumn3,
         this.dataGridViewTextBoxColumn1
     });
     this.studentsDataGridView.DataSource = this.studentsBindingSource;
     this.studentsDataGridView.Location   = new System.Drawing.Point(12, 28);
     this.studentsDataGridView.Name       = "studentsDataGridView";
     this.studentsDataGridView.Size       = new System.Drawing.Size(384, 275);
     this.studentsDataGridView.TabIndex   = 2;
     this.studentsDataGridView.DataError += new System.Windows.Forms.DataGridViewDataErrorEventHandler(this.StudentsDataGridView_DataError);
     //
     // dataGridViewTextBoxColumn2
     //
     this.dataGridViewTextBoxColumn2.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this.dataGridViewTextBoxColumn2.DataPropertyName = "FullName";
     this.dataGridViewTextBoxColumn2.HeaderText       = "Имя";
     this.dataGridViewTextBoxColumn2.Name             = "dataGridViewTextBoxColumn2";
     //
     // dataGridViewTextBoxColumn3
     //
     this.dataGridViewTextBoxColumn3.DataPropertyName = "GroupId";
     this.dataGridViewTextBoxColumn3.DataSource       = this.groupsBindingSource1;
     this.dataGridViewTextBoxColumn3.DisplayMember    = "Number";
     this.dataGridViewTextBoxColumn3.HeaderText       = "Группа";
     this.dataGridViewTextBoxColumn3.Name             = "dataGridViewTextBoxColumn3";
     this.dataGridViewTextBoxColumn3.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridViewTextBoxColumn3.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     this.dataGridViewTextBoxColumn3.ValueMember      = "Id";
     this.dataGridViewTextBoxColumn3.Width            = 130;
     //
     // groupsBindingSource1
     //
     this.groupsBindingSource1.DataMember = "Groups";
     this.groupsBindingSource1.DataSource = this.educationalDepartmentDataSet;
     //
     // dataGridViewTextBoxColumn1
     //
     this.dataGridViewTextBoxColumn1.DataPropertyName = "Id";
     this.dataGridViewTextBoxColumn1.HeaderText       = "Id";
     this.dataGridViewTextBoxColumn1.Name             = "dataGridViewTextBoxColumn1";
     this.dataGridViewTextBoxColumn1.ReadOnly         = true;
     this.dataGridViewTextBoxColumn1.Visible          = false;
     //
     // plansBindingSource
     //
     this.plansBindingSource.DataMember = "Plans";
     this.plansBindingSource.DataSource = this.educationalDepartmentDataSet;
     //
     // plansTableAdapter
     //
     this.plansTableAdapter.ClearBeforeFill = true;
     //
     // groupsBindingSource2
     //
     this.groupsBindingSource2.DataMember = "FK_Groups_Plans";
     this.groupsBindingSource2.DataSource = this.plansBindingSource;
     //
     // groupsComboBox1
     //
     this.groupsComboBox1.DataSource        = this.groupsBindingSource2;
     this.groupsComboBox1.DisplayMember     = "Number";
     this.groupsComboBox1.FormattingEnabled = true;
     this.groupsComboBox1.Location          = new System.Drawing.Point(401, 261);
     this.groupsComboBox1.Name        = "groupsComboBox1";
     this.groupsComboBox1.Size        = new System.Drawing.Size(241, 21);
     this.groupsComboBox1.TabIndex    = 6;
     this.groupsComboBox1.ValueMember = "Id";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(401, 245);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(42, 13);
     this.label3.TabIndex = 7;
     this.label3.Text     = "Группа";
     //
     // plansDataGridView
     //
     this.plansDataGridView.AutoGenerateColumns         = false;
     this.plansDataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.plansDataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
         this.dataGridViewTextBoxColumn5,
         this.dataGridViewTextBoxColumn6,
         this.dataGridViewTextBoxColumn4
     });
     this.plansDataGridView.DataSource = this.plansBindingSource;
     this.plansDataGridView.Location   = new System.Drawing.Point(401, 28);
     this.plansDataGridView.Name       = "plansDataGridView";
     this.plansDataGridView.Size       = new System.Drawing.Size(300, 214);
     this.plansDataGridView.TabIndex   = 7;
     //
     // dataGridViewTextBoxColumn5
     //
     this.dataGridViewTextBoxColumn5.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this.dataGridViewTextBoxColumn5.DataPropertyName = "Speciality";
     this.dataGridViewTextBoxColumn5.HeaderText       = "Специальность";
     this.dataGridViewTextBoxColumn5.Name             = "dataGridViewTextBoxColumn5";
     this.dataGridViewTextBoxColumn5.ReadOnly         = true;
     //
     // dataGridViewTextBoxColumn6
     //
     this.dataGridViewTextBoxColumn6.DataPropertyName = "Year";
     this.dataGridViewTextBoxColumn6.HeaderText       = "Год";
     this.dataGridViewTextBoxColumn6.Name             = "dataGridViewTextBoxColumn6";
     this.dataGridViewTextBoxColumn6.ReadOnly         = true;
     this.dataGridViewTextBoxColumn6.Width            = 75;
     //
     // dataGridViewTextBoxColumn4
     //
     this.dataGridViewTextBoxColumn4.DataPropertyName = "Id";
     this.dataGridViewTextBoxColumn4.HeaderText       = "Id";
     this.dataGridViewTextBoxColumn4.Name             = "dataGridViewTextBoxColumn4";
     this.dataGridViewTextBoxColumn4.ReadOnly         = true;
     this.dataGridViewTextBoxColumn4.Visible          = false;
     //
     // StudentsForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(713, 324);
     this.Controls.Add(this.plansDataGridView);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.groupsComboBox1);
     this.Controls.Add(this.studentsDataGridView);
     this.Controls.Add(this.groupsBindingNavigator);
     this.Name  = "StudentsForm";
     this.Text  = "Студенты";
     this.Load += new System.EventHandler(this.StudentsForm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.educationalDepartmentDataSet)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupsBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupsBindingNavigator)).EndInit();
     this.groupsBindingNavigator.ResumeLayout(false);
     this.groupsBindingNavigator.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.studentsBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.studentsDataGridView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupsBindingSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.plansBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupsBindingSource2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.plansDataGridView)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.dgvStatementHeadData = new System.Windows.Forms.DataGridView();
     this.dgvStatementDetailData = new System.Windows.Forms.DataGridView();
     this.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
     this.txtSearchSaleId = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripLabel2 = new System.Windows.Forms.ToolStripLabel();
     this.txtSearchCustomer = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.btnShowAll = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
     this.btnprtInvoice = new System.Windows.Forms.ToolStripLabel();
     this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
     this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
     this.btnCancle = new System.Windows.Forms.ToolStripLabel();
     this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator();
     ((System.ComponentModel.ISupportInitialize)(this.dgvStatementHeadData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgvStatementDetailData)).BeginInit();
     this.toolStrip1.SuspendLayout();
     this.tableLayoutPanel1.SuspendLayout();
     this.SuspendLayout();
     //
     // dgvStatementHeadData
     //
     this.dgvStatementHeadData.AllowUserToAddRows = false;
     this.dgvStatementHeadData.AllowUserToDeleteRows = false;
     this.dgvStatementHeadData.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.tableLayoutPanel1.SetColumnSpan(this.dgvStatementHeadData, 2);
     this.dgvStatementHeadData.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dgvStatementHeadData.Location = new System.Drawing.Point(3, 43);
     this.dgvStatementHeadData.Name = "dgvStatementHeadData";
     this.dgvStatementHeadData.ReadOnly = true;
     this.dgvStatementHeadData.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dgvStatementHeadData.Size = new System.Drawing.Size(929, 264);
     this.dgvStatementHeadData.TabIndex = 86;
     this.dgvStatementHeadData.CellMouseUp += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dgvStatementHeadData_CellMouseUp);
     //
     // dgvStatementDetailData
     //
     this.dgvStatementDetailData.AllowUserToAddRows = false;
     this.dgvStatementDetailData.AllowUserToDeleteRows = false;
     this.dgvStatementDetailData.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.tableLayoutPanel1.SetColumnSpan(this.dgvStatementDetailData, 2);
     this.dgvStatementDetailData.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dgvStatementDetailData.Location = new System.Drawing.Point(3, 313);
     this.dgvStatementDetailData.Name = "dgvStatementDetailData";
     this.dgvStatementDetailData.ReadOnly = true;
     this.dgvStatementDetailData.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dgvStatementDetailData.Size = new System.Drawing.Size(929, 264);
     this.dgvStatementDetailData.TabIndex = 87;
     //
     // toolStrip1
     //
     this.toolStrip1.ImageScalingSize = new System.Drawing.Size(32, 32);
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripLabel1,
     this.txtSearchSaleId,
     this.toolStripSeparator1,
     this.toolStripLabel2,
     this.txtSearchCustomer,
     this.toolStripSeparator2,
     this.toolStripSeparator3,
     this.btnShowAll,
     this.toolStripSeparator4,
     this.btnprtInvoice,
     this.toolStripSeparator5,
     this.btnCancle,
     this.toolStripSeparator6});
     this.toolStrip1.Location = new System.Drawing.Point(0, 0);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
     this.toolStrip1.Size = new System.Drawing.Size(935, 25);
     this.toolStrip1.TabIndex = 91;
     this.toolStrip1.Text = "toolStrip1";
     //
     // toolStripLabel1
     //
     this.toolStripLabel1.Name = "toolStripLabel1";
     this.toolStripLabel1.Size = new System.Drawing.Size(106, 22);
     this.toolStripLabel1.Text = "ค้นหา :เลขที่การขาย : ";
     //
     // txtSearchSaleId
     //
     this.txtSearchSaleId.Name = "txtSearchSaleId";
     this.txtSearchSaleId.Size = new System.Drawing.Size(200, 25);
     this.txtSearchSaleId.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtSearchSaleId_KeyDown);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripLabel2
     //
     this.toolStripLabel2.Name = "toolStripLabel2";
     this.toolStripLabel2.Size = new System.Drawing.Size(82, 22);
     this.toolStripLabel2.Text = "ค้นหา:ชื่อลูกหนี้ :";
     //
     // txtSearchCustomer
     //
     this.txtSearchCustomer.Name = "txtSearchCustomer";
     this.txtSearchCustomer.Size = new System.Drawing.Size(200, 25);
     this.txtSearchCustomer.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtSearchCustomer_KeyDown);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(6, 25);
     //
     // btnShowAll
     //
     this.btnShowAll.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnShowAll.Name = "btnShowAll";
     this.btnShowAll.Size = new System.Drawing.Size(68, 22);
     this.btnShowAll.Text = "แสดงทั้งหมด";
     this.btnShowAll.Click += new System.EventHandler(this.btnShowAll_Click);
     //
     // toolStripSeparator4
     //
     this.toolStripSeparator4.Name = "toolStripSeparator4";
     this.toolStripSeparator4.Size = new System.Drawing.Size(6, 25);
     //
     // btnprtInvoice
     //
     this.btnprtInvoice.Name = "btnprtInvoice";
     this.btnprtInvoice.Size = new System.Drawing.Size(62, 22);
     this.btnprtInvoice.Text = "พิมพ์ใบเสร็จ";
     this.btnprtInvoice.Click += new System.EventHandler(this.btnprtInvoice_Click);
     //
     // toolStripSeparator5
     //
     this.toolStripSeparator5.Name = "toolStripSeparator5";
     this.toolStripSeparator5.Size = new System.Drawing.Size(6, 25);
     //
     // tableLayoutPanel1
     //
     this.tableLayoutPanel1.ColumnCount = 2;
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 192F));
     this.tableLayoutPanel1.Controls.Add(this.dgvStatementDetailData, 0, 3);
     this.tableLayoutPanel1.Controls.Add(this.dgvStatementHeadData, 0, 2);
     this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 25);
     this.tableLayoutPanel1.Name = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 4;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel1.Size = new System.Drawing.Size(935, 580);
     this.tableLayoutPanel1.TabIndex = 92;
     //
     // btnCancle
     //
     this.btnCancle.Name = "btnCancle";
     this.btnCancle.Size = new System.Drawing.Size(43, 22);
     this.btnCancle.Text = "Cancle";
     //
     // toolStripSeparator6
     //
     this.toolStripSeparator6.Name = "toolStripSeparator6";
     this.toolStripSeparator6.Size = new System.Drawing.Size(6, 25);
     //
     // frmShowStatement
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(935, 605);
     this.Controls.Add(this.tableLayoutPanel1);
     this.Controls.Add(this.toolStrip1);
     this.Name = "frmShowStatement";
     this.Text = "frmShowStatement";
     this.Load += new System.EventHandler(this.frmShowStatement_Load);
     this.Resize += new System.EventHandler(this.frmShowStatement_Resize);
     ((System.ComponentModel.ISupportInitialize)(this.dgvStatementHeadData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgvStatementDetailData)).EndInit();
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     this.tableLayoutPanel1.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <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(PrintPreview));
     printPreviewControl      = new System.Windows.Forms.PrintPreviewControl();
     toolStrip                = new System.Windows.Forms.ToolStrip();
     printToolStripButton     = new System.Windows.Forms.ToolStripButton();
     toolStripButtonPageSetup = new System.Windows.Forms.ToolStripButton();
     toolStripSeparator       = new System.Windows.Forms.ToolStripSeparator();
     toolStripButton1Page     = new System.Windows.Forms.ToolStripButton();
     toolStripButton2Pages    = new System.Windows.Forms.ToolStripButton();
     toolStripDropDownButton1 = new System.Windows.Forms.ToolStripDropDownButton();
     toolStripMenuItemAuto    = new System.Windows.Forms.ToolStripMenuItem();
     toolStripMenuItem2       = new System.Windows.Forms.ToolStripMenuItem();
     toolStripMenuItem3       = new System.Windows.Forms.ToolStripMenuItem();
     toolStripMenuItem4       = new System.Windows.Forms.ToolStripMenuItem();
     toolStripMenuItem5       = new System.Windows.Forms.ToolStripMenuItem();
     toolStripMenuItem6       = new System.Windows.Forms.ToolStripMenuItem();
     toolStripSeparator1      = new System.Windows.Forms.ToolStripSeparator();
     toolStripButtonPrev      = new System.Windows.Forms.ToolStripButton();
     toolStripTextBoxPage     = new System.Windows.Forms.ToolStripTextBox();
     toolStripButtonNext      = new System.Windows.Forms.ToolStripButton();
     toolStrip.SuspendLayout();
     SuspendLayout();
     //
     // printPreviewControl
     //
     printPreviewControl.Dock         = System.Windows.Forms.DockStyle.Fill;
     printPreviewControl.Location     = new System.Drawing.Point(0, 25);
     printPreviewControl.Name         = "printPreviewControl";
     printPreviewControl.Size         = new System.Drawing.Size(557, 246);
     printPreviewControl.TabIndex     = 0;
     printPreviewControl.UseAntiAlias = true;
     //
     // toolStrip
     //
     toolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         printToolStripButton,
         toolStripButtonPageSetup,
         toolStripSeparator,
         toolStripButton1Page,
         toolStripButton2Pages,
         toolStripDropDownButton1,
         toolStripSeparator1,
         toolStripButtonPrev,
         toolStripTextBoxPage,
         toolStripButtonNext
     });
     toolStrip.Location = new System.Drawing.Point(0, 0);
     toolStrip.Name     = "toolStrip";
     toolStrip.Size     = new System.Drawing.Size(557, 25);
     toolStrip.TabIndex = 1;
     toolStrip.Text     = "toolStrip1";
     //
     // printToolStripButton
     //
     printToolStripButton.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     printToolStripButton.Image                 = ((System.Drawing.Image)(resources.GetObject("printToolStripButton.Image")));
     printToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     printToolStripButton.Name   = "printToolStripButton";
     printToolStripButton.Size   = new System.Drawing.Size(23, 22);
     printToolStripButton.Text   = "&Print";
     printToolStripButton.Click += new System.EventHandler(this.printToolStripButton_Click);
     //
     // toolStripButtonPageSetup
     //
     toolStripButtonPageSetup.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     toolStripButtonPageSetup.Image                 = ((System.Drawing.Image)(resources.GetObject("toolStripButtonPageSetup.Image")));
     toolStripButtonPageSetup.ImageTransparentColor = System.Drawing.Color.Magenta;
     toolStripButtonPageSetup.Name   = "toolStripButtonPageSetup";
     toolStripButtonPageSetup.Size   = new System.Drawing.Size(23, 22);
     toolStripButtonPageSetup.Text   = "Page setup";
     toolStripButtonPageSetup.Click += new System.EventHandler(this.toolStripButtonPageSetup_Click);
     //
     // toolStripSeparator
     //
     toolStripSeparator.Name = "toolStripSeparator";
     toolStripSeparator.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripButton1Page
     //
     toolStripButton1Page.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     toolStripButton1Page.Image                 = ((System.Drawing.Image)(resources.GetObject("toolStripButton1Page.Image")));
     toolStripButton1Page.ImageTransparentColor = System.Drawing.Color.Magenta;
     toolStripButton1Page.Name   = "toolStripButton1Page";
     toolStripButton1Page.Size   = new System.Drawing.Size(58, 22);
     toolStripButton1Page.Text   = "One page";
     toolStripButton1Page.Click += new System.EventHandler(this.toolStripButton1Page_Click);
     //
     // toolStripButton2Pages
     //
     toolStripButton2Pages.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     toolStripButton2Pages.Image                 = ((System.Drawing.Image)(resources.GetObject("toolStripButton2Pages.Image")));
     toolStripButton2Pages.ImageTransparentColor = System.Drawing.Color.Magenta;
     toolStripButton2Pages.Name   = "toolStripButton2Pages";
     toolStripButton2Pages.Size   = new System.Drawing.Size(63, 22);
     toolStripButton2Pages.Text   = "Two pages";
     toolStripButton2Pages.Click += new System.EventHandler(this.toolStripButton2Pages_Click);
     //
     // toolStripDropDownButton1
     //
     toolStripDropDownButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     toolStripDropDownButton1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         toolStripMenuItemAuto,
         toolStripMenuItem2,
         toolStripMenuItem3,
         toolStripMenuItem4,
         toolStripMenuItem5,
         toolStripMenuItem6
     });
     toolStripDropDownButton1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripDropDownButton1.Image")));
     toolStripDropDownButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
     toolStripDropDownButton1.Name = "toolStripDropDownButton1";
     toolStripDropDownButton1.Size = new System.Drawing.Size(29, 22);
     toolStripDropDownButton1.Text = "Zoom";
     //
     // toolStripMenuItemAuto
     //
     toolStripMenuItemAuto.Name   = "toolStripMenuItemAuto";
     toolStripMenuItemAuto.Size   = new System.Drawing.Size(117, 22);
     toolStripMenuItemAuto.Tag    = "-1";
     toolStripMenuItemAuto.Text   = "Auto";
     toolStripMenuItemAuto.Click += new System.EventHandler(this.toolStripMenuItemZoom_Click);
     //
     // toolStripMenuItem2
     //
     toolStripMenuItem2.Name   = "toolStripMenuItem2";
     toolStripMenuItem2.Size   = new System.Drawing.Size(117, 22);
     toolStripMenuItem2.Tag    = "200";
     toolStripMenuItem2.Text   = "200 %";
     toolStripMenuItem2.Click += new System.EventHandler(this.toolStripMenuItemZoom_Click);
     //
     // toolStripMenuItem3
     //
     toolStripMenuItem3.Name   = "toolStripMenuItem3";
     toolStripMenuItem3.Size   = new System.Drawing.Size(117, 22);
     toolStripMenuItem3.Tag    = "100";
     toolStripMenuItem3.Text   = "100 %";
     toolStripMenuItem3.Click += new System.EventHandler(this.toolStripMenuItemZoom_Click);
     //
     // toolStripMenuItem4
     //
     toolStripMenuItem4.Name   = "toolStripMenuItem4";
     toolStripMenuItem4.Size   = new System.Drawing.Size(117, 22);
     toolStripMenuItem4.Tag    = "75";
     toolStripMenuItem4.Text   = "75 %";
     toolStripMenuItem4.Click += new System.EventHandler(this.toolStripMenuItemZoom_Click);
     //
     // toolStripMenuItem5
     //
     toolStripMenuItem5.Name   = "toolStripMenuItem5";
     toolStripMenuItem5.Size   = new System.Drawing.Size(117, 22);
     toolStripMenuItem5.Tag    = "50";
     toolStripMenuItem5.Text   = "50 %";
     toolStripMenuItem5.Click += new System.EventHandler(this.toolStripMenuItemZoom_Click);
     //
     // toolStripMenuItem6
     //
     toolStripMenuItem6.Name   = "toolStripMenuItem6";
     toolStripMenuItem6.Size   = new System.Drawing.Size(117, 22);
     toolStripMenuItem6.Tag    = "25";
     toolStripMenuItem6.Text   = "25 %";
     toolStripMenuItem6.Click += new System.EventHandler(this.toolStripMenuItemZoom_Click);
     //
     // toolStripSeparator1
     //
     toolStripSeparator1.Name = "toolStripSeparator1";
     toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripButtonPrev
     //
     toolStripButtonPrev.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     toolStripButtonPrev.Image                 = ((System.Drawing.Image)(resources.GetObject("toolStripButtonPrev.Image")));
     toolStripButtonPrev.ImageTransparentColor = System.Drawing.Color.Magenta;
     toolStripButtonPrev.Name   = "toolStripButtonPrev";
     toolStripButtonPrev.Size   = new System.Drawing.Size(23, 22);
     toolStripButtonPrev.Text   = "Previous page";
     toolStripButtonPrev.Click += new System.EventHandler(this.toolStripButtonPrev_Click);
     //
     // toolStripTextBoxPage
     //
     toolStripTextBoxPage.Name = "toolStripTextBoxPage";
     toolStripTextBoxPage.Size = new System.Drawing.Size(30, 25);
     //
     // toolStripButtonNext
     //
     toolStripButtonNext.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     toolStripButtonNext.Image                 = ((System.Drawing.Image)(resources.GetObject("toolStripButtonNext.Image")));
     toolStripButtonNext.ImageTransparentColor = System.Drawing.Color.Magenta;
     toolStripButtonNext.Name   = "toolStripButtonNext";
     toolStripButtonNext.Size   = new System.Drawing.Size(23, 22);
     toolStripButtonNext.Text   = "Next page";
     toolStripButtonNext.Click += new System.EventHandler(this.toolStripButtonNext_Click);
     //
     // PrintPreview
     //
     AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     ClientSize          = new System.Drawing.Size(557, 271);
     Controls.Add(this.printPreviewControl);
     Controls.Add(this.toolStrip);
     Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     Name          = "PrintPreview";
     ShowInTaskbar = false;
     Text          = "Preview";
     FormClosing  += new System.Windows.Forms.FormClosingEventHandler(this.PrintPreview_FormClosing);
     Load         += new System.EventHandler(this.PrintPreview_Load);
     toolStrip.ResumeLayout(false);
     toolStrip.PerformLayout();
     ResumeLayout(false);
     PerformLayout();
 }
 /// <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(DisplayAuthorsTable));
     this.authorBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.authorBindingNavigator = new System.Windows.Forms.BindingNavigator(this.components);
     this.bindingNavigatorAddNewItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorCountItem = new System.Windows.Forms.ToolStripLabel();
     this.bindingNavigatorDeleteItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMoveFirstItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMovePreviousItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorPositionItem = new System.Windows.Forms.ToolStripTextBox();
     this.bindingNavigatorSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorMoveNextItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMoveLastItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.authorBindingNavigatorSaveItem = new System.Windows.Forms.ToolStripButton();
     this.authorDataGridView = new System.Windows.Forms.DataGridView();
     this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     ((System.ComponentModel.ISupportInitialize)(this.authorBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.authorBindingNavigator)).BeginInit();
     this.authorBindingNavigator.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.authorDataGridView)).BeginInit();
     this.SuspendLayout();
     //
     // authorBindingSource
     //
     this.authorBindingSource.DataSource = typeof(BooksExamples.Author);
     //
     // authorBindingNavigator
     //
     this.authorBindingNavigator.AddNewItem = this.bindingNavigatorAddNewItem;
     this.authorBindingNavigator.BindingSource = this.authorBindingSource;
     this.authorBindingNavigator.CountItem = this.bindingNavigatorCountItem;
     this.authorBindingNavigator.DeleteItem = this.bindingNavigatorDeleteItem;
     this.authorBindingNavigator.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.bindingNavigatorMoveFirstItem,
     this.bindingNavigatorMovePreviousItem,
     this.bindingNavigatorSeparator,
     this.bindingNavigatorPositionItem,
     this.bindingNavigatorCountItem,
     this.bindingNavigatorSeparator1,
     this.bindingNavigatorMoveNextItem,
     this.bindingNavigatorMoveLastItem,
     this.bindingNavigatorSeparator2,
     this.bindingNavigatorAddNewItem,
     this.bindingNavigatorDeleteItem,
     this.authorBindingNavigatorSaveItem});
     this.authorBindingNavigator.Location = new System.Drawing.Point(0, 0);
     this.authorBindingNavigator.MoveFirstItem = this.bindingNavigatorMoveFirstItem;
     this.authorBindingNavigator.MoveLastItem = this.bindingNavigatorMoveLastItem;
     this.authorBindingNavigator.MoveNextItem = this.bindingNavigatorMoveNextItem;
     this.authorBindingNavigator.MovePreviousItem = this.bindingNavigatorMovePreviousItem;
     this.authorBindingNavigator.Name = "authorBindingNavigator";
     this.authorBindingNavigator.PositionItem = this.bindingNavigatorPositionItem;
     this.authorBindingNavigator.Size = new System.Drawing.Size(414, 25);
     this.authorBindingNavigator.TabIndex = 0;
     this.authorBindingNavigator.Text = "bindingNavigator1";
     //
     // bindingNavigatorAddNewItem
     //
     this.bindingNavigatorAddNewItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorAddNewItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorAddNewItem.Image")));
     this.bindingNavigatorAddNewItem.Name = "bindingNavigatorAddNewItem";
     this.bindingNavigatorAddNewItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorAddNewItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorAddNewItem.Text = "Add new";
     //
     // bindingNavigatorCountItem
     //
     this.bindingNavigatorCountItem.Name = "bindingNavigatorCountItem";
     this.bindingNavigatorCountItem.Size = new System.Drawing.Size(35, 22);
     this.bindingNavigatorCountItem.Text = "of {0}";
     this.bindingNavigatorCountItem.ToolTipText = "Total number of items";
     //
     // bindingNavigatorDeleteItem
     //
     this.bindingNavigatorDeleteItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorDeleteItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorDeleteItem.Image")));
     this.bindingNavigatorDeleteItem.Name = "bindingNavigatorDeleteItem";
     this.bindingNavigatorDeleteItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorDeleteItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorDeleteItem.Text = "Delete";
     //
     // bindingNavigatorMoveFirstItem
     //
     this.bindingNavigatorMoveFirstItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveFirstItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveFirstItem.Image")));
     this.bindingNavigatorMoveFirstItem.Name = "bindingNavigatorMoveFirstItem";
     this.bindingNavigatorMoveFirstItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveFirstItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveFirstItem.Text = "Move first";
     //
     // bindingNavigatorMovePreviousItem
     //
     this.bindingNavigatorMovePreviousItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMovePreviousItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMovePreviousItem.Image")));
     this.bindingNavigatorMovePreviousItem.Name = "bindingNavigatorMovePreviousItem";
     this.bindingNavigatorMovePreviousItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMovePreviousItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMovePreviousItem.Text = "Move previous";
     //
     // bindingNavigatorSeparator
     //
     this.bindingNavigatorSeparator.Name = "bindingNavigatorSeparator";
     this.bindingNavigatorSeparator.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorPositionItem
     //
     this.bindingNavigatorPositionItem.AccessibleName = "Position";
     this.bindingNavigatorPositionItem.AutoSize = false;
     this.bindingNavigatorPositionItem.Name = "bindingNavigatorPositionItem";
     this.bindingNavigatorPositionItem.Size = new System.Drawing.Size(50, 23);
     this.bindingNavigatorPositionItem.Text = "0";
     this.bindingNavigatorPositionItem.ToolTipText = "Current position";
     //
     // bindingNavigatorSeparator1
     //
     this.bindingNavigatorSeparator1.Name = "bindingNavigatorSeparator1";
     this.bindingNavigatorSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorMoveNextItem
     //
     this.bindingNavigatorMoveNextItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveNextItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveNextItem.Image")));
     this.bindingNavigatorMoveNextItem.Name = "bindingNavigatorMoveNextItem";
     this.bindingNavigatorMoveNextItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveNextItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveNextItem.Text = "Move next";
     //
     // bindingNavigatorMoveLastItem
     //
     this.bindingNavigatorMoveLastItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveLastItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveLastItem.Image")));
     this.bindingNavigatorMoveLastItem.Name = "bindingNavigatorMoveLastItem";
     this.bindingNavigatorMoveLastItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveLastItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveLastItem.Text = "Move last";
     //
     // bindingNavigatorSeparator2
     //
     this.bindingNavigatorSeparator2.Name = "bindingNavigatorSeparator2";
     this.bindingNavigatorSeparator2.Size = new System.Drawing.Size(6, 25);
     //
     // authorBindingNavigatorSaveItem
     //
     this.authorBindingNavigatorSaveItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.authorBindingNavigatorSaveItem.Image = ((System.Drawing.Image)(resources.GetObject("authorBindingNavigatorSaveItem.Image")));
     this.authorBindingNavigatorSaveItem.Name = "authorBindingNavigatorSaveItem";
     this.authorBindingNavigatorSaveItem.Size = new System.Drawing.Size(23, 22);
     this.authorBindingNavigatorSaveItem.Text = "Save Data";
     this.authorBindingNavigatorSaveItem.Click += new System.EventHandler(this.authorBindingNavigatorSaveItem_Click);
     //
     // authorDataGridView
     //
     this.authorDataGridView.AutoGenerateColumns = false;
     this.authorDataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.authorDataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.dataGridViewTextBoxColumn1,
     this.dataGridViewTextBoxColumn2,
     this.dataGridViewTextBoxColumn3});
     this.authorDataGridView.DataSource = this.authorBindingSource;
     this.authorDataGridView.Dock = System.Windows.Forms.DockStyle.Fill;
     this.authorDataGridView.Location = new System.Drawing.Point(0, 25);
     this.authorDataGridView.Name = "authorDataGridView";
     this.authorDataGridView.Size = new System.Drawing.Size(414, 290);
     this.authorDataGridView.TabIndex = 1;
     //
     // dataGridViewTextBoxColumn1
     //
     this.dataGridViewTextBoxColumn1.DataPropertyName = "AuthorID";
     this.dataGridViewTextBoxColumn1.HeaderText = "AuthorID";
     this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
     //
     // dataGridViewTextBoxColumn2
     //
     this.dataGridViewTextBoxColumn2.DataPropertyName = "FirstName";
     this.dataGridViewTextBoxColumn2.HeaderText = "FirstName";
     this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
     //
     // dataGridViewTextBoxColumn3
     //
     this.dataGridViewTextBoxColumn3.DataPropertyName = "LastName";
     this.dataGridViewTextBoxColumn3.HeaderText = "LastName";
     this.dataGridViewTextBoxColumn3.Name = "dataGridViewTextBoxColumn3";
     //
     // DisplayAuthorsTable
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(414, 315);
     this.Controls.Add(this.authorDataGridView);
     this.Controls.Add(this.authorBindingNavigator);
     this.Name = "DisplayAuthorsTable";
     this.Text = "Display Authors Table";
     this.Load += new System.EventHandler(this.DisplayAuthorsTable_Load);
     ((System.ComponentModel.ISupportInitialize)(this.authorBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.authorBindingNavigator)).EndInit();
     this.authorBindingNavigator.ResumeLayout(false);
     this.authorBindingNavigator.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.authorDataGridView)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Beispiel #28
0
 /// <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(GEToolStrip));
     this.imageList1        = new System.Windows.Forms.ImageList(this.components);
     this.dropDownSeparator = new System.Windows.Forms.ToolStripSeparator();
     this.screenGrabButton  = new System.Windows.Forms.ToolStripButton();
     this.viewInMapsButton  = new System.Windows.Forms.ToolStripButton();
     this.navigationTextBox = new System.Windows.Forms.ToolStripTextBox();
     this.navigationTextBoxStringCollection = new System.Windows.Forms.AutoCompleteStringCollection();
     this.submitButton            = new System.Windows.Forms.ToolStripButton();
     this.refreshButton           = new System.Windows.Forms.ToolStripButton();
     this.navigationSeparator     = new System.Windows.Forms.ToolStripSeparator();
     this.viewDropDownButton      = new System.Windows.Forms.ToolStripDropDownButton();
     this.skyMenuItem             = new System.Windows.Forms.ToolStripMenuItem();
     this.sunMenuItem             = new System.Windows.Forms.ToolStripMenuItem();
     this.historyMenuItem         = new System.Windows.Forms.ToolStripMenuItem();
     this.optionsDropDownButton   = new System.Windows.Forms.ToolStripDropDownButton();
     this.imperialUnitsMenuItem   = new System.Windows.Forms.ToolStripMenuItem();
     this.fadeInOutMenuItem       = new System.Windows.Forms.ToolStripMenuItem();
     this.controlsMenuItem        = new System.Windows.Forms.ToolStripMenuItem();
     this.statusBarMenuItem       = new System.Windows.Forms.ToolStripMenuItem();
     this.gridMenuItem            = new System.Windows.Forms.ToolStripMenuItem();
     this.overviewMapMenuItem     = new System.Windows.Forms.ToolStripMenuItem();
     this.scaleLegendMenuItem     = new System.Windows.Forms.ToolStripMenuItem();
     this.atmosphereMenuItem      = new System.Windows.Forms.ToolStripMenuItem();
     this.mouseNavigationMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.layersDropDownButton    = new System.Windows.Forms.ToolStripDropDownButton();
     this.bordersMenuItem         = new System.Windows.Forms.ToolStripMenuItem();
     this.buildingsMenuItem       = new System.Windows.Forms.ToolStripMenuItem();
     this.buildingsGreyMenuItem   = new System.Windows.Forms.ToolStripMenuItem();
     this.roadsMenuItem           = new System.Windows.Forms.ToolStripMenuItem();
     this.terrainMenuItem         = new System.Windows.Forms.ToolStripMenuItem();
     this.imageryDropDownButton   = new System.Windows.Forms.ToolStripDropDownButton();
     this.earthMenuItem           = new System.Windows.Forms.ToolStripMenuItem();
     this.marsMenuItem            = new System.Windows.Forms.ToolStripMenuItem();
     this.moonMenuItem            = new System.Windows.Forms.ToolStripMenuItem();
     this.languageSeparator       = new System.Windows.Forms.ToolStripSeparator();
     this.languageComboBox        = new System.Windows.Forms.ToolStripComboBox();
     this.SuspendLayout();
     //
     // imageList1
     //
     this.imageList1.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "go");
     this.imageList1.Images.SetKeyName(1, "refresh");
     this.imageList1.Images.SetKeyName(2, "jpg");
     this.imageList1.Images.SetKeyName(3, "map");
     //
     // dropDownSeparator
     //
     this.dropDownSeparator.Name = "dropDownSeparator";
     this.dropDownSeparator.Size = new System.Drawing.Size(6, 6);
     //
     // screenGrabButton
     //
     this.screenGrabButton.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.screenGrabButton.ImageKey              = "jpg";
     this.screenGrabButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.screenGrabButton.Name        = "screenGrabButton";
     this.screenGrabButton.Size        = new System.Drawing.Size(23, 20);
     this.screenGrabButton.Tag         = "SCREENGRAB";
     this.screenGrabButton.Text        = "PrtScr";
     this.screenGrabButton.ToolTipText = "Screen Grab";
     this.screenGrabButton.Click      += new System.EventHandler(this.ScreenGrabButton_Click);
     //
     // viewInMapsButton
     //
     this.viewInMapsButton.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.viewInMapsButton.ImageKey              = "map";
     this.viewInMapsButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.viewInMapsButton.Name        = "viewInMapsButton";
     this.viewInMapsButton.Size        = new System.Drawing.Size(23, 20);
     this.viewInMapsButton.Tag         = "VIEWMAP";
     this.viewInMapsButton.Text        = "View Map";
     this.viewInMapsButton.ToolTipText = "View in Google Maps";
     this.viewInMapsButton.Click      += new System.EventHandler(this.ViewInMapsButton_Click);
     //
     // navigationTextBox
     //
     this.navigationTextBox.AutoSize                 = false;
     this.navigationTextBox.AutoCompleteMode         = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
     this.navigationTextBox.AutoCompleteSource       = System.Windows.Forms.AutoCompleteSource.CustomSource;
     this.navigationTextBox.AutoCompleteCustomSource = navigationTextBoxStringCollection;
     this.navigationTextBox.Name        = "navigationTextBox";
     this.navigationTextBox.Size        = new System.Drawing.Size(100, 21);
     this.navigationTextBox.Tag         = "NAVIGATION";
     this.navigationTextBox.ToolTipText = "Enter a location or the url of a kml\\kmz file";
     this.navigationTextBox.KeyUp      += new System.Windows.Forms.KeyEventHandler(this.NavigationTextBox_KeyUp);
     //
     // submitButton
     //
     this.submitButton.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.submitButton.ImageKey              = "go";
     this.submitButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.submitButton.Name        = "submitButton";
     this.submitButton.Size        = new System.Drawing.Size(23, 20);
     this.submitButton.ToolTipText = "Go!";
     this.submitButton.Click      += new System.EventHandler(this.NavigationButton_Click);
     //
     // refreshButton
     //
     this.refreshButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.refreshButton.ImageKey     = "refresh";
     this.refreshButton.Name         = "refreshButton";
     this.refreshButton.Size         = new System.Drawing.Size(23, 20);
     this.refreshButton.Tag          = "REFRESH";
     this.refreshButton.Text         = "refresh";
     this.refreshButton.ToolTipText  = "Refresh the plugin";
     this.refreshButton.Click       += new System.EventHandler(this.RefreshButton_Click);
     //
     // navigationSeparator
     //
     this.navigationSeparator.Name = "navigationSeparator";
     this.navigationSeparator.Size = new System.Drawing.Size(6, 6);
     //
     // viewDropDownButton
     //
     this.viewDropDownButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.viewDropDownButton.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.skyMenuItem,
         this.sunMenuItem,
         this.historyMenuItem
     });
     this.viewDropDownButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.viewDropDownButton.Name        = "viewDropDownButton";
     this.viewDropDownButton.Size        = new System.Drawing.Size(42, 17);
     this.viewDropDownButton.Tag         = "VIEW";
     this.viewDropDownButton.Text        = "View";
     this.viewDropDownButton.ToolTipText = "Change the View settings";
     //
     // skyMenuItem
     //
     this.skyMenuItem.CheckOnClick = true;
     this.skyMenuItem.Name         = "skyMenuItem";
     this.skyMenuItem.Size         = new System.Drawing.Size(126, 22);
     this.skyMenuItem.Tag          = "SKY";
     this.skyMenuItem.Text         = "Sky Mode";
     this.skyMenuItem.ToolTipText  = "Toggle Sky and Earth mode";
     this.skyMenuItem.Click       += new System.EventHandler(this.ViewItem_Clicked);
     //
     // sunMenuItem
     //
     this.sunMenuItem.CheckOnClick = true;
     this.sunMenuItem.Name         = "sunMenuItem";
     this.sunMenuItem.Size         = new System.Drawing.Size(126, 22);
     this.sunMenuItem.Tag          = "SUN";
     this.sunMenuItem.Text         = "Sun";
     this.sunMenuItem.ToolTipText  = "Toggle the sun visiblity";
     this.sunMenuItem.Click       += new System.EventHandler(this.ViewItem_Clicked);
     //
     // historyMenuItem
     //
     this.historyMenuItem.CheckOnClick = true;
     this.historyMenuItem.Name         = "historyMenuItem";
     this.historyMenuItem.Size         = new System.Drawing.Size(126, 22);
     this.historyMenuItem.Tag          = "HISTORY";
     this.historyMenuItem.Text         = "Historical imagery";
     this.historyMenuItem.ToolTipText  = "Toggle the historical imagery";
     this.historyMenuItem.Click       += new System.EventHandler(this.ViewItem_Clicked);
     //
     // optionsDropDownButton
     //
     this.optionsDropDownButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.optionsDropDownButton.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.imperialUnitsMenuItem,
         this.controlsMenuItem,
         this.statusBarMenuItem,
         this.gridMenuItem,
         this.overviewMapMenuItem,
         this.scaleLegendMenuItem,
         this.atmosphereMenuItem,
         this.fadeInOutMenuItem,
         this.mouseNavigationMenuItem
     });
     this.optionsDropDownButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.optionsDropDownButton.Name        = "optionsDropDownButton";
     this.optionsDropDownButton.Size        = new System.Drawing.Size(57, 17);
     this.optionsDropDownButton.Tag         = "OPTIONS";
     this.optionsDropDownButton.Text        = "Options";
     this.optionsDropDownButton.ToolTipText = "Toggle the various options";
     //
     // controlsMenuItem
     //
     this.controlsMenuItem.CheckOnClick = true;
     this.controlsMenuItem.Name         = "controlsMenuItem";
     this.controlsMenuItem.Size         = new System.Drawing.Size(169, 22);
     this.controlsMenuItem.Tag          = "CONTROLS";
     this.controlsMenuItem.Text         = "Controls";
     this.controlsMenuItem.ToolTipText  = "Toggle the controls visiblity";
     this.controlsMenuItem.Click       += new System.EventHandler(this.OptionsItem_Clicked);
     //
     // statusBarMenuItem
     //
     this.statusBarMenuItem.CheckOnClick = true;
     this.statusBarMenuItem.Name         = "statusBarMenuItem";
     this.statusBarMenuItem.Size         = new System.Drawing.Size(169, 22);
     this.statusBarMenuItem.Tag          = "STATUS";
     this.statusBarMenuItem.Text         = "Status bar";
     this.statusBarMenuItem.ToolTipText  = "Toggle the Status bar visiblity";
     this.statusBarMenuItem.Click       += new System.EventHandler(this.OptionsItem_Clicked);
     //
     // gridMenuItem
     //
     this.gridMenuItem.CheckOnClick = true;
     this.gridMenuItem.Name         = "gridMenuItem";
     this.gridMenuItem.Size         = new System.Drawing.Size(169, 22);
     this.gridMenuItem.Tag          = "GRID";
     this.gridMenuItem.Text         = "Grid";
     this.gridMenuItem.ToolTipText  = "Toggle the Grid visiblity";
     this.gridMenuItem.Click       += new System.EventHandler(this.OptionsItem_Clicked);
     //
     // overviewMapMenuItem
     //
     this.overviewMapMenuItem.CheckOnClick = true;
     this.overviewMapMenuItem.Name         = "overviewMapMenuItem";
     this.overviewMapMenuItem.Size         = new System.Drawing.Size(169, 22);
     this.overviewMapMenuItem.Tag          = "OVERVIEW";
     this.overviewMapMenuItem.Text         = "Overview map";
     this.overviewMapMenuItem.ToolTipText  = "Toggle the Overview map visiblity";
     this.overviewMapMenuItem.Click       += new System.EventHandler(this.OptionsItem_Clicked);
     //
     // scaleLegendMenuItem
     //
     this.scaleLegendMenuItem.CheckOnClick = true;
     this.scaleLegendMenuItem.Name         = "scaleLegendMenuItem";
     this.scaleLegendMenuItem.Size         = new System.Drawing.Size(169, 22);
     this.scaleLegendMenuItem.Tag          = "SCALE";
     this.scaleLegendMenuItem.Text         = "Scale legend";
     this.scaleLegendMenuItem.ToolTipText  = "Toggle the Scale legend visiblity";
     this.scaleLegendMenuItem.Click       += new System.EventHandler(this.OptionsItem_Clicked);
     //
     // atmosphereMenuItem
     //
     this.atmosphereMenuItem.Checked      = true;
     this.atmosphereMenuItem.CheckOnClick = true;
     this.atmosphereMenuItem.CheckState   = System.Windows.Forms.CheckState.Checked;
     this.atmosphereMenuItem.Name         = "atmosphereMenuItem";
     this.atmosphereMenuItem.Size         = new System.Drawing.Size(169, 22);
     this.atmosphereMenuItem.Tag          = "ATMOSPHERE";
     this.atmosphereMenuItem.Text         = "Atmosphere";
     this.atmosphereMenuItem.ToolTipText  = "Toggle the Atmosphere visiblity";
     this.atmosphereMenuItem.Click       += new System.EventHandler(this.OptionsItem_Clicked);
     //
     // mouseNavigationMenuItem
     //
     this.mouseNavigationMenuItem.Checked      = true;
     this.mouseNavigationMenuItem.CheckOnClick = true;
     this.mouseNavigationMenuItem.CheckState   = System.Windows.Forms.CheckState.Checked;
     this.mouseNavigationMenuItem.Name         = "mouseNavigationMenuItem";
     this.mouseNavigationMenuItem.Size         = new System.Drawing.Size(169, 22);
     this.mouseNavigationMenuItem.Tag          = "MOUSE";
     this.mouseNavigationMenuItem.Text         = "Mouse navigation";
     this.mouseNavigationMenuItem.ToolTipText  = "Toggle Mouse navigation enabled";
     this.mouseNavigationMenuItem.Click       += new System.EventHandler(this.OptionsItem_Clicked);
     //
     // imperialMenuItem
     //
     this.imperialUnitsMenuItem.Checked      = false;
     this.imperialUnitsMenuItem.CheckOnClick = true;
     this.imperialUnitsMenuItem.CheckState   = System.Windows.Forms.CheckState.Unchecked;
     this.imperialUnitsMenuItem.Name         = "imperialMenuItem";
     this.imperialUnitsMenuItem.Tag          = "IMPERIAL";
     this.imperialUnitsMenuItem.Text         = "Imperial Units";
     this.imperialUnitsMenuItem.ToolTipText  = "Use imperial units for the plugin";
     this.imperialUnitsMenuItem.Click       += new System.EventHandler(this.OptionsItem_Clicked);
     //
     // fadeInOutMenuItem
     //
     this.fadeInOutMenuItem.Checked      = true;
     this.fadeInOutMenuItem.CheckOnClick = true;
     this.fadeInOutMenuItem.CheckState   = System.Windows.Forms.CheckState.Checked;
     this.fadeInOutMenuItem.Name         = "fadeInOutMenuItem";
     this.fadeInOutMenuItem.Tag          = "FADEINOUT";
     this.fadeInOutMenuItem.Text         = "Animate features";
     this.fadeInOutMenuItem.ToolTipText  = "Animate new features with a slight change of scale";
     this.fadeInOutMenuItem.Click       += new System.EventHandler(this.OptionsItem_Clicked);
     //
     // layersDropDownButton
     //
     this.layersDropDownButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.layersDropDownButton.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.bordersMenuItem,
         this.buildingsMenuItem,
         this.buildingsGreyMenuItem,
         this.roadsMenuItem,
         this.terrainMenuItem
     });
     this.layersDropDownButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.layersDropDownButton.Name        = "layersDropDownButton";
     this.layersDropDownButton.Size        = new System.Drawing.Size(52, 17);
     this.layersDropDownButton.Tag         = "LAYERS";
     this.layersDropDownButton.Text        = "Layers";
     this.layersDropDownButton.ToolTipText = "Toggle the in-built layers";
     //
     // bordersMenuItem
     //
     this.bordersMenuItem.CheckOnClick = true;
     this.bordersMenuItem.Name         = "bordersMenuItem";
     this.bordersMenuItem.Size         = new System.Drawing.Size(168, 22);
     this.bordersMenuItem.Tag          = "BORDERS";
     this.bordersMenuItem.Text         = "Borders";
     this.bordersMenuItem.ToolTipText  = "Toggle the Borders layer";
     this.bordersMenuItem.Click       += new System.EventHandler(this.LayersItem_Clicked);
     //
     // buildingsMenuItem
     //
     this.buildingsMenuItem.CheckOnClick = true;
     this.buildingsMenuItem.Name         = "buildingsMenuItem";
     this.buildingsMenuItem.Size         = new System.Drawing.Size(168, 22);
     this.buildingsMenuItem.Tag          = "BUILDINGS";
     this.buildingsMenuItem.Text         = "Buildings";
     this.buildingsMenuItem.ToolTipText  = "Toggle the Low Resolution Buildings layer";
     this.buildingsMenuItem.Click       += new System.EventHandler(this.LayersItem_Clicked);
     //
     // buildingsGreyMenuItem
     //
     this.buildingsGreyMenuItem.CheckOnClick = true;
     this.buildingsGreyMenuItem.Name         = "buildingsGreyMenuItem";
     this.buildingsGreyMenuItem.Size         = new System.Drawing.Size(168, 22);
     this.buildingsGreyMenuItem.Tag          = "BUILDINGS_GREY_LOW_RES";
     this.buildingsGreyMenuItem.Text         = "Buildings Low-res";
     this.buildingsGreyMenuItem.Click       += new System.EventHandler(this.LayersItem_Clicked);
     //
     // roadsMenuItem
     //
     this.roadsMenuItem.CheckOnClick = true;
     this.roadsMenuItem.Name         = "roadsMenuItem";
     this.roadsMenuItem.Size         = new System.Drawing.Size(168, 22);
     this.roadsMenuItem.Tag          = "ROADS";
     this.roadsMenuItem.Text         = "Roads";
     this.roadsMenuItem.ToolTipText  = "Toggle the Roads layer";
     this.roadsMenuItem.Click       += new System.EventHandler(this.LayersItem_Clicked);
     //
     // terrainMenuItem
     //
     this.terrainMenuItem.Checked      = true;
     this.terrainMenuItem.CheckOnClick = true;
     this.terrainMenuItem.CheckState   = System.Windows.Forms.CheckState.Checked;
     this.terrainMenuItem.Name         = "terrainMenuItem";
     this.terrainMenuItem.Size         = new System.Drawing.Size(168, 22);
     this.terrainMenuItem.Tag          = "TERRAIN";
     this.terrainMenuItem.Text         = "Terrain";
     this.terrainMenuItem.ToolTipText  = "Toggle the Terrain layer";
     this.terrainMenuItem.Click       += new System.EventHandler(this.LayersItem_Clicked);
     //
     // imageryDropDownButton
     //
     this.imageryDropDownButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.imageryDropDownButton.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.earthMenuItem,
         this.marsMenuItem,
         this.moonMenuItem
     });
     this.imageryDropDownButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.imageryDropDownButton.Name        = "imageryDropDownButton";
     this.imageryDropDownButton.Size        = new System.Drawing.Size(42, 17);
     this.imageryDropDownButton.Tag         = "IMAGERY";
     this.imageryDropDownButton.Text        = "Imagery";
     this.imageryDropDownButton.ToolTipText = "Change the Imagery database settings";
     //
     // earthMenuItem
     //
     this.earthMenuItem.Checked      = true;
     this.earthMenuItem.CheckOnClick = true;
     this.earthMenuItem.CheckState   = System.Windows.Forms.CheckState.Checked;
     this.earthMenuItem.Enabled      = false;
     this.earthMenuItem.Name         = "earthMenuItem";
     this.earthMenuItem.Size         = new System.Drawing.Size(106, 22);
     this.earthMenuItem.Tag          = ImageryBase.Earth;
     this.earthMenuItem.Text         = "Earth";
     this.earthMenuItem.ToolTipText  = "Use the Earth imagery";
     this.earthMenuItem.Click       += new System.EventHandler(this.ImageryItem_Clicked);
     //
     // marsMenuItem
     //
     this.marsMenuItem.CheckOnClick = true;
     this.marsMenuItem.Name         = "marsMenuItem";
     this.marsMenuItem.Size         = new System.Drawing.Size(106, 22);
     this.marsMenuItem.Tag          = ImageryBase.Mars;
     this.marsMenuItem.Text         = "Mars";
     this.marsMenuItem.ToolTipText  = "Use the Mars imagery";
     this.marsMenuItem.Click       += new System.EventHandler(this.ImageryItem_Clicked);
     //
     // moonMenuItem
     //
     this.moonMenuItem.CheckOnClick = true;
     this.moonMenuItem.Name         = "moonMenuItem";
     this.moonMenuItem.Size         = new System.Drawing.Size(106, 22);
     this.moonMenuItem.Tag          = ImageryBase.Moon;
     this.moonMenuItem.Text         = "Moon";
     this.moonMenuItem.ToolTipText  = "Use the Moon imagery";
     this.moonMenuItem.Click       += new System.EventHandler(this.ImageryItem_Clicked);
     //
     // languageSeparator
     //
     this.languageSeparator.Name = "languageSeparator";
     this.languageSeparator.Size = new System.Drawing.Size(6, 6);
     //
     // languageComboBox
     //
     this.languageComboBox.Text                  = "language";
     this.languageComboBox.Name                  = "languageComboBox";
     this.moonMenuItem.ToolTipText               = "Change the plugin language";
     this.languageComboBox.AutoSize              = true;
     this.languageComboBox.DropDownHeight        = 250;
     this.languageComboBox.Size                  = new System.Drawing.Size(106, 22);
     this.languageComboBox.SelectedIndexChanged += new System.EventHandler(LanguageComboBox_SelectedIndexChanged);
     //
     // GEToolStrip
     //
     this.ImageList = this.imageList1;
     this.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.navigationTextBox,
         this.submitButton,
         this.refreshButton,
         this.navigationSeparator,
         this.viewDropDownButton,
         this.optionsDropDownButton,
         this.layersDropDownButton,
         this.imageryDropDownButton,
         this.dropDownSeparator,
         this.screenGrabButton,
         this.viewInMapsButton,
         this.languageSeparator,
         this.languageComboBox
     });
     this.Layout += new System.Windows.Forms.LayoutEventHandler(this.GEToolStrip_Layout);
     this.ResumeLayout(false);
 }
 /// <summary> 
 /// Méthode requise pour la prise en charge du concepteur - ne modifiez pas 
 /// le contenu de cette méthode avec l'éditeur de code.
 /// </summary>
 private void InitializeComponent()
 {
     this.listViewResults = new System.Windows.Forms.ListView();
     this.columnHeaderTitle = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeaderLineNumber = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeaderLineText = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.label_Statistics = new System.Windows.Forms.Label();
     this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
     this.textBoxSearch = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripLabel3 = new System.Windows.Forms.ToolStripLabel();
     this.toolStripComboBox_Scope = new System.Windows.Forms.ToolStripComboBox();
     this.toolStripDropDownButton_Options = new System.Windows.Forms.ToolStripDropDownButton();
     this.toolStripMenuItem_RegExp = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem_MatchCase = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem_WholeWord = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem_WordStart = new System.Windows.Forms.ToolStripMenuItem();
     this.buttonSearch = new System.Windows.Forms.ToolStripButton();
     this.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.toolStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // listViewResults
     //
     this.listViewResults.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.listViewResults.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeaderTitle,
     this.columnHeaderLineNumber,
     this.columnHeaderLineText});
     this.listViewResults.FullRowSelect = true;
     this.listViewResults.GridLines = true;
     this.listViewResults.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
     this.listViewResults.Location = new System.Drawing.Point(3, 28);
     this.listViewResults.MultiSelect = false;
     this.listViewResults.Name = "listViewResults";
     this.listViewResults.Size = new System.Drawing.Size(530, 147);
     this.listViewResults.TabIndex = 5;
     this.listViewResults.UseCompatibleStateImageBehavior = false;
     this.listViewResults.View = System.Windows.Forms.View.Details;
     //
     // columnHeaderTitle
     //
     this.columnHeaderTitle.Text = "Script";
     this.columnHeaderTitle.Width = 147;
     //
     // columnHeaderLineNumber
     //
     this.columnHeaderLineNumber.Text = "Line #";
     this.columnHeaderLineNumber.Width = 73;
     //
     // columnHeaderLineText
     //
     this.columnHeaderLineText.Text = "Text";
     this.columnHeaderLineText.Width = 278;
     //
     // label_Statistics
     //
     this.label_Statistics.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label_Statistics.AutoSize = true;
     this.label_Statistics.Location = new System.Drawing.Point(3, 178);
     this.label_Statistics.Name = "label_Statistics";
     this.label_Statistics.Size = new System.Drawing.Size(0, 13);
     this.label_Statistics.TabIndex = 10;
     //
     // toolStripLabel1
     //
     this.toolStripLabel1.Name = "toolStripLabel1";
     this.toolStripLabel1.Size = new System.Drawing.Size(33, 22);
     this.toolStripLabel1.Text = "Find:";
     //
     // textBoxSearch
     //
     this.textBoxSearch.Name = "textBoxSearch";
     this.textBoxSearch.Size = new System.Drawing.Size(100, 25);
     this.textBoxSearch.KeyDown += new System.Windows.Forms.KeyEventHandler(this.toolStripTextBox_SearchString_KeyDown);
     //
     // toolStripLabel3
     //
     this.toolStripLabel3.Margin = new System.Windows.Forms.Padding(16, 1, 0, 2);
     this.toolStripLabel3.Name = "toolStripLabel3";
     this.toolStripLabel3.Size = new System.Drawing.Size(20, 22);
     this.toolStripLabel3.Text = "In:";
     //
     // toolStripComboBox_Scope
     //
     this.toolStripComboBox_Scope.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.toolStripComboBox_Scope.Items.AddRange(new object[] {
     "Open Scripts",
     "All Scripts"});
     this.toolStripComboBox_Scope.Name = "toolStripComboBox_Scope";
     this.toolStripComboBox_Scope.Size = new System.Drawing.Size(100, 25);
     //
     // toolStripDropDownButton_Options
     //
     this.toolStripDropDownButton_Options.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripMenuItem_RegExp,
     this.toolStripMenuItem_MatchCase,
     this.toolStripMenuItem_WholeWord,
     this.toolStripMenuItem_WordStart});
     this.toolStripDropDownButton_Options.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripDropDownButton_Options.Margin = new System.Windows.Forms.Padding(16, 1, 0, 2);
     this.toolStripDropDownButton_Options.Name = "toolStripDropDownButton_Options";
     this.toolStripDropDownButton_Options.Size = new System.Drawing.Size(62, 22);
     this.toolStripDropDownButton_Options.Text = "Options";
     //
     // toolStripMenuItem_RegExp
     //
     this.toolStripMenuItem_RegExp.CheckOnClick = true;
     this.toolStripMenuItem_RegExp.Name = "toolStripMenuItem_RegExp";
     this.toolStripMenuItem_RegExp.Size = new System.Drawing.Size(152, 22);
     this.toolStripMenuItem_RegExp.Text = "RegExp";
     this.toolStripMenuItem_RegExp.Click += new System.EventHandler(this.toolStripMenuItem_OptionsItem_Click);
     //
     // toolStripMenuItem_MatchCase
     //
     this.toolStripMenuItem_MatchCase.CheckOnClick = true;
     this.toolStripMenuItem_MatchCase.Name = "toolStripMenuItem_MatchCase";
     this.toolStripMenuItem_MatchCase.Size = new System.Drawing.Size(152, 22);
     this.toolStripMenuItem_MatchCase.Text = "Match Case";
     this.toolStripMenuItem_MatchCase.Click += new System.EventHandler(this.toolStripMenuItem_OptionsItem_Click);
     //
     // toolStripMenuItem_WholeWord
     //
     this.toolStripMenuItem_WholeWord.CheckOnClick = true;
     this.toolStripMenuItem_WholeWord.Name = "toolStripMenuItem_WholeWord";
     this.toolStripMenuItem_WholeWord.Size = new System.Drawing.Size(152, 22);
     this.toolStripMenuItem_WholeWord.Text = "Whole Word";
     this.toolStripMenuItem_WholeWord.Click += new System.EventHandler(this.toolStripMenuItem_OptionsItem_Click);
     //
     // toolStripMenuItem_WordStart
     //
     this.toolStripMenuItem_WordStart.CheckOnClick = true;
     this.toolStripMenuItem_WordStart.Name = "toolStripMenuItem_WordStart";
     this.toolStripMenuItem_WordStart.Size = new System.Drawing.Size(152, 22);
     this.toolStripMenuItem_WordStart.Text = "Word Start";
     this.toolStripMenuItem_WordStart.Click += new System.EventHandler(this.toolStripMenuItem_OptionsItem_Click);
     //
     // buttonSearch
     //
     this.buttonSearch.Image = Resources.Find3;
     this.buttonSearch.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.buttonSearch.Margin = new System.Windows.Forms.Padding(16, 1, 0, 2);
     this.buttonSearch.Name = "buttonSearch";
     this.buttonSearch.Overflow = System.Windows.Forms.ToolStripItemOverflow.Never;
     this.buttonSearch.Size = new System.Drawing.Size(65, 22);
     this.buttonSearch.Text = "Search!";
     //
     // toolStrip1
     //
     this.toolStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripLabel1,
     this.textBoxSearch,
     this.toolStripLabel3,
     this.toolStripComboBox_Scope,
     this.toolStripDropDownButton_Options,
     this.buttonSearch});
     this.toolStrip1.Location = new System.Drawing.Point(0, 0);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
     this.toolStrip1.Size = new System.Drawing.Size(536, 25);
     this.toolStrip1.TabIndex = 9;
     this.toolStrip1.Text = "toolStrip1";
     //
     // SearchControl
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.label_Statistics);
     this.Controls.Add(this.toolStrip1);
     this.Controls.Add(this.listViewResults);
     this.Name = "SearchControl";
     this.Size = new System.Drawing.Size(536, 191);
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <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(FrmRolePermissionScope));
     this.tcUser = new DevComponents.DotNetBar.TabControl();
     this.tabControlPanel6 = new DevComponents.DotNetBar.TabControlPanel();
     this.tvPermissionItem = new System.Windows.Forms.TreeView();
     this.imgList = new System.Windows.Forms.ImageList(this.components);
     this.tabItemPermissionItem = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabControlPanel5 = new DevComponents.DotNetBar.TabControlPanel();
     this.tvModule = new System.Windows.Forms.TreeView();
     this.tabItemModule = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabControlPanel4 = new DevComponents.DotNetBar.TabControlPanel();
     this.tvOrganize = new System.Windows.Forms.TreeView();
     this.tabItemOrganize = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabControlPanel2 = new DevComponents.DotNetBar.TabControlPanel();
     this.cklstUser = new System.Windows.Forms.CheckedListBox();
     this.tabItemUser = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabControlPanel3 = new DevComponents.DotNetBar.TabControlPanel();
     this.cklstRole = new System.Windows.Forms.CheckedListBox();
     this.tabItemRole = new DevComponents.DotNetBar.TabItem(this.components);
     this.panel1 = new System.Windows.Forms.Panel();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.tabItem1 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tlsTool = new System.Windows.Forms.ToolStrip();
     this.lblCurrentRole = new System.Windows.Forms.ToolStripLabel();
     this.txtRole = new System.Windows.Forms.ToolStripTextBox();
     this.lblPermissionScope = new System.Windows.Forms.ToolStripLabel();
     this.txtPermissionScope = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.btnClearPermission = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
     this.btnCopy = new System.Windows.Forms.ToolStripButton();
     this.btnPaste = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.btnClose = new System.Windows.Forms.ToolStripButton();
     this.panel2 = new System.Windows.Forms.Panel();
     ((System.ComponentModel.ISupportInitialize)(this.tcUser)).BeginInit();
     this.tcUser.SuspendLayout();
     this.tabControlPanel6.SuspendLayout();
     this.tabControlPanel5.SuspendLayout();
     this.tabControlPanel4.SuspendLayout();
     this.tabControlPanel2.SuspendLayout();
     this.tabControlPanel3.SuspendLayout();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.tlsTool.SuspendLayout();
     this.SuspendLayout();
     //
     // tcUser
     //
     this.tcUser.BackColor = System.Drawing.SystemColors.Window;
     this.tcUser.CanReorderTabs = true;
     this.tcUser.Controls.Add(this.tabControlPanel6);
     this.tcUser.Controls.Add(this.tabControlPanel5);
     this.tcUser.Controls.Add(this.tabControlPanel4);
     this.tcUser.Controls.Add(this.tabControlPanel3);
     this.tcUser.Controls.Add(this.tabControlPanel2);
     this.tcUser.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tcUser.Location = new System.Drawing.Point(0, 0);
     this.tcUser.Name = "tcUser";
     this.tcUser.SelectedTabFont = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold);
     this.tcUser.SelectedTabIndex = 0;
     this.tcUser.Size = new System.Drawing.Size(837, 589);
     this.tcUser.Style = DevComponents.DotNetBar.eTabStripStyle.VS2005;
     this.tcUser.TabIndex = 19;
     this.tcUser.TabLayoutType = DevComponents.DotNetBar.eTabLayoutType.FixedWithNavigationBox;
     this.tcUser.Tabs.Add(this.tabItemUser);
     this.tcUser.Tabs.Add(this.tabItemRole);
     this.tcUser.Tabs.Add(this.tabItemOrganize);
     this.tcUser.Tabs.Add(this.tabItemModule);
     this.tcUser.Tabs.Add(this.tabItemPermissionItem);
     //
     // tabControlPanel6
     //
     this.tabControlPanel6.Controls.Add(this.tvPermissionItem);
     this.tabControlPanel6.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel6.Location = new System.Drawing.Point(0, 27);
     this.tabControlPanel6.Name = "tabControlPanel6";
     this.tabControlPanel6.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel6.Size = new System.Drawing.Size(837, 562);
     this.tabControlPanel6.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(246)))), ((int)(((byte)(245)))), ((int)(((byte)(244)))));
     this.tabControlPanel6.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(251)))), ((int)(((byte)(251)))), ((int)(((byte)(251)))));
     this.tabControlPanel6.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel6.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
     | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel6.Style.GradientAngle = 90;
     this.tabControlPanel6.TabIndex = 5;
     this.tabControlPanel6.TabItem = this.tabItemPermissionItem;
     //
     // tvPermissionItem
     //
     this.tvPermissionItem.AllowDrop = true;
     this.tvPermissionItem.CheckBoxes = true;
     this.tvPermissionItem.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tvPermissionItem.Enabled = false;
     this.tvPermissionItem.HotTracking = true;
     this.tvPermissionItem.ImageIndex = 0;
     this.tvPermissionItem.ImageList = this.imgList;
     this.tvPermissionItem.Location = new System.Drawing.Point(1, 1);
     this.tvPermissionItem.Margin = new System.Windows.Forms.Padding(0, 3, 0, 3);
     this.tvPermissionItem.Name = "tvPermissionItem";
     this.tvPermissionItem.SelectedImageIndex = 1;
     this.tvPermissionItem.Size = new System.Drawing.Size(835, 560);
     this.tvPermissionItem.TabIndex = 3;
     this.tvPermissionItem.AfterCheck += new System.Windows.Forms.TreeViewEventHandler(this.tvPermissionItem_AfterCheck);
     this.tvPermissionItem.MouseDown += new System.Windows.Forms.MouseEventHandler(this.tvPermissionItem_MouseDown);
     //
     // imgList
     //
     this.imgList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imgList.ImageStream")));
     this.imgList.TransparentColor = System.Drawing.Color.Transparent;
     this.imgList.Images.SetKeyName(0, "button.png");
     this.imgList.Images.SetKeyName(1, "ok.png");
     this.imgList.Images.SetKeyName(2, "menu1.png");
     this.imgList.Images.SetKeyName(3, "menu2.png");
     this.imgList.Images.SetKeyName(4, "company.ico");
     //
     // tabItemPermissionItem
     //
     this.tabItemPermissionItem.AttachedControl = this.tabControlPanel6;
     this.tabItemPermissionItem.Image = ((System.Drawing.Image)(resources.GetObject("tabItemPermissionItem.Image")));
     this.tabItemPermissionItem.Name = "tabItemPermissionItem";
     this.tabItemPermissionItem.Text = "可分配的操作(功能)权限";
     //
     // tabControlPanel5
     //
     this.tabControlPanel5.Controls.Add(this.tvModule);
     this.tabControlPanel5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel5.Location = new System.Drawing.Point(0, 27);
     this.tabControlPanel5.Name = "tabControlPanel5";
     this.tabControlPanel5.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel5.Size = new System.Drawing.Size(837, 562);
     this.tabControlPanel5.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(246)))), ((int)(((byte)(245)))), ((int)(((byte)(244)))));
     this.tabControlPanel5.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(251)))), ((int)(((byte)(251)))), ((int)(((byte)(251)))));
     this.tabControlPanel5.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel5.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
     | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel5.Style.GradientAngle = 90;
     this.tabControlPanel5.TabIndex = 4;
     this.tabControlPanel5.TabItem = this.tabItemModule;
     //
     // tvModule
     //
     this.tvModule.AllowDrop = true;
     this.tvModule.CheckBoxes = true;
     this.tvModule.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tvModule.Enabled = false;
     this.tvModule.ImageIndex = 2;
     this.tvModule.ImageList = this.imgList;
     this.tvModule.Location = new System.Drawing.Point(1, 1);
     this.tvModule.Name = "tvModule";
     this.tvModule.SelectedImageIndex = 3;
     this.tvModule.Size = new System.Drawing.Size(835, 560);
     this.tvModule.TabIndex = 3;
     this.tvModule.AfterCheck += new System.Windows.Forms.TreeViewEventHandler(this.tvModule_AfterCheck);
     this.tvModule.MouseDown += new System.Windows.Forms.MouseEventHandler(this.tvModule_MouseDown);
     //
     // tabItemModule
     //
     this.tabItemModule.AttachedControl = this.tabControlPanel5;
     this.tabItemModule.Image = ((System.Drawing.Image)(resources.GetObject("tabItemModule.Image")));
     this.tabItemModule.Name = "tabItemModule";
     this.tabItemModule.Text = "模块(菜单)";
     //
     // tabControlPanel4
     //
     this.tabControlPanel4.Controls.Add(this.tvOrganize);
     this.tabControlPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel4.Location = new System.Drawing.Point(0, 27);
     this.tabControlPanel4.Name = "tabControlPanel4";
     this.tabControlPanel4.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel4.Size = new System.Drawing.Size(837, 562);
     this.tabControlPanel4.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(246)))), ((int)(((byte)(245)))), ((int)(((byte)(244)))));
     this.tabControlPanel4.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(251)))), ((int)(((byte)(251)))), ((int)(((byte)(251)))));
     this.tabControlPanel4.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel4.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
     | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel4.Style.GradientAngle = 90;
     this.tabControlPanel4.TabIndex = 3;
     this.tabControlPanel4.TabItem = this.tabItemOrganize;
     //
     // tvOrganize
     //
     this.tvOrganize.CheckBoxes = true;
     this.tvOrganize.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tvOrganize.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
     this.tvOrganize.ImageIndex = 4;
     this.tvOrganize.ImageList = this.imgList;
     this.tvOrganize.Location = new System.Drawing.Point(1, 1);
     this.tvOrganize.Name = "tvOrganize";
     this.tvOrganize.SelectedImageIndex = 1;
     this.tvOrganize.Size = new System.Drawing.Size(835, 560);
     this.tvOrganize.TabIndex = 9;
     this.tvOrganize.AfterCheck += new System.Windows.Forms.TreeViewEventHandler(this.tvOrganize_AfterCheck);
     this.tvOrganize.MouseDown += new System.Windows.Forms.MouseEventHandler(this.tvOrganize_MouseDown_1);
     //
     // tabItemOrganize
     //
     this.tabItemOrganize.AttachedControl = this.tabControlPanel4;
     this.tabItemOrganize.Image = ((System.Drawing.Image)(resources.GetObject("tabItemOrganize.Image")));
     this.tabItemOrganize.Name = "tabItemOrganize";
     this.tabItemOrganize.Text = "组织机构";
     //
     // tabControlPanel2
     //
     this.tabControlPanel2.Controls.Add(this.cklstUser);
     this.tabControlPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel2.Location = new System.Drawing.Point(0, 27);
     this.tabControlPanel2.Name = "tabControlPanel2";
     this.tabControlPanel2.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel2.Size = new System.Drawing.Size(837, 562);
     this.tabControlPanel2.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(246)))), ((int)(((byte)(245)))), ((int)(((byte)(244)))));
     this.tabControlPanel2.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(251)))), ((int)(((byte)(251)))), ((int)(((byte)(251)))));
     this.tabControlPanel2.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel2.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
     | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel2.Style.GradientAngle = 90;
     this.tabControlPanel2.TabIndex = 1;
     this.tabControlPanel2.TabItem = this.tabItemUser;
     this.tabControlPanel2.Text = "归属角色";
     //
     // cklstUser
     //
     this.cklstUser.Dock = System.Windows.Forms.DockStyle.Fill;
     this.cklstUser.Enabled = false;
     this.cklstUser.FormattingEnabled = true;
     this.cklstUser.Location = new System.Drawing.Point(1, 1);
     this.cklstUser.MultiColumn = true;
     this.cklstUser.Name = "cklstUser";
     this.cklstUser.Size = new System.Drawing.Size(835, 560);
     this.cklstUser.TabIndex = 2;
     this.cklstUser.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.cklstUser_ItemCheck);
     //
     // tabItemUser
     //
     this.tabItemUser.AttachedControl = this.tabControlPanel2;
     this.tabItemUser.Image = ((System.Drawing.Image)(resources.GetObject("tabItemUser.Image")));
     this.tabItemUser.Name = "tabItemUser";
     this.tabItemUser.Text = "用户";
     //
     // tabControlPanel3
     //
     this.tabControlPanel3.Controls.Add(this.cklstRole);
     this.tabControlPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel3.Location = new System.Drawing.Point(0, 27);
     this.tabControlPanel3.Name = "tabControlPanel3";
     this.tabControlPanel3.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel3.Size = new System.Drawing.Size(837, 562);
     this.tabControlPanel3.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(246)))), ((int)(((byte)(245)))), ((int)(((byte)(244)))));
     this.tabControlPanel3.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(251)))), ((int)(((byte)(251)))), ((int)(((byte)(251)))));
     this.tabControlPanel3.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel3.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
     | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel3.Style.GradientAngle = 90;
     this.tabControlPanel3.TabIndex = 2;
     this.tabControlPanel3.TabItem = this.tabItemRole;
     //
     // cklstRole
     //
     this.cklstRole.Dock = System.Windows.Forms.DockStyle.Fill;
     this.cklstRole.Enabled = false;
     this.cklstRole.FormattingEnabled = true;
     this.cklstRole.Location = new System.Drawing.Point(1, 1);
     this.cklstRole.MultiColumn = true;
     this.cklstRole.Name = "cklstRole";
     this.cklstRole.Size = new System.Drawing.Size(835, 560);
     this.cklstRole.TabIndex = 2;
     this.cklstRole.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.cklstRole_ItemCheck);
     //
     // tabItemRole
     //
     this.tabItemRole.AttachedControl = this.tabControlPanel3;
     this.tabItemRole.Image = ((System.Drawing.Image)(resources.GetObject("tabItemRole.Image")));
     this.tabItemRole.Name = "tabItemRole";
     this.tabItemRole.Text = "角色";
     //
     // panel1
     //
     this.panel1.Controls.Add(this.tcUser);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(837, 589);
     this.panel1.TabIndex = 0;
     //
     // splitContainer1
     //
     this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
     this.splitContainer1.Location = new System.Drawing.Point(0, 25);
     this.splitContainer1.Name = "splitContainer1";
     this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
     this.splitContainer1.Panel1Collapsed = true;
     this.splitContainer1.Panel1MinSize = 80;
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.panel1);
     this.splitContainer1.Size = new System.Drawing.Size(837, 589);
     this.splitContainer1.SplitterDistance = 80;
     this.splitContainer1.TabIndex = 11;
     //
     // tabItem1
     //
     this.tabItem1.Name = "tabItem1";
     this.tabItem1.Text = "资源(组织机构)";
     //
     // tlsTool
     //
     this.tlsTool.AutoSize = false;
     this.tlsTool.Font = new System.Drawing.Font("宋体", 11F);
     this.tlsTool.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.lblCurrentRole,
     this.txtRole,
     this.lblPermissionScope,
     this.txtPermissionScope,
     this.toolStripSeparator2,
     this.btnClearPermission,
     this.toolStripSeparator5,
     this.btnCopy,
     this.btnPaste,
     this.toolStripSeparator1,
     this.btnClose});
     this.tlsTool.Location = new System.Drawing.Point(0, 0);
     this.tlsTool.Name = "tlsTool";
     this.tlsTool.Size = new System.Drawing.Size(837, 25);
     this.tlsTool.TabIndex = 19;
     this.tlsTool.Text = "toolStrip1";
     //
     // lblCurrentRole
     //
     this.lblCurrentRole.Name = "lblCurrentRole";
     this.lblCurrentRole.Size = new System.Drawing.Size(82, 22);
     this.lblCurrentRole.Text = "当前角色:";
     //
     // txtRole
     //
     this.txtRole.BackColor = System.Drawing.SystemColors.Info;
     this.txtRole.Name = "txtRole";
     this.txtRole.ReadOnly = true;
     this.txtRole.Size = new System.Drawing.Size(100, 25);
     //
     // lblPermissionScope
     //
     this.lblPermissionScope.Name = "lblPermissionScope";
     this.lblPermissionScope.Size = new System.Drawing.Size(97, 22);
     this.lblPermissionScope.Text = "数据集权限:";
     //
     // txtPermissionScope
     //
     this.txtPermissionScope.BackColor = System.Drawing.SystemColors.Info;
     this.txtPermissionScope.Name = "txtPermissionScope";
     this.txtPermissionScope.ReadOnly = true;
     this.txtPermissionScope.Size = new System.Drawing.Size(100, 25);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
     //
     // btnClearPermission
     //
     this.btnClearPermission.Image = ((System.Drawing.Image)(resources.GetObject("btnClearPermission.Image")));
     this.btnClearPermission.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnClearPermission.Name = "btnClearPermission";
     this.btnClearPermission.Size = new System.Drawing.Size(111, 22);
     this.btnClearPermission.Text = "清除权限(&C)";
     this.btnClearPermission.ToolTipText = "清除权限";
     this.btnClearPermission.Click += new System.EventHandler(this.btnClearPermission_Click);
     //
     // toolStripSeparator5
     //
     this.toolStripSeparator5.Name = "toolStripSeparator5";
     this.toolStripSeparator5.Size = new System.Drawing.Size(6, 25);
     //
     // btnCopy
     //
     this.btnCopy.Image = ((System.Drawing.Image)(resources.GetObject("btnCopy.Image")));
     this.btnCopy.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnCopy.Name = "btnCopy";
     this.btnCopy.Size = new System.Drawing.Size(87, 22);
     this.btnCopy.Text = "复制权限";
     this.btnCopy.Click += new System.EventHandler(this.btnCopy_Click);
     //
     // btnPaste
     //
     this.btnPaste.Image = ((System.Drawing.Image)(resources.GetObject("btnPaste.Image")));
     this.btnPaste.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnPaste.Name = "btnPaste";
     this.btnPaste.Size = new System.Drawing.Size(87, 22);
     this.btnPaste.Text = "粘贴权限";
     this.btnPaste.Click += new System.EventHandler(this.btnPaste_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // btnClose
     //
     this.btnClose.Image = ((System.Drawing.Image)(resources.GetObject("btnClose.Image")));
     this.btnClose.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnClose.Name = "btnClose";
     this.btnClose.Size = new System.Drawing.Size(57, 22);
     this.btnClose.Text = "关闭";
     this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
     //
     // panel2
     //
     this.panel2.Dock = System.Windows.Forms.DockStyle.Top;
     this.panel2.Location = new System.Drawing.Point(0, 25);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(837, 5);
     this.panel2.TabIndex = 22;
     //
     // FrmRolePermissionScope
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(837, 614);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.splitContainer1);
     this.Controls.Add(this.tlsTool);
     this.Name = "FrmRolePermissionScope";
     this.Text = "角色授权范围(资源管理权限)";
     ((System.ComponentModel.ISupportInitialize)(this.tcUser)).EndInit();
     this.tcUser.ResumeLayout(false);
     this.tabControlPanel6.ResumeLayout(false);
     this.tabControlPanel5.ResumeLayout(false);
     this.tabControlPanel4.ResumeLayout(false);
     this.tabControlPanel2.ResumeLayout(false);
     this.tabControlPanel3.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
     this.splitContainer1.ResumeLayout(false);
     this.tlsTool.ResumeLayout(false);
     this.tlsTool.PerformLayout();
     this.ResumeLayout(false);
 }
Beispiel #31
0
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ucQueryWindow));
     this.splitContainer1                  = new System.Windows.Forms.SplitContainer();
     this.txtQuery                         = new System.Windows.Forms.TextBox();
     this.bindingNavigator1                = new System.Windows.Forms.BindingNavigator(this.components);
     this.bindingNavigatorAddNewItem       = new System.Windows.Forms.ToolStripButton();
     this.bindingSource1                   = new System.Windows.Forms.BindingSource(this.components);
     this.bindingNavigatorCountItem        = new System.Windows.Forms.ToolStripLabel();
     this.bindingNavigatorDeleteItem       = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMoveFirstItem    = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMovePreviousItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator        = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorPositionItem     = new System.Windows.Forms.ToolStripTextBox();
     this.bindingNavigatorSeparator1       = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorMoveNextItem     = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMoveLastItem     = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator2       = new System.Windows.Forms.ToolStripSeparator();
     this.btnSaveData                      = new System.Windows.Forms.ToolStripButton();
     this.gridResults                      = new System.Windows.Forms.DataGridView();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bindingNavigator1)).BeginInit();
     this.bindingNavigator1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridResults)).BeginInit();
     this.SuspendLayout();
     //
     // splitContainer1
     //
     this.splitContainer1.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.Location    = new System.Drawing.Point(0, 0);
     this.splitContainer1.Name        = "splitContainer1";
     this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.txtQuery);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.bindingNavigator1);
     this.splitContainer1.Panel2.Controls.Add(this.gridResults);
     this.splitContainer1.Size             = new System.Drawing.Size(967, 667);
     this.splitContainer1.SplitterDistance = 321;
     this.splitContainer1.TabIndex         = 0;
     //
     // txtQuery
     //
     this.txtQuery.Dock       = System.Windows.Forms.DockStyle.Fill;
     this.txtQuery.Location   = new System.Drawing.Point(0, 0);
     this.txtQuery.Multiline  = true;
     this.txtQuery.Name       = "txtQuery";
     this.txtQuery.ScrollBars = System.Windows.Forms.ScrollBars.Both;
     this.txtQuery.Size       = new System.Drawing.Size(967, 321);
     this.txtQuery.TabIndex   = 0;
     //
     // bindingNavigator1
     //
     this.bindingNavigator1.AddNewItem       = this.bindingNavigatorAddNewItem;
     this.bindingNavigator1.BindingSource    = this.bindingSource1;
     this.bindingNavigator1.CountItem        = this.bindingNavigatorCountItem;
     this.bindingNavigator1.DeleteItem       = this.bindingNavigatorDeleteItem;
     this.bindingNavigator1.ImageScalingSize = new System.Drawing.Size(20, 20);
     this.bindingNavigator1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.bindingNavigatorMoveFirstItem,
         this.bindingNavigatorMovePreviousItem,
         this.bindingNavigatorSeparator,
         this.bindingNavigatorPositionItem,
         this.bindingNavigatorCountItem,
         this.bindingNavigatorSeparator1,
         this.bindingNavigatorMoveNextItem,
         this.bindingNavigatorMoveLastItem,
         this.bindingNavigatorSeparator2,
         this.bindingNavigatorAddNewItem,
         this.bindingNavigatorDeleteItem,
         this.btnSaveData
     });
     this.bindingNavigator1.Location         = new System.Drawing.Point(0, 0);
     this.bindingNavigator1.MoveFirstItem    = this.bindingNavigatorMoveFirstItem;
     this.bindingNavigator1.MoveLastItem     = this.bindingNavigatorMoveLastItem;
     this.bindingNavigator1.MoveNextItem     = this.bindingNavigatorMoveNextItem;
     this.bindingNavigator1.MovePreviousItem = this.bindingNavigatorMovePreviousItem;
     this.bindingNavigator1.Name             = "bindingNavigator1";
     this.bindingNavigator1.PositionItem     = this.bindingNavigatorPositionItem;
     this.bindingNavigator1.Size             = new System.Drawing.Size(967, 27);
     this.bindingNavigator1.TabIndex         = 1;
     this.bindingNavigator1.Text             = "bindingNavigator1";
     //
     // bindingNavigatorAddNewItem
     //
     this.bindingNavigatorAddNewItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorAddNewItem.Image        = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorAddNewItem.Image")));
     this.bindingNavigatorAddNewItem.Name         = "bindingNavigatorAddNewItem";
     this.bindingNavigatorAddNewItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorAddNewItem.Size = new System.Drawing.Size(24, 24);
     this.bindingNavigatorAddNewItem.Text = "Add new";
     //
     // bindingNavigatorCountItem
     //
     this.bindingNavigatorCountItem.Name        = "bindingNavigatorCountItem";
     this.bindingNavigatorCountItem.Size        = new System.Drawing.Size(45, 24);
     this.bindingNavigatorCountItem.Text        = "of {0}";
     this.bindingNavigatorCountItem.ToolTipText = "Total number of items";
     //
     // bindingNavigatorDeleteItem
     //
     this.bindingNavigatorDeleteItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorDeleteItem.Image        = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorDeleteItem.Image")));
     this.bindingNavigatorDeleteItem.Name         = "bindingNavigatorDeleteItem";
     this.bindingNavigatorDeleteItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorDeleteItem.Size = new System.Drawing.Size(24, 24);
     this.bindingNavigatorDeleteItem.Text = "Delete";
     //
     // bindingNavigatorMoveFirstItem
     //
     this.bindingNavigatorMoveFirstItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveFirstItem.Image        = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveFirstItem.Image")));
     this.bindingNavigatorMoveFirstItem.Name         = "bindingNavigatorMoveFirstItem";
     this.bindingNavigatorMoveFirstItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveFirstItem.Size = new System.Drawing.Size(24, 24);
     this.bindingNavigatorMoveFirstItem.Text = "Move first";
     //
     // bindingNavigatorMovePreviousItem
     //
     this.bindingNavigatorMovePreviousItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMovePreviousItem.Image        = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMovePreviousItem.Image")));
     this.bindingNavigatorMovePreviousItem.Name         = "bindingNavigatorMovePreviousItem";
     this.bindingNavigatorMovePreviousItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMovePreviousItem.Size = new System.Drawing.Size(24, 24);
     this.bindingNavigatorMovePreviousItem.Text = "Move previous";
     //
     // bindingNavigatorSeparator
     //
     this.bindingNavigatorSeparator.Name = "bindingNavigatorSeparator";
     this.bindingNavigatorSeparator.Size = new System.Drawing.Size(6, 27);
     //
     // bindingNavigatorPositionItem
     //
     this.bindingNavigatorPositionItem.AccessibleName = "Position";
     this.bindingNavigatorPositionItem.AutoSize       = false;
     this.bindingNavigatorPositionItem.Name           = "bindingNavigatorPositionItem";
     this.bindingNavigatorPositionItem.Size           = new System.Drawing.Size(50, 27);
     this.bindingNavigatorPositionItem.Text           = "0";
     this.bindingNavigatorPositionItem.ToolTipText    = "Current position";
     //
     // bindingNavigatorSeparator1
     //
     this.bindingNavigatorSeparator1.Name = "bindingNavigatorSeparator1";
     this.bindingNavigatorSeparator1.Size = new System.Drawing.Size(6, 27);
     //
     // bindingNavigatorMoveNextItem
     //
     this.bindingNavigatorMoveNextItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveNextItem.Image        = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveNextItem.Image")));
     this.bindingNavigatorMoveNextItem.Name         = "bindingNavigatorMoveNextItem";
     this.bindingNavigatorMoveNextItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveNextItem.Size = new System.Drawing.Size(24, 24);
     this.bindingNavigatorMoveNextItem.Text = "Move next";
     //
     // bindingNavigatorMoveLastItem
     //
     this.bindingNavigatorMoveLastItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveLastItem.Image        = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveLastItem.Image")));
     this.bindingNavigatorMoveLastItem.Name         = "bindingNavigatorMoveLastItem";
     this.bindingNavigatorMoveLastItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveLastItem.Size = new System.Drawing.Size(24, 24);
     this.bindingNavigatorMoveLastItem.Text = "Move last";
     //
     // bindingNavigatorSeparator2
     //
     this.bindingNavigatorSeparator2.Name = "bindingNavigatorSeparator2";
     this.bindingNavigatorSeparator2.Size = new System.Drawing.Size(6, 27);
     //
     // btnSaveData
     //
     this.btnSaveData.Enabled = false;
     this.btnSaveData.Image   = ((System.Drawing.Image)(resources.GetObject("btnSaveData.Image")));
     this.btnSaveData.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnSaveData.Name = "btnSaveData";
     this.btnSaveData.Size = new System.Drawing.Size(64, 24);
     this.btnSaveData.Text = "Save";
     //
     // gridResults
     //
     this.gridResults.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                      | System.Windows.Forms.AnchorStyles.Left)
                                                                     | System.Windows.Forms.AnchorStyles.Right)));
     this.gridResults.AutoGenerateColumns         = false;
     this.gridResults.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.gridResults.DataSource         = this.bindingSource1;
     this.gridResults.Location           = new System.Drawing.Point(0, 30);
     this.gridResults.Name               = "gridResults";
     this.gridResults.RowTemplate.Height = 24;
     this.gridResults.Size               = new System.Drawing.Size(967, 312);
     this.gridResults.TabIndex           = 0;
     //
     // ucQueryWindow
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.splitContainer1);
     this.Name = "ucQueryWindow";
     this.Size = new System.Drawing.Size(967, 667);
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel1.PerformLayout();
     this.splitContainer1.Panel2.ResumeLayout(false);
     this.splitContainer1.Panel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
     this.splitContainer1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.bindingNavigator1)).EndInit();
     this.bindingNavigator1.ResumeLayout(false);
     this.bindingNavigator1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridResults)).EndInit();
     this.ResumeLayout(false);
 }
 /// <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(frmXuLyDonDatHang));
     this.statusStrip1 = new System.Windows.Forms.StatusStrip();
     this.toolStripStatus_Them = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatus_Ghilai = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel3 = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripDropDownButton1 = new System.Windows.Forms.ToolStripDropDownButton();
     this.thiêtLâpThôngSôToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.xoaChưngTưHiênThơiToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.huyĐơnĐătHangHiênThơiToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.saoChepChưngTưTưToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.saoChepChưngTưSangNhâpHangToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.saoChepChưngTưToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripStatusLabel4 = new System.Windows.Forms.ToolStripStatusLabel();
     this.palNhap = new System.Windows.Forms.Panel();
     this.txtTrangthaidonhang = new System.Windows.Forms.TextBox();
     this.lblTennhacungcap = new System.Windows.Forms.Label();
     this.check_loaidathang = new System.Windows.Forms.CheckBox();
     this.txtPhuongthucvanchuyen = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.btnTimnhacungcap = new System.Windows.Forms.Button();
     this.lblDiengiai = new System.Windows.Forms.Label();
     this.txtDiengiai = new System.Windows.Forms.TextBox();
     this.txtGiatien = new System.Windows.Forms.TextBox();
     this.cbxTiente_Tygia = new System.Windows.Forms.ComboBox();
     this.lblTiente_Tygia = new System.Windows.Forms.Label();
     this.lblNhanvien = new System.Windows.Forms.Label();
     this.cbxNhanvien = new System.Windows.Forms.ComboBox();
     this.cbxHinhthucthanhtoan = new System.Windows.Forms.ComboBox();
     this.lblHinhthucthanhtoan = new System.Windows.Forms.Label();
     this.cbxMaKho = new System.Windows.Forms.ComboBox();
     this.cbxDieukienthanhtoan = new System.Windows.Forms.ComboBox();
     this.lblKhohang = new System.Windows.Forms.Label();
     this.lblDieukienthanhtoan = new System.Windows.Forms.Label();
     this.lblPhuongthucvanchuyen = new System.Windows.Forms.Label();
     this.makNgaynhapdukien = new System.Windows.Forms.MaskedTextBox();
     this.lblNgaynhapdukien = new System.Windows.Forms.Label();
     this.lblTrangthaidonhang = new System.Windows.Forms.Label();
     this.txtNohienthoi = new System.Windows.Forms.TextBox();
     this.lblNohienthoi = new System.Windows.Forms.Label();
     this.lblDinhdangngay = new System.Windows.Forms.LinkLabel();
     this.makNgaydonhang = new System.Windows.Forms.MaskedTextBox();
     this.lblNgaydonhang = new System.Windows.Forms.Label();
     this.txtManhacungcap = new System.Windows.Forms.TextBox();
     this.txtSodonhang = new System.Windows.Forms.TextBox();
     this.lblManhacungcap = new System.Windows.Forms.Label();
     this.lblSodonhang = new System.Windows.Forms.Label();
     this.palXem = new System.Windows.Forms.Panel();
     this.txtTongtien = new System.Windows.Forms.TextBox();
     this.lblTongtien = new System.Windows.Forms.Label();
     this.txtPhikhac = new System.Windows.Forms.TextBox();
     this.txtPhivanchuyen = new System.Windows.Forms.TextBox();
     this.lblPhivanchuyen_Phikhac = new System.Windows.Forms.Label();
     this.txtGiatrigiatang = new System.Windows.Forms.TextBox();
     this.lblGiatrigiatang = new System.Windows.Forms.Label();
     this.txtTienhang = new System.Windows.Forms.TextBox();
     this.txtChietkhau = new System.Windows.Forms.TextBox();
     this.lblChietkhau_Tienhang = new System.Windows.Forms.Label();
     this.txtPhantrang = new System.Windows.Forms.TextBox();
     this.grbDataGridview = new System.Windows.Forms.GroupBox();
     this.dgvInsertOrder = new System.Windows.Forms.DataGridView();
     this.palThem = new System.Windows.Forms.Panel();
     this.toolStrip_Insert = new System.Windows.Forms.ToolStrip();
     this.toolStrip_txtTracuu = new System.Windows.Forms.ToolStripTextBox();
     this.toolStrip_txtTenhang = new System.Windows.Forms.ToolStripTextBox();
     this.toolStrip_txtSoluong = new System.Windows.Forms.ToolStripTextBox();
     this.toolStrip_txtGiagoc = new System.Windows.Forms.ToolStripTextBox();
     this.toolStrip_txtChietkhauphantram = new System.Windows.Forms.ToolStripTextBox();
     this.toolStrip_txtGianhap = new System.Windows.Forms.ToolStripTextBox();
     this.toolStrip_txtChietkhau = new System.Windows.Forms.ToolStripTextBox();
     this.toolStrip_btnThem = new System.Windows.Forms.ToolStripButton();
     this.statusStrip1.SuspendLayout();
     this.palNhap.SuspendLayout();
     this.palXem.SuspendLayout();
     this.grbDataGridview.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgvInsertOrder)).BeginInit();
     this.palThem.SuspendLayout();
     this.toolStrip_Insert.SuspendLayout();
     this.SuspendLayout();
     //
     // statusStrip1
     //
     this.statusStrip1.Font = new System.Drawing.Font("Times New Roman", 14F);
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripStatus_Them,
     this.toolStripStatus_Ghilai,
     this.toolStripStatusLabel3,
     this.toolStripDropDownButton1,
     this.toolStripStatusLabel4});
     this.statusStrip1.Location = new System.Drawing.Point(0, 385);
     this.statusStrip1.Name = "statusStrip1";
     this.statusStrip1.Size = new System.Drawing.Size(753, 27);
     this.statusStrip1.TabIndex = 0;
     this.statusStrip1.Text = "statusStrip1";
     //
     // toolStripStatus_Them
     //
     this.toolStripStatus_Them.Image = global::GUI.Properties.Resources.Them;
     this.toolStripStatus_Them.Name = "toolStripStatus_Them";
     this.toolStripStatus_Them.Size = new System.Drawing.Size(165, 22);
     this.toolStripStatus_Them.Spring = true;
     this.toolStripStatus_Them.Text = "Thêm";
     this.toolStripStatus_Them.Click += new System.EventHandler(this.toolStripStatusLabel1_Click);
     //
     // toolStripStatus_Ghilai
     //
     this.toolStripStatus_Ghilai.Image = global::GUI.Properties.Resources.Luu;
     this.toolStripStatus_Ghilai.Name = "toolStripStatus_Ghilai";
     this.toolStripStatus_Ghilai.Size = new System.Drawing.Size(165, 22);
     this.toolStripStatus_Ghilai.Spring = true;
     this.toolStripStatus_Ghilai.Text = "Sửa";
     this.toolStripStatus_Ghilai.Click += new System.EventHandler(this.toolStripStatusLabel2_Click);
     //
     // toolStripStatusLabel3
     //
     this.toolStripStatusLabel3.Image = global::GUI.Properties.Resources.In;
     this.toolStripStatusLabel3.Name = "toolStripStatusLabel3";
     this.toolStripStatusLabel3.Size = new System.Drawing.Size(165, 22);
     this.toolStripStatusLabel3.Spring = true;
     this.toolStripStatusLabel3.Text = "In";
     this.toolStripStatusLabel3.Click += new System.EventHandler(this.toolStripStatusLabel3_Click);
     //
     // toolStripDropDownButton1
     //
     this.toolStripDropDownButton1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.thiêtLâpThôngSôToolStripMenuItem,
     this.xoaChưngTưHiênThơiToolStripMenuItem,
     this.huyĐơnĐătHangHiênThơiToolStripMenuItem,
     this.saoChepChưngTưTưToolStripMenuItem,
     this.saoChepChưngTưSangNhâpHangToolStripMenuItem,
     this.saoChepChưngTưToolStripMenuItem});
     this.toolStripDropDownButton1.Image = global::GUI.Properties.Resources.khac;
     this.toolStripDropDownButton1.Name = "toolStripDropDownButton1";
     this.toolStripDropDownButton1.Size = new System.Drawing.Size(78, 25);
     this.toolStripDropDownButton1.Text = "Khác";
     //
     // thiêtLâpThôngSôToolStripMenuItem
     //
     this.thiêtLâpThôngSôToolStripMenuItem.Name = "thiêtLâpThôngSôToolStripMenuItem";
     this.thiêtLâpThôngSôToolStripMenuItem.Size = new System.Drawing.Size(374, 26);
     this.thiêtLâpThôngSôToolStripMenuItem.Text = "Thiết lập thông số";
     this.thiêtLâpThôngSôToolStripMenuItem.Click += new System.EventHandler(this.thiêtLâpThôngSôToolStripMenuItem_Click);
     //
     // xoaChưngTưHiênThơiToolStripMenuItem
     //
     this.xoaChưngTưHiênThơiToolStripMenuItem.Name = "xoaChưngTưHiênThơiToolStripMenuItem";
     this.xoaChưngTưHiênThơiToolStripMenuItem.Size = new System.Drawing.Size(374, 26);
     this.xoaChưngTưHiênThơiToolStripMenuItem.Text = "Xóa chứng từ hiện thời";
     //
     // huyĐơnĐătHangHiênThơiToolStripMenuItem
     //
     this.huyĐơnĐătHangHiênThơiToolStripMenuItem.Name = "huyĐơnĐătHangHiênThơiToolStripMenuItem";
     this.huyĐơnĐătHangHiênThơiToolStripMenuItem.Size = new System.Drawing.Size(374, 26);
     this.huyĐơnĐătHangHiênThơiToolStripMenuItem.Text = "Hủy đơn đặt hàng hiện thời";
     //
     // saoChepChưngTưTưToolStripMenuItem
     //
     this.saoChepChưngTưTưToolStripMenuItem.Name = "saoChepChưngTưTưToolStripMenuItem";
     this.saoChepChưngTưTưToolStripMenuItem.Size = new System.Drawing.Size(374, 26);
     this.saoChepChưngTưTưToolStripMenuItem.Text = "Sao chép từ chứng từ...";
     //
     // saoChepChưngTưSangNhâpHangToolStripMenuItem
     //
     this.saoChepChưngTưSangNhâpHangToolStripMenuItem.Name = "saoChepChưngTưSangNhâpHangToolStripMenuItem";
     this.saoChepChưngTưSangNhâpHangToolStripMenuItem.Size = new System.Drawing.Size(374, 26);
     this.saoChepChưngTưSangNhâpHangToolStripMenuItem.Text = "Sao chép chứng từ sang nhập hàng";
     //
     // saoChepChưngTưToolStripMenuItem
     //
     this.saoChepChưngTưToolStripMenuItem.Name = "saoChepChưngTưToolStripMenuItem";
     this.saoChepChưngTưToolStripMenuItem.Size = new System.Drawing.Size(374, 26);
     this.saoChepChưngTưToolStripMenuItem.Text = "Sao chép chứng từ thành Chứng từ mới";
     //
     // toolStripStatusLabel4
     //
     this.toolStripStatusLabel4.Image = global::GUI.Properties.Resources.Xoa;
     this.toolStripStatusLabel4.Name = "toolStripStatusLabel4";
     this.toolStripStatusLabel4.Size = new System.Drawing.Size(165, 22);
     this.toolStripStatusLabel4.Spring = true;
     this.toolStripStatusLabel4.Text = "Đóng";
     this.toolStripStatusLabel4.Click += new System.EventHandler(this.toolStripStatusLabel4_Click);
     //
     // palNhap
     //
     this.palNhap.Controls.Add(this.txtTrangthaidonhang);
     this.palNhap.Controls.Add(this.lblTennhacungcap);
     this.palNhap.Controls.Add(this.check_loaidathang);
     this.palNhap.Controls.Add(this.txtPhuongthucvanchuyen);
     this.palNhap.Controls.Add(this.label1);
     this.palNhap.Controls.Add(this.btnTimnhacungcap);
     this.palNhap.Controls.Add(this.lblDiengiai);
     this.palNhap.Controls.Add(this.txtDiengiai);
     this.palNhap.Controls.Add(this.txtGiatien);
     this.palNhap.Controls.Add(this.cbxTiente_Tygia);
     this.palNhap.Controls.Add(this.lblTiente_Tygia);
     this.palNhap.Controls.Add(this.lblNhanvien);
     this.palNhap.Controls.Add(this.cbxNhanvien);
     this.palNhap.Controls.Add(this.cbxHinhthucthanhtoan);
     this.palNhap.Controls.Add(this.lblHinhthucthanhtoan);
     this.palNhap.Controls.Add(this.cbxMaKho);
     this.palNhap.Controls.Add(this.cbxDieukienthanhtoan);
     this.palNhap.Controls.Add(this.lblKhohang);
     this.palNhap.Controls.Add(this.lblDieukienthanhtoan);
     this.palNhap.Controls.Add(this.lblPhuongthucvanchuyen);
     this.palNhap.Controls.Add(this.makNgaynhapdukien);
     this.palNhap.Controls.Add(this.lblNgaynhapdukien);
     this.palNhap.Controls.Add(this.lblTrangthaidonhang);
     this.palNhap.Controls.Add(this.txtNohienthoi);
     this.palNhap.Controls.Add(this.lblNohienthoi);
     this.palNhap.Controls.Add(this.lblDinhdangngay);
     this.palNhap.Controls.Add(this.makNgaydonhang);
     this.palNhap.Controls.Add(this.lblNgaydonhang);
     this.palNhap.Controls.Add(this.txtManhacungcap);
     this.palNhap.Controls.Add(this.txtSodonhang);
     this.palNhap.Controls.Add(this.lblManhacungcap);
     this.palNhap.Controls.Add(this.lblSodonhang);
     this.palNhap.Dock = System.Windows.Forms.DockStyle.Top;
     this.palNhap.Location = new System.Drawing.Point(0, 0);
     this.palNhap.Name = "palNhap";
     this.palNhap.Size = new System.Drawing.Size(753, 211);
     this.palNhap.TabIndex = 1;
     this.palNhap.Paint += new System.Windows.Forms.PaintEventHandler(this.palNhap_Paint);
     //
     // txtTrangthaidonhang
     //
     this.txtTrangthaidonhang.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.txtTrangthaidonhang.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtTrangthaidonhang.Location = new System.Drawing.Point(128, 67);
     this.txtTrangthaidonhang.Name = "txtTrangthaidonhang";
     this.txtTrangthaidonhang.Size = new System.Drawing.Size(134, 20);
     this.txtTrangthaidonhang.TabIndex = 39;
     //
     // lblTennhacungcap
     //
     this.lblTennhacungcap.AutoSize = true;
     this.lblTennhacungcap.CausesValidation = false;
     this.lblTennhacungcap.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTennhacungcap.ForeColor = System.Drawing.Color.Blue;
     this.lblTennhacungcap.Location = new System.Drawing.Point(269, 45);
     this.lblTennhacungcap.Name = "lblTennhacungcap";
     this.lblTennhacungcap.Size = new System.Drawing.Size(0, 16);
     this.lblTennhacungcap.TabIndex = 38;
     //
     // check_loaidathang
     //
     this.check_loaidathang.AutoSize = true;
     this.check_loaidathang.Checked = true;
     this.check_loaidathang.CheckState = System.Windows.Forms.CheckState.Checked;
     this.check_loaidathang.Location = new System.Drawing.Point(128, 150);
     this.check_loaidathang.Name = "check_loaidathang";
     this.check_loaidathang.Size = new System.Drawing.Size(112, 17);
     this.check_loaidathang.TabIndex = 37;
     this.check_loaidathang.Text = "Đặt nhà cung cấp";
     this.check_loaidathang.UseVisualStyleBackColor = true;
     //
     // txtPhuongthucvanchuyen
     //
     this.txtPhuongthucvanchuyen.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtPhuongthucvanchuyen.Location = new System.Drawing.Point(572, 66);
     this.txtPhuongthucvanchuyen.Name = "txtPhuongthucvanchuyen";
     this.txtPhuongthucvanchuyen.Size = new System.Drawing.Size(169, 20);
     this.txtPhuongthucvanchuyen.TabIndex = 36;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(12, 153);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(76, 13);
     this.label1.TabIndex = 33;
     this.label1.Text = "Loại đặt hàng:";
     //
     // btnTimnhacungcap
     //
     this.btnTimnhacungcap.BackColor = System.Drawing.Color.Gray;
     this.btnTimnhacungcap.BackgroundImage = global::GUI.Properties.Resources.button_search;
     this.btnTimnhacungcap.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.btnTimnhacungcap.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnTimnhacungcap.ForeColor = System.Drawing.Color.Transparent;
     this.btnTimnhacungcap.Location = new System.Drawing.Point(234, 36);
     this.btnTimnhacungcap.Name = "btnTimnhacungcap";
     this.btnTimnhacungcap.Size = new System.Drawing.Size(28, 23);
     this.btnTimnhacungcap.TabIndex = 31;
     this.btnTimnhacungcap.UseVisualStyleBackColor = false;
     this.btnTimnhacungcap.Click += new System.EventHandler(this.btnTimnhacungcap_Click);
     //
     // lblDiengiai
     //
     this.lblDiengiai.AutoSize = true;
     this.lblDiengiai.Location = new System.Drawing.Point(13, 183);
     this.lblDiengiai.Name = "lblDiengiai";
     this.lblDiengiai.Size = new System.Drawing.Size(51, 13);
     this.lblDiengiai.TabIndex = 30;
     this.lblDiengiai.Text = "Diễn giải:";
     //
     // txtDiengiai
     //
     this.txtDiengiai.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtDiengiai.Location = new System.Drawing.Point(128, 177);
     this.txtDiengiai.Name = "txtDiengiai";
     this.txtDiengiai.Size = new System.Drawing.Size(613, 20);
     this.txtDiengiai.TabIndex = 29;
     //
     // txtGiatien
     //
     this.txtGiatien.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.txtGiatien.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtGiatien.Enabled = false;
     this.txtGiatien.Location = new System.Drawing.Point(504, 151);
     this.txtGiatien.Name = "txtGiatien";
     this.txtGiatien.ReadOnly = true;
     this.txtGiatien.Size = new System.Drawing.Size(238, 20);
     this.txtGiatien.TabIndex = 28;
     //
     // cbxTiente_Tygia
     //
     this.cbxTiente_Tygia.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbxTiente_Tygia.FormattingEnabled = true;
     this.cbxTiente_Tygia.Location = new System.Drawing.Point(376, 150);
     this.cbxTiente_Tygia.Name = "cbxTiente_Tygia";
     this.cbxTiente_Tygia.Size = new System.Drawing.Size(121, 21);
     this.cbxTiente_Tygia.TabIndex = 27;
     //
     // lblTiente_Tygia
     //
     this.lblTiente_Tygia.AutoSize = true;
     this.lblTiente_Tygia.Location = new System.Drawing.Point(270, 151);
     this.lblTiente_Tygia.Name = "lblTiente_Tygia";
     this.lblTiente_Tygia.Size = new System.Drawing.Size(77, 13);
     this.lblTiente_Tygia.TabIndex = 26;
     this.lblTiente_Tygia.Text = "Tiền tệ/Tỷ giá:";
     //
     // lblNhanvien
     //
     this.lblNhanvien.AutoSize = true;
     this.lblNhanvien.Location = new System.Drawing.Point(270, 124);
     this.lblNhanvien.Name = "lblNhanvien";
     this.lblNhanvien.Size = new System.Drawing.Size(59, 13);
     this.lblNhanvien.TabIndex = 25;
     this.lblNhanvien.Text = "Nhân viên:";
     //
     // cbxNhanvien
     //
     this.cbxNhanvien.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbxNhanvien.FormattingEnabled = true;
     this.cbxNhanvien.Location = new System.Drawing.Point(376, 122);
     this.cbxNhanvien.Name = "cbxNhanvien";
     this.cbxNhanvien.Size = new System.Drawing.Size(366, 21);
     this.cbxNhanvien.TabIndex = 24;
     //
     // cbxHinhthucthanhtoan
     //
     this.cbxHinhthucthanhtoan.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbxHinhthucthanhtoan.FormattingEnabled = true;
     this.cbxHinhthucthanhtoan.Location = new System.Drawing.Point(376, 95);
     this.cbxHinhthucthanhtoan.Name = "cbxHinhthucthanhtoan";
     this.cbxHinhthucthanhtoan.Size = new System.Drawing.Size(366, 21);
     this.cbxHinhthucthanhtoan.TabIndex = 23;
     //
     // lblHinhthucthanhtoan
     //
     this.lblHinhthucthanhtoan.AutoSize = true;
     this.lblHinhthucthanhtoan.Location = new System.Drawing.Point(270, 98);
     this.lblHinhthucthanhtoan.Name = "lblHinhthucthanhtoan";
     this.lblHinhthucthanhtoan.Size = new System.Drawing.Size(96, 13);
     this.lblHinhthucthanhtoan.TabIndex = 22;
     this.lblHinhthucthanhtoan.Text = "H.thức thanh toán:";
     //
     // cbxMaKho
     //
     this.cbxMaKho.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbxMaKho.FormattingEnabled = true;
     this.cbxMaKho.Location = new System.Drawing.Point(128, 122);
     this.cbxMaKho.Name = "cbxMaKho";
     this.cbxMaKho.Size = new System.Drawing.Size(134, 21);
     this.cbxMaKho.TabIndex = 21;
     //
     // cbxDieukienthanhtoan
     //
     this.cbxDieukienthanhtoan.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbxDieukienthanhtoan.FormattingEnabled = true;
     this.cbxDieukienthanhtoan.Location = new System.Drawing.Point(128, 95);
     this.cbxDieukienthanhtoan.Name = "cbxDieukienthanhtoan";
     this.cbxDieukienthanhtoan.Size = new System.Drawing.Size(134, 21);
     this.cbxDieukienthanhtoan.TabIndex = 20;
     //
     // lblKhohang
     //
     this.lblKhohang.AutoSize = true;
     this.lblKhohang.Location = new System.Drawing.Point(12, 121);
     this.lblKhohang.Name = "lblKhohang";
     this.lblKhohang.Size = new System.Drawing.Size(56, 13);
     this.lblKhohang.TabIndex = 19;
     this.lblKhohang.Text = "Kho hàng:";
     //
     // lblDieukienthanhtoan
     //
     this.lblDieukienthanhtoan.AutoSize = true;
     this.lblDieukienthanhtoan.Location = new System.Drawing.Point(12, 97);
     this.lblDieukienthanhtoan.Name = "lblDieukienthanhtoan";
     this.lblDieukienthanhtoan.Size = new System.Drawing.Size(109, 13);
     this.lblDieukienthanhtoan.TabIndex = 18;
     this.lblDieukienthanhtoan.Text = "Điều kiện thanh toán:";
     //
     // lblPhuongthucvanchuyen
     //
     this.lblPhuongthucvanchuyen.AutoSize = true;
     this.lblPhuongthucvanchuyen.Location = new System.Drawing.Point(483, 74);
     this.lblPhuongthucvanchuyen.Name = "lblPhuongthucvanchuyen";
     this.lblPhuongthucvanchuyen.Size = new System.Drawing.Size(88, 13);
     this.lblPhuongthucvanchuyen.TabIndex = 16;
     this.lblPhuongthucvanchuyen.Text = "P.thức v.chuyển:";
     //
     // makNgaynhapdukien
     //
     this.makNgaynhapdukien.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.makNgaynhapdukien.Location = new System.Drawing.Point(376, 68);
     this.makNgaynhapdukien.Mask = "00/00/0000";
     this.makNgaynhapdukien.Name = "makNgaynhapdukien";
     this.makNgaynhapdukien.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.makNgaynhapdukien.Size = new System.Drawing.Size(100, 20);
     this.makNgaynhapdukien.TabIndex = 15;
     this.makNgaynhapdukien.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // lblNgaynhapdukien
     //
     this.lblNgaynhapdukien.AutoSize = true;
     this.lblNgaynhapdukien.Location = new System.Drawing.Point(270, 74);
     this.lblNgaynhapdukien.Name = "lblNgaynhapdukien";
     this.lblNgaynhapdukien.Size = new System.Drawing.Size(100, 13);
     this.lblNgaynhapdukien.TabIndex = 14;
     this.lblNgaynhapdukien.Text = "Ngày nhập dự kiến:";
     //
     // lblTrangthaidonhang
     //
     this.lblTrangthaidonhang.AutoSize = true;
     this.lblTrangthaidonhang.Location = new System.Drawing.Point(12, 73);
     this.lblTrangthaidonhang.Name = "lblTrangthaidonhang";
     this.lblTrangthaidonhang.Size = new System.Drawing.Size(107, 13);
     this.lblTrangthaidonhang.TabIndex = 12;
     this.lblTrangthaidonhang.Text = "Trạng thái đơn hàng:";
     //
     // txtNohienthoi
     //
     this.txtNohienthoi.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.txtNohienthoi.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtNohienthoi.Location = new System.Drawing.Point(572, 39);
     this.txtNohienthoi.Name = "txtNohienthoi";
     this.txtNohienthoi.ReadOnly = true;
     this.txtNohienthoi.Size = new System.Drawing.Size(170, 20);
     this.txtNohienthoi.TabIndex = 11;
     //
     // lblNohienthoi
     //
     this.lblNohienthoi.AutoSize = true;
     this.lblNohienthoi.Location = new System.Drawing.Point(499, 44);
     this.lblNohienthoi.Name = "lblNohienthoi";
     this.lblNohienthoi.Size = new System.Drawing.Size(67, 13);
     this.lblNohienthoi.TabIndex = 9;
     this.lblNohienthoi.Text = "Nợ hiện thời:";
     //
     // lblDinhdangngay
     //
     this.lblDinhdangngay.AutoSize = true;
     this.lblDinhdangngay.LinkBehavior = System.Windows.Forms.LinkBehavior.NeverUnderline;
     this.lblDinhdangngay.Location = new System.Drawing.Point(483, 11);
     this.lblDinhdangngay.Name = "lblDinhdangngay";
     this.lblDinhdangngay.Size = new System.Drawing.Size(71, 13);
     this.lblDinhdangngay.TabIndex = 7;
     this.lblDinhdangngay.TabStop = true;
     this.lblDinhdangngay.Text = "(dd/mm/yyyy)";
     //
     // makNgaydonhang
     //
     this.makNgaydonhang.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.makNgaydonhang.Location = new System.Drawing.Point(376, 9);
     this.makNgaydonhang.Mask = "00/00/0000";
     this.makNgaydonhang.Name = "makNgaydonhang";
     this.makNgaydonhang.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.makNgaydonhang.Size = new System.Drawing.Size(100, 20);
     this.makNgaydonhang.TabIndex = 6;
     this.makNgaydonhang.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // lblNgaydonhang
     //
     this.lblNgaydonhang.AutoSize = true;
     this.lblNgaydonhang.Location = new System.Drawing.Point(282, 16);
     this.lblNgaydonhang.Name = "lblNgaydonhang";
     this.lblNgaydonhang.Size = new System.Drawing.Size(84, 13);
     this.lblNgaydonhang.TabIndex = 5;
     this.lblNgaydonhang.Text = "Ngày đơn hàng:";
     //
     // txtManhacungcap
     //
     this.txtManhacungcap.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtManhacungcap.Location = new System.Drawing.Point(128, 38);
     this.txtManhacungcap.Name = "txtManhacungcap";
     this.txtManhacungcap.Size = new System.Drawing.Size(100, 20);
     this.txtManhacungcap.TabIndex = 3;
     this.txtManhacungcap.Text = "<F4-Tìm hàng>";
     this.txtManhacungcap.TextChanged += new System.EventHandler(this.txtManhacungcap_TextChanged);
     this.txtManhacungcap.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtManhacungcap_KeyDown);
     this.txtManhacungcap.MouseLeave += new System.EventHandler(this.txtManhacungcap_MouseLeave);
     this.txtManhacungcap.MouseHover += new System.EventHandler(this.txtManhacungcap_MouseHover);
     //
     // txtSodonhang
     //
     this.txtSodonhang.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.txtSodonhang.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtSodonhang.Location = new System.Drawing.Point(128, 12);
     this.txtSodonhang.Name = "txtSodonhang";
     this.txtSodonhang.ReadOnly = true;
     this.txtSodonhang.Size = new System.Drawing.Size(100, 20);
     this.txtSodonhang.TabIndex = 2;
     //
     // lblManhacungcap
     //
     this.lblManhacungcap.AutoSize = true;
     this.lblManhacungcap.Location = new System.Drawing.Point(13, 41);
     this.lblManhacungcap.Name = "lblManhacungcap";
     this.lblManhacungcap.Size = new System.Drawing.Size(94, 13);
     this.lblManhacungcap.TabIndex = 1;
     this.lblManhacungcap.Text = "Mã nhà cung cấp:";
     //
     // lblSodonhang
     //
     this.lblSodonhang.AutoSize = true;
     this.lblSodonhang.Location = new System.Drawing.Point(13, 15);
     this.lblSodonhang.Name = "lblSodonhang";
     this.lblSodonhang.Size = new System.Drawing.Size(72, 13);
     this.lblSodonhang.TabIndex = 0;
     this.lblSodonhang.Text = "Số đơn hàng:";
     //
     // palXem
     //
     this.palXem.Controls.Add(this.txtTongtien);
     this.palXem.Controls.Add(this.lblTongtien);
     this.palXem.Controls.Add(this.txtPhikhac);
     this.palXem.Controls.Add(this.txtPhivanchuyen);
     this.palXem.Controls.Add(this.lblPhivanchuyen_Phikhac);
     this.palXem.Controls.Add(this.txtGiatrigiatang);
     this.palXem.Controls.Add(this.lblGiatrigiatang);
     this.palXem.Controls.Add(this.txtTienhang);
     this.palXem.Controls.Add(this.txtChietkhau);
     this.palXem.Controls.Add(this.lblChietkhau_Tienhang);
     this.palXem.Controls.Add(this.txtPhantrang);
     this.palXem.Controls.Add(this.grbDataGridview);
     this.palXem.Dock = System.Windows.Forms.DockStyle.Fill;
     this.palXem.Location = new System.Drawing.Point(0, 211);
     this.palXem.Name = "palXem";
     this.palXem.Size = new System.Drawing.Size(753, 174);
     this.palXem.TabIndex = 2;
     //
     // txtTongtien
     //
     this.txtTongtien.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.txtTongtien.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtTongtien.Location = new System.Drawing.Point(648, 300);
     this.txtTongtien.Name = "txtTongtien";
     this.txtTongtien.ReadOnly = true;
     this.txtTongtien.Size = new System.Drawing.Size(100, 20);
     this.txtTongtien.TabIndex = 11;
     this.txtTongtien.Text = "0";
     this.txtTongtien.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // lblTongtien
     //
     this.lblTongtien.AutoSize = true;
     this.lblTongtien.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTongtien.Location = new System.Drawing.Point(517, 307);
     this.lblTongtien.Name = "lblTongtien";
     this.lblTongtien.Size = new System.Drawing.Size(126, 13);
     this.lblTongtien.TabIndex = 10;
     this.lblTongtien.Text = "Tổng tiền/Đơn hàng:";
     //
     // txtPhikhac
     //
     this.txtPhikhac.BackColor = System.Drawing.Color.White;
     this.txtPhikhac.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtPhikhac.Location = new System.Drawing.Point(649, 274);
     this.txtPhikhac.Name = "txtPhikhac";
     this.txtPhikhac.Size = new System.Drawing.Size(100, 20);
     this.txtPhikhac.TabIndex = 9;
     this.txtPhikhac.Text = "0";
     this.txtPhikhac.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txtPhivanchuyen
     //
     this.txtPhivanchuyen.BackColor = System.Drawing.Color.White;
     this.txtPhivanchuyen.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtPhivanchuyen.Location = new System.Drawing.Point(543, 274);
     this.txtPhivanchuyen.Name = "txtPhivanchuyen";
     this.txtPhivanchuyen.Size = new System.Drawing.Size(100, 20);
     this.txtPhivanchuyen.TabIndex = 8;
     this.txtPhivanchuyen.Text = "0";
     this.txtPhivanchuyen.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // lblPhivanchuyen_Phikhac
     //
     this.lblPhivanchuyen_Phikhac.AutoSize = true;
     this.lblPhivanchuyen_Phikhac.Location = new System.Drawing.Point(406, 281);
     this.lblPhivanchuyen_Phikhac.Name = "lblPhivanchuyen_Phikhac";
     this.lblPhivanchuyen_Phikhac.Size = new System.Drawing.Size(134, 13);
     this.lblPhivanchuyen_Phikhac.TabIndex = 7;
     this.lblPhivanchuyen_Phikhac.Text = "Phí vận chuyển/phí khác:";
     //
     // txtGiatrigiatang
     //
     this.txtGiatrigiatang.BackColor = System.Drawing.Color.White;
     this.txtGiatrigiatang.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtGiatrigiatang.Location = new System.Drawing.Point(649, 249);
     this.txtGiatrigiatang.Name = "txtGiatrigiatang";
     this.txtGiatrigiatang.Size = new System.Drawing.Size(100, 20);
     this.txtGiatrigiatang.TabIndex = 6;
     this.txtGiatrigiatang.Text = "0";
     this.txtGiatrigiatang.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // lblGiatrigiatang
     //
     this.lblGiatrigiatang.AutoSize = true;
     this.lblGiatrigiatang.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblGiatrigiatang.Location = new System.Drawing.Point(547, 256);
     this.lblGiatrigiatang.Name = "lblGiatrigiatang";
     this.lblGiatrigiatang.Size = new System.Drawing.Size(68, 13);
     this.lblGiatrigiatang.TabIndex = 5;
     this.lblGiatrigiatang.Text = "Thuế GTGT:";
     //
     // txtTienhang
     //
     this.txtTienhang.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.txtTienhang.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtTienhang.Location = new System.Drawing.Point(649, 224);
     this.txtTienhang.Name = "txtTienhang";
     this.txtTienhang.ReadOnly = true;
     this.txtTienhang.Size = new System.Drawing.Size(100, 20);
     this.txtTienhang.TabIndex = 4;
     this.txtTienhang.Text = "0";
     this.txtTienhang.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txtChietkhau
     //
     this.txtChietkhau.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.txtChietkhau.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtChietkhau.Location = new System.Drawing.Point(543, 225);
     this.txtChietkhau.Name = "txtChietkhau";
     this.txtChietkhau.ReadOnly = true;
     this.txtChietkhau.Size = new System.Drawing.Size(100, 20);
     this.txtChietkhau.TabIndex = 3;
     this.txtChietkhau.Text = "0";
     this.txtChietkhau.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // lblChietkhau_Tienhang
     //
     this.lblChietkhau_Tienhang.AutoSize = true;
     this.lblChietkhau_Tienhang.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblChietkhau_Tienhang.Location = new System.Drawing.Point(406, 231);
     this.lblChietkhau_Tienhang.Name = "lblChietkhau_Tienhang";
     this.lblChietkhau_Tienhang.Size = new System.Drawing.Size(135, 13);
     this.lblChietkhau_Tienhang.TabIndex = 2;
     this.lblChietkhau_Tienhang.Text = "Chiết khấu/Tiền hàng:";
     //
     // txtPhantrang
     //
     this.txtPhantrang.BackColor = System.Drawing.Color.White;
     this.txtPhantrang.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtPhantrang.ForeColor = System.Drawing.Color.Red;
     this.txtPhantrang.Location = new System.Drawing.Point(3, 225);
     this.txtPhantrang.Name = "txtPhantrang";
     this.txtPhantrang.ReadOnly = true;
     this.txtPhantrang.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.txtPhantrang.Size = new System.Drawing.Size(49, 20);
     this.txtPhantrang.TabIndex = 1;
     this.txtPhantrang.Text = "0/0";
     this.txtPhantrang.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // grbDataGridview
     //
     this.grbDataGridview.Controls.Add(this.dgvInsertOrder);
     this.grbDataGridview.Controls.Add(this.palThem);
     this.grbDataGridview.Dock = System.Windows.Forms.DockStyle.Top;
     this.grbDataGridview.Location = new System.Drawing.Point(0, 0);
     this.grbDataGridview.Name = "grbDataGridview";
     this.grbDataGridview.Size = new System.Drawing.Size(753, 218);
     this.grbDataGridview.TabIndex = 0;
     this.grbDataGridview.TabStop = false;
     //
     // dgvInsertOrder
     //
     this.dgvInsertOrder.AllowUserToAddRows = false;
     this.dgvInsertOrder.AllowUserToDeleteRows = false;
     this.dgvInsertOrder.BackgroundColor = System.Drawing.Color.White;
     this.dgvInsertOrder.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgvInsertOrder.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dgvInsertOrder.Location = new System.Drawing.Point(3, 42);
     this.dgvInsertOrder.Name = "dgvInsertOrder";
     this.dgvInsertOrder.ReadOnly = true;
     this.dgvInsertOrder.Size = new System.Drawing.Size(747, 173);
     this.dgvInsertOrder.TabIndex = 5;
     this.dgvInsertOrder.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvInsertOrder_CellClick);
     this.dgvInsertOrder.DoubleClick += new System.EventHandler(this.dgvInsertOrder_DoubleClick);
     //
     // palThem
     //
     this.palThem.Controls.Add(this.toolStrip_Insert);
     this.palThem.Dock = System.Windows.Forms.DockStyle.Top;
     this.palThem.Location = new System.Drawing.Point(3, 16);
     this.palThem.Name = "palThem";
     this.palThem.Size = new System.Drawing.Size(747, 26);
     this.palThem.TabIndex = 3;
     //
     // toolStrip_Insert
     //
     this.toolStrip_Insert.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.toolStrip_Insert.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStrip_txtTracuu,
     this.toolStrip_txtTenhang,
     this.toolStrip_txtSoluong,
     this.toolStrip_txtGiagoc,
     this.toolStrip_txtChietkhauphantram,
     this.toolStrip_txtGianhap,
     this.toolStrip_txtChietkhau,
     this.toolStrip_btnThem});
     this.toolStrip_Insert.Location = new System.Drawing.Point(0, 0);
     this.toolStrip_Insert.Name = "toolStrip_Insert";
     this.toolStrip_Insert.Size = new System.Drawing.Size(747, 25);
     this.toolStrip_Insert.TabIndex = 2;
     this.toolStrip_Insert.Text = "toolStrip1";
     //
     // toolStrip_txtTracuu
     //
     this.toolStrip_txtTracuu.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.toolStrip_txtTracuu.Name = "toolStrip_txtTracuu";
     this.toolStrip_txtTracuu.Size = new System.Drawing.Size(100, 25);
     this.toolStrip_txtTracuu.Text = "<F4-Tìm hàng>";
     this.toolStrip_txtTracuu.KeyDown += new System.Windows.Forms.KeyEventHandler(this.toolStrip_txtTracuu_KeyDown);
     //
     // toolStrip_txtTenhang
     //
     this.toolStrip_txtTenhang.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.toolStrip_txtTenhang.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.toolStrip_txtTenhang.Name = "toolStrip_txtTenhang";
     this.toolStrip_txtTenhang.ReadOnly = true;
     this.toolStrip_txtTenhang.Size = new System.Drawing.Size(200, 25);
     //
     // toolStrip_txtSoluong
     //
     this.toolStrip_txtSoluong.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.toolStrip_txtSoluong.Name = "toolStrip_txtSoluong";
     this.toolStrip_txtSoluong.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.toolStrip_txtSoluong.Size = new System.Drawing.Size(40, 25);
     this.toolStrip_txtSoluong.Text = "1";
     this.toolStrip_txtSoluong.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.toolStrip_txtSoluong_KeyPress);
     this.toolStrip_txtSoluong.TextChanged += new System.EventHandler(this.toolStrip_txtSoluong_TextChanged);
     //
     // toolStrip_txtGiagoc
     //
     this.toolStrip_txtGiagoc.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.toolStrip_txtGiagoc.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.toolStrip_txtGiagoc.Name = "toolStrip_txtGiagoc";
     this.toolStrip_txtGiagoc.ReadOnly = true;
     this.toolStrip_txtGiagoc.Size = new System.Drawing.Size(80, 25);
     this.toolStrip_txtGiagoc.Text = "0";
     this.toolStrip_txtGiagoc.TextBoxTextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.toolStrip_txtGiagoc.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.toolStrip_txtGiagoc_KeyPress);
     //
     // toolStrip_txtChietkhauphantram
     //
     this.toolStrip_txtChietkhauphantram.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.toolStrip_txtChietkhauphantram.Name = "toolStrip_txtChietkhauphantram";
     this.toolStrip_txtChietkhauphantram.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.toolStrip_txtChietkhauphantram.Size = new System.Drawing.Size(40, 25);
     this.toolStrip_txtChietkhauphantram.TextBoxTextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.toolStrip_txtChietkhauphantram.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.toolStrip_txtChietkhauphantram_KeyPress);
     this.toolStrip_txtChietkhauphantram.TextChanged += new System.EventHandler(this.toolStrip_txtChietkhauphantram_TextChanged);
     //
     // toolStrip_txtGianhap
     //
     this.toolStrip_txtGianhap.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.toolStrip_txtGianhap.Name = "toolStrip_txtGianhap";
     this.toolStrip_txtGianhap.Size = new System.Drawing.Size(80, 25);
     this.toolStrip_txtGianhap.TextBoxTextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.toolStrip_txtGianhap.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.toolStrip_txtGianhap_KeyPress);
     //
     // toolStrip_txtChietkhau
     //
     this.toolStrip_txtChietkhau.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.toolStrip_txtChietkhau.Name = "toolStrip_txtChietkhau";
     this.toolStrip_txtChietkhau.Size = new System.Drawing.Size(100, 25);
     this.toolStrip_txtChietkhau.TextBoxTextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.toolStrip_txtChietkhau.KeyDown += new System.Windows.Forms.KeyEventHandler(this.toolStrip_txtChietkhau_KeyDown);
     //
     // toolStrip_btnThem
     //
     this.toolStrip_btnThem.Image = ((System.Drawing.Image)(resources.GetObject("toolStrip_btnThem.Image")));
     this.toolStrip_btnThem.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStrip_btnThem.Name = "toolStrip_btnThem";
     this.toolStrip_btnThem.Size = new System.Drawing.Size(58, 22);
     this.toolStrip_btnThem.Text = "Thêm";
     this.toolStrip_btnThem.Click += new System.EventHandler(this.toolStrip_btnThem_Click);
     //
     // frmXuLyDonDatHang
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.LightSteelBlue;
     this.ClientSize = new System.Drawing.Size(753, 412);
     this.ControlBox = false;
     this.Controls.Add(this.palXem);
     this.Controls.Add(this.palNhap);
     this.Controls.Add(this.statusStrip1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Name = "frmXuLyDonDatHang";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "Quản lý đơn đặt hàng";
     this.Load += new System.EventHandler(this.frmXuLy_DonDatHang_Load);
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     this.palNhap.ResumeLayout(false);
     this.palNhap.PerformLayout();
     this.palXem.ResumeLayout(false);
     this.palXem.PerformLayout();
     this.grbDataGridview.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dgvInsertOrder)).EndInit();
     this.palThem.ResumeLayout(false);
     this.palThem.PerformLayout();
     this.toolStrip_Insert.ResumeLayout(false);
     this.toolStrip_Insert.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Beispiel #33
0
 /// <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(OrderForm));
     this.ux_labelOrderDate = new System.Windows.Forms.Label();
     this.ux_labelOriginalOrderRequestID = new System.Windows.Forms.Label();
     this.ux_textboxOriginalOrderRequestID = new System.Windows.Forms.TextBox();
     this.ux_labelLocalNumber = new System.Windows.Forms.Label();
     this.ux_textboxLocalNumber = new System.Windows.Forms.TextBox();
     this.ux_groupbox1 = new System.Windows.Forms.GroupBox();
     this.ux_labelSpecialInstructions = new System.Windows.Forms.Label();
     this.ux_labelSource = new System.Windows.Forms.Label();
     this.ux_textboxSpecialInstructions = new System.Windows.Forms.TextBox();
     this.ux_labelNote = new System.Windows.Forms.Label();
     this.ux_textboxActedDate = new System.Windows.Forms.TextBox();
     this.ux_textboxSource = new System.Windows.Forms.TextBox();
     this.ux_textboxNote = new System.Windows.Forms.TextBox();
     this.ux_labelShipTo = new System.Windows.Forms.Label();
     this.ux_textboxOrderedDate = new System.Windows.Forms.TextBox();
     this.ux_textboxShipTo = new System.Windows.Forms.TextBox();
     this.ux_textboxOrderObtainedVia = new System.Windows.Forms.TextBox();
     this.ux_textboxFinalDestination = new System.Windows.Forms.TextBox();
     this.ux_labelOrderObtainedVia = new System.Windows.Forms.Label();
     this.ux_labelRequestor = new System.Windows.Forms.Label();
     this.ux_checkboxIsSupplyLow = new System.Windows.Forms.CheckBox();
     this.ux_labelFinalDestination = new System.Windows.Forms.Label();
     this.ux_checkboxIsCompleted = new System.Windows.Forms.CheckBox();
     this.ux_textboxRequestor = new System.Windows.Forms.TextBox();
     this.ux_comboboxStatus = new System.Windows.Forms.ComboBox();
     this.ux_labelStatus = new System.Windows.Forms.Label();
     this.ux_comboboxOrderType = new System.Windows.Forms.ComboBox();
     this.ux_labelActedDate = new System.Windows.Forms.Label();
     this.ux_labelOrderType = new System.Windows.Forms.Label();
     this.ux_bindingnavigatorForm = new System.Windows.Forms.BindingNavigator(this.components);
     this.bindingNavigatorAddNewItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorCountItem = new System.Windows.Forms.ToolStripLabel();
     this.bindingNavigatorDeleteItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMoveFirstItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMovePreviousItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorPositionItem = new System.Windows.Forms.ToolStripTextBox();
     this.bindingNavigatorSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorMoveNextItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMoveLastItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.ux_labelOrderRequestID = new System.Windows.Forms.Label();
     this.ux_textboxOrderRequestID = new System.Windows.Forms.TextBox();
     this.ux_textboxItems = new System.Windows.Forms.TextBox();
     this.ux_labelItems = new System.Windows.Forms.Label();
     this.ux_groupbox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ux_bindingnavigatorForm)).BeginInit();
     this.ux_bindingnavigatorForm.SuspendLayout();
     this.SuspendLayout();
     //
     // ux_labelOrderDate
     //
     this.ux_labelOrderDate.AutoSize = true;
     this.ux_labelOrderDate.Location = new System.Drawing.Point(6, 10);
     this.ux_labelOrderDate.Name = "ux_labelOrderDate";
     this.ux_labelOrderDate.Size = new System.Drawing.Size(59, 13);
     this.ux_labelOrderDate.TabIndex = 1;
     this.ux_labelOrderDate.Tag = "ordered_date";
     this.ux_labelOrderDate.Text = "Order Date";
     //
     // ux_labelOriginalOrderRequestID
     //
     this.ux_labelOriginalOrderRequestID.AutoSize = true;
     this.ux_labelOriginalOrderRequestID.Location = new System.Drawing.Point(331, 10);
     this.ux_labelOriginalOrderRequestID.Name = "ux_labelOriginalOrderRequestID";
     this.ux_labelOriginalOrderRequestID.Size = new System.Drawing.Size(111, 13);
     this.ux_labelOriginalOrderRequestID.TabIndex = 3;
     this.ux_labelOriginalOrderRequestID.Tag = "original_order_request_id";
     this.ux_labelOriginalOrderRequestID.Text = "Original Order Number";
     //
     // ux_textboxOriginalOrderRequestID
     //
     this.ux_textboxOriginalOrderRequestID.Location = new System.Drawing.Point(334, 26);
     this.ux_textboxOriginalOrderRequestID.Name = "ux_textboxOriginalOrderRequestID";
     this.ux_textboxOriginalOrderRequestID.Size = new System.Drawing.Size(120, 20);
     this.ux_textboxOriginalOrderRequestID.TabIndex = 1;
     this.ux_textboxOriginalOrderRequestID.Tag = "original_order_request_id";
     //
     // ux_labelLocalNumber
     //
     this.ux_labelLocalNumber.AutoSize = true;
     this.ux_labelLocalNumber.Location = new System.Drawing.Point(6, 48);
     this.ux_labelLocalNumber.Name = "ux_labelLocalNumber";
     this.ux_labelLocalNumber.Size = new System.Drawing.Size(73, 13);
     this.ux_labelLocalNumber.TabIndex = 5;
     this.ux_labelLocalNumber.Tag = "local_number";
     this.ux_labelLocalNumber.Text = "Local Number";
     //
     // ux_textboxLocalNumber
     //
     this.ux_textboxLocalNumber.Location = new System.Drawing.Point(6, 63);
     this.ux_textboxLocalNumber.Name = "ux_textboxLocalNumber";
     this.ux_textboxLocalNumber.Size = new System.Drawing.Size(112, 20);
     this.ux_textboxLocalNumber.TabIndex = 2;
     this.ux_textboxLocalNumber.Tag = "local_number";
     //
     // ux_groupbox1
     //
     this.ux_groupbox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.ux_groupbox1.Controls.Add(this.ux_labelSpecialInstructions);
     this.ux_groupbox1.Controls.Add(this.ux_labelSource);
     this.ux_groupbox1.Controls.Add(this.ux_textboxSpecialInstructions);
     this.ux_groupbox1.Controls.Add(this.ux_labelNote);
     this.ux_groupbox1.Controls.Add(this.ux_textboxActedDate);
     this.ux_groupbox1.Controls.Add(this.ux_textboxSource);
     this.ux_groupbox1.Controls.Add(this.ux_textboxNote);
     this.ux_groupbox1.Controls.Add(this.ux_labelShipTo);
     this.ux_groupbox1.Controls.Add(this.ux_textboxOrderedDate);
     this.ux_groupbox1.Controls.Add(this.ux_textboxShipTo);
     this.ux_groupbox1.Controls.Add(this.ux_textboxOrderObtainedVia);
     this.ux_groupbox1.Controls.Add(this.ux_textboxFinalDestination);
     this.ux_groupbox1.Controls.Add(this.ux_labelOrderObtainedVia);
     this.ux_groupbox1.Controls.Add(this.ux_labelRequestor);
     this.ux_groupbox1.Controls.Add(this.ux_checkboxIsSupplyLow);
     this.ux_groupbox1.Controls.Add(this.ux_labelFinalDestination);
     this.ux_groupbox1.Controls.Add(this.ux_checkboxIsCompleted);
     this.ux_groupbox1.Controls.Add(this.ux_textboxRequestor);
     this.ux_groupbox1.Controls.Add(this.ux_comboboxStatus);
     this.ux_groupbox1.Controls.Add(this.ux_labelStatus);
     this.ux_groupbox1.Controls.Add(this.ux_comboboxOrderType);
     this.ux_groupbox1.Controls.Add(this.ux_labelActedDate);
     this.ux_groupbox1.Controls.Add(this.ux_labelOrderType);
     this.ux_groupbox1.Controls.Add(this.ux_textboxLocalNumber);
     this.ux_groupbox1.Controls.Add(this.ux_labelLocalNumber);
     this.ux_groupbox1.Controls.Add(this.ux_labelOrderDate);
     this.ux_groupbox1.Controls.Add(this.ux_textboxOriginalOrderRequestID);
     this.ux_groupbox1.Controls.Add(this.ux_labelOriginalOrderRequestID);
     this.ux_groupbox1.Location = new System.Drawing.Point(12, 52);
     this.ux_groupbox1.Name = "ux_groupbox1";
     this.ux_groupbox1.Size = new System.Drawing.Size(748, 282);
     this.ux_groupbox1.TabIndex = 100;
     this.ux_groupbox1.TabStop = false;
     //
     // ux_labelSpecialInstructions
     //
     this.ux_labelSpecialInstructions.AutoSize = true;
     this.ux_labelSpecialInstructions.Location = new System.Drawing.Point(3, 165);
     this.ux_labelSpecialInstructions.Name = "ux_labelSpecialInstructions";
     this.ux_labelSpecialInstructions.Size = new System.Drawing.Size(99, 13);
     this.ux_labelSpecialInstructions.TabIndex = 21;
     this.ux_labelSpecialInstructions.Tag = "special_instructions";
     this.ux_labelSpecialInstructions.Text = "Special Instructions";
     //
     // ux_labelSource
     //
     this.ux_labelSource.AutoSize = true;
     this.ux_labelSource.Location = new System.Drawing.Point(457, 127);
     this.ux_labelSource.Name = "ux_labelSource";
     this.ux_labelSource.Size = new System.Drawing.Size(81, 13);
     this.ux_labelSource.TabIndex = 19;
     this.ux_labelSource.Tag = "source_cooperator_id";
     this.ux_labelSource.Text = "Source of Items";
     //
     // ux_textboxSpecialInstructions
     //
     this.ux_textboxSpecialInstructions.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.ux_textboxSpecialInstructions.Location = new System.Drawing.Point(6, 182);
     this.ux_textboxSpecialInstructions.Multiline = true;
     this.ux_textboxSpecialInstructions.Name = "ux_textboxSpecialInstructions";
     this.ux_textboxSpecialInstructions.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.ux_textboxSpecialInstructions.Size = new System.Drawing.Size(732, 94);
     this.ux_textboxSpecialInstructions.TabIndex = 14;
     this.ux_textboxSpecialInstructions.Tag = "special_instruction";
     //
     // ux_labelNote
     //
     this.ux_labelNote.AutoSize = true;
     this.ux_labelNote.Location = new System.Drawing.Point(2, 89);
     this.ux_labelNote.Name = "ux_labelNote";
     this.ux_labelNote.Size = new System.Drawing.Size(35, 13);
     this.ux_labelNote.TabIndex = 20;
     this.ux_labelNote.Tag = "note";
     this.ux_labelNote.Text = "Notes";
     //
     // ux_textboxActedDate
     //
     this.ux_textboxActedDate.Location = new System.Drawing.Point(229, 63);
     this.ux_textboxActedDate.Name = "ux_textboxActedDate";
     this.ux_textboxActedDate.Size = new System.Drawing.Size(99, 20);
     this.ux_textboxActedDate.TabIndex = 5;
     this.ux_textboxActedDate.Tag = "completed_date";
     //
     // ux_textboxSource
     //
     this.ux_textboxSource.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.ux_textboxSource.Location = new System.Drawing.Point(460, 143);
     this.ux_textboxSource.Name = "ux_textboxSource";
     this.ux_textboxSource.Size = new System.Drawing.Size(278, 20);
     this.ux_textboxSource.TabIndex = 12;
     this.ux_textboxSource.Tag = "source_cooperator_id";
     //
     // ux_textboxNote
     //
     this.ux_textboxNote.Location = new System.Drawing.Point(6, 106);
     this.ux_textboxNote.Multiline = true;
     this.ux_textboxNote.Name = "ux_textboxNote";
     this.ux_textboxNote.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.ux_textboxNote.Size = new System.Drawing.Size(322, 57);
     this.ux_textboxNote.TabIndex = 13;
     this.ux_textboxNote.Tag = "note";
     //
     // ux_labelShipTo
     //
     this.ux_labelShipTo.AutoSize = true;
     this.ux_labelShipTo.Location = new System.Drawing.Point(457, 88);
     this.ux_labelShipTo.Name = "ux_labelShipTo";
     this.ux_labelShipTo.Size = new System.Drawing.Size(44, 13);
     this.ux_labelShipTo.TabIndex = 17;
     this.ux_labelShipTo.Tag = "ship_to_cooperator_id";
     this.ux_labelShipTo.Text = "Ship To";
     //
     // ux_textboxOrderedDate
     //
     this.ux_textboxOrderedDate.Location = new System.Drawing.Point(6, 26);
     this.ux_textboxOrderedDate.Name = "ux_textboxOrderedDate";
     this.ux_textboxOrderedDate.Size = new System.Drawing.Size(112, 20);
     this.ux_textboxOrderedDate.TabIndex = 0;
     this.ux_textboxOrderedDate.Tag = "ordered_date";
     //
     // ux_textboxShipTo
     //
     this.ux_textboxShipTo.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.ux_textboxShipTo.Location = new System.Drawing.Point(460, 104);
     this.ux_textboxShipTo.Name = "ux_textboxShipTo";
     this.ux_textboxShipTo.Size = new System.Drawing.Size(278, 20);
     this.ux_textboxShipTo.TabIndex = 11;
     this.ux_textboxShipTo.Tag = "ship_to_cooperator_id";
     //
     // ux_textboxOrderObtainedVia
     //
     this.ux_textboxOrderObtainedVia.Location = new System.Drawing.Point(334, 63);
     this.ux_textboxOrderObtainedVia.Name = "ux_textboxOrderObtainedVia";
     this.ux_textboxOrderObtainedVia.Size = new System.Drawing.Size(120, 20);
     this.ux_textboxOrderObtainedVia.TabIndex = 6;
     this.ux_textboxOrderObtainedVia.Tag = "order_obtained_via";
     //
     // ux_textboxFinalDestination
     //
     this.ux_textboxFinalDestination.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.ux_textboxFinalDestination.Location = new System.Drawing.Point(460, 26);
     this.ux_textboxFinalDestination.Name = "ux_textboxFinalDestination";
     this.ux_textboxFinalDestination.Size = new System.Drawing.Size(278, 20);
     this.ux_textboxFinalDestination.TabIndex = 9;
     this.ux_textboxFinalDestination.Tag = "final_recipient_cooperator_id";
     //
     // ux_labelOrderObtainedVia
     //
     this.ux_labelOrderObtainedVia.AutoSize = true;
     this.ux_labelOrderObtainedVia.Location = new System.Drawing.Point(336, 49);
     this.ux_labelOrderObtainedVia.Name = "ux_labelOrderObtainedVia";
     this.ux_labelOrderObtainedVia.Size = new System.Drawing.Size(97, 13);
     this.ux_labelOrderObtainedVia.TabIndex = 24;
     this.ux_labelOrderObtainedVia.Tag = "order_obtained_via";
     this.ux_labelOrderObtainedVia.Text = "Order Obtained Via";
     //
     // ux_labelRequestor
     //
     this.ux_labelRequestor.AutoSize = true;
     this.ux_labelRequestor.Location = new System.Drawing.Point(457, 49);
     this.ux_labelRequestor.Name = "ux_labelRequestor";
     this.ux_labelRequestor.Size = new System.Drawing.Size(59, 13);
     this.ux_labelRequestor.TabIndex = 13;
     this.ux_labelRequestor.Tag = "requestor_cooperator_id";
     this.ux_labelRequestor.Text = "Ordered by";
     //
     // ux_checkboxIsSupplyLow
     //
     this.ux_checkboxIsSupplyLow.AutoSize = true;
     this.ux_checkboxIsSupplyLow.Location = new System.Drawing.Point(344, 145);
     this.ux_checkboxIsSupplyLow.Name = "ux_checkboxIsSupplyLow";
     this.ux_checkboxIsSupplyLow.Size = new System.Drawing.Size(98, 17);
     this.ux_checkboxIsSupplyLow.TabIndex = 8;
     this.ux_checkboxIsSupplyLow.Tag = "is_supply_low";
     this.ux_checkboxIsSupplyLow.Text = "Is Supply Low?";
     this.ux_checkboxIsSupplyLow.UseVisualStyleBackColor = true;
     //
     // ux_labelFinalDestination
     //
     this.ux_labelFinalDestination.AutoSize = true;
     this.ux_labelFinalDestination.Location = new System.Drawing.Point(457, 10);
     this.ux_labelFinalDestination.Name = "ux_labelFinalDestination";
     this.ux_labelFinalDestination.Size = new System.Drawing.Size(85, 13);
     this.ux_labelFinalDestination.TabIndex = 15;
     this.ux_labelFinalDestination.Tag = "final_recipient_cooperator_id";
     this.ux_labelFinalDestination.Text = "Final Destination";
     //
     // ux_checkboxIsCompleted
     //
     this.ux_checkboxIsCompleted.AutoSize = true;
     this.ux_checkboxIsCompleted.Location = new System.Drawing.Point(344, 106);
     this.ux_checkboxIsCompleted.Name = "ux_checkboxIsCompleted";
     this.ux_checkboxIsCompleted.Size = new System.Drawing.Size(87, 17);
     this.ux_checkboxIsCompleted.TabIndex = 7;
     this.ux_checkboxIsCompleted.Tag = "is_completed";
     this.ux_checkboxIsCompleted.Text = "Is Complete?";
     this.ux_checkboxIsCompleted.UseVisualStyleBackColor = true;
     //
     // ux_textboxRequestor
     //
     this.ux_textboxRequestor.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.ux_textboxRequestor.Location = new System.Drawing.Point(460, 63);
     this.ux_textboxRequestor.Name = "ux_textboxRequestor";
     this.ux_textboxRequestor.Size = new System.Drawing.Size(278, 20);
     this.ux_textboxRequestor.TabIndex = 10;
     this.ux_textboxRequestor.Tag = "requestor_cooperator_id";
     //
     // ux_comboboxStatus
     //
     this.ux_comboboxStatus.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.ux_comboboxStatus.FormattingEnabled = true;
     this.ux_comboboxStatus.Location = new System.Drawing.Point(124, 62);
     this.ux_comboboxStatus.Name = "ux_comboboxStatus";
     this.ux_comboboxStatus.Size = new System.Drawing.Size(99, 21);
     this.ux_comboboxStatus.TabIndex = 4;
     this.ux_comboboxStatus.Tag = "status";
     //
     // ux_labelStatus
     //
     this.ux_labelStatus.AutoSize = true;
     this.ux_labelStatus.Location = new System.Drawing.Point(121, 49);
     this.ux_labelStatus.Name = "ux_labelStatus";
     this.ux_labelStatus.Size = new System.Drawing.Size(37, 13);
     this.ux_labelStatus.TabIndex = 19;
     this.ux_labelStatus.Tag = "status";
     this.ux_labelStatus.Text = "Status";
     //
     // ux_comboboxOrderType
     //
     this.ux_comboboxOrderType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.ux_comboboxOrderType.FormattingEnabled = true;
     this.ux_comboboxOrderType.Location = new System.Drawing.Point(229, 25);
     this.ux_comboboxOrderType.Name = "ux_comboboxOrderType";
     this.ux_comboboxOrderType.Size = new System.Drawing.Size(99, 21);
     this.ux_comboboxOrderType.TabIndex = 3;
     this.ux_comboboxOrderType.Tag = "order_type_code";
     //
     // ux_labelActedDate
     //
     this.ux_labelActedDate.AutoSize = true;
     this.ux_labelActedDate.Location = new System.Drawing.Point(226, 49);
     this.ux_labelActedDate.Name = "ux_labelActedDate";
     this.ux_labelActedDate.Size = new System.Drawing.Size(63, 13);
     this.ux_labelActedDate.TabIndex = 16;
     this.ux_labelActedDate.Tag = "completed_date";
     this.ux_labelActedDate.Text = "Status Date";
     //
     // ux_labelOrderType
     //
     this.ux_labelOrderType.AutoSize = true;
     this.ux_labelOrderType.Location = new System.Drawing.Point(226, 10);
     this.ux_labelOrderType.Name = "ux_labelOrderType";
     this.ux_labelOrderType.Size = new System.Drawing.Size(60, 13);
     this.ux_labelOrderType.TabIndex = 15;
     this.ux_labelOrderType.Tag = "order_type_code";
     this.ux_labelOrderType.Text = "Order Type";
     //
     // ux_bindingnavigatorForm
     //
     this.ux_bindingnavigatorForm.AddNewItem = this.bindingNavigatorAddNewItem;
     this.ux_bindingnavigatorForm.CountItem = this.bindingNavigatorCountItem;
     this.ux_bindingnavigatorForm.DeleteItem = this.bindingNavigatorDeleteItem;
     this.ux_bindingnavigatorForm.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.ux_bindingnavigatorForm.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.bindingNavigatorMoveFirstItem,
     this.bindingNavigatorMovePreviousItem,
     this.bindingNavigatorSeparator,
     this.bindingNavigatorPositionItem,
     this.bindingNavigatorCountItem,
     this.bindingNavigatorSeparator1,
     this.bindingNavigatorMoveNextItem,
     this.bindingNavigatorMoveLastItem,
     this.bindingNavigatorSeparator2,
     this.bindingNavigatorAddNewItem,
     this.bindingNavigatorDeleteItem});
     this.ux_bindingnavigatorForm.Location = new System.Drawing.Point(0, 0);
     this.ux_bindingnavigatorForm.MoveFirstItem = this.bindingNavigatorMoveFirstItem;
     this.ux_bindingnavigatorForm.MoveLastItem = this.bindingNavigatorMoveLastItem;
     this.ux_bindingnavigatorForm.MoveNextItem = this.bindingNavigatorMoveNextItem;
     this.ux_bindingnavigatorForm.MovePreviousItem = this.bindingNavigatorMovePreviousItem;
     this.ux_bindingnavigatorForm.Name = "ux_bindingnavigatorForm";
     this.ux_bindingnavigatorForm.PositionItem = this.bindingNavigatorPositionItem;
     this.ux_bindingnavigatorForm.Size = new System.Drawing.Size(772, 25);
     this.ux_bindingnavigatorForm.TabIndex = 23;
     this.ux_bindingnavigatorForm.Text = "bindingNavigator1";
     //
     // bindingNavigatorAddNewItem
     //
     this.bindingNavigatorAddNewItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorAddNewItem.Enabled = false;
     this.bindingNavigatorAddNewItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorAddNewItem.Image")));
     this.bindingNavigatorAddNewItem.Name = "bindingNavigatorAddNewItem";
     this.bindingNavigatorAddNewItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorAddNewItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorAddNewItem.Text = "Add new";
     //
     // bindingNavigatorCountItem
     //
     this.bindingNavigatorCountItem.Name = "bindingNavigatorCountItem";
     this.bindingNavigatorCountItem.Size = new System.Drawing.Size(36, 22);
     this.bindingNavigatorCountItem.Text = "of {0}";
     this.bindingNavigatorCountItem.ToolTipText = "Total number of items";
     //
     // bindingNavigatorDeleteItem
     //
     this.bindingNavigatorDeleteItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorDeleteItem.Enabled = false;
     this.bindingNavigatorDeleteItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorDeleteItem.Image")));
     this.bindingNavigatorDeleteItem.Name = "bindingNavigatorDeleteItem";
     this.bindingNavigatorDeleteItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorDeleteItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorDeleteItem.Text = "Delete";
     //
     // bindingNavigatorMoveFirstItem
     //
     this.bindingNavigatorMoveFirstItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveFirstItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveFirstItem.Image")));
     this.bindingNavigatorMoveFirstItem.Name = "bindingNavigatorMoveFirstItem";
     this.bindingNavigatorMoveFirstItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveFirstItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveFirstItem.Text = "Move first";
     //
     // bindingNavigatorMovePreviousItem
     //
     this.bindingNavigatorMovePreviousItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMovePreviousItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMovePreviousItem.Image")));
     this.bindingNavigatorMovePreviousItem.Name = "bindingNavigatorMovePreviousItem";
     this.bindingNavigatorMovePreviousItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMovePreviousItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMovePreviousItem.Text = "Move previous";
     //
     // bindingNavigatorSeparator
     //
     this.bindingNavigatorSeparator.Name = "bindingNavigatorSeparator";
     this.bindingNavigatorSeparator.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorPositionItem
     //
     this.bindingNavigatorPositionItem.AccessibleName = "Position";
     this.bindingNavigatorPositionItem.AutoSize = false;
     this.bindingNavigatorPositionItem.Name = "bindingNavigatorPositionItem";
     this.bindingNavigatorPositionItem.Size = new System.Drawing.Size(50, 21);
     this.bindingNavigatorPositionItem.Text = "0";
     this.bindingNavigatorPositionItem.ToolTipText = "Current position";
     //
     // bindingNavigatorSeparator1
     //
     this.bindingNavigatorSeparator1.Name = "bindingNavigatorSeparator1";
     this.bindingNavigatorSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorMoveNextItem
     //
     this.bindingNavigatorMoveNextItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveNextItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveNextItem.Image")));
     this.bindingNavigatorMoveNextItem.Name = "bindingNavigatorMoveNextItem";
     this.bindingNavigatorMoveNextItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveNextItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveNextItem.Text = "Move next";
     //
     // bindingNavigatorMoveLastItem
     //
     this.bindingNavigatorMoveLastItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveLastItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveLastItem.Image")));
     this.bindingNavigatorMoveLastItem.Name = "bindingNavigatorMoveLastItem";
     this.bindingNavigatorMoveLastItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveLastItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveLastItem.Text = "Move last";
     //
     // bindingNavigatorSeparator2
     //
     this.bindingNavigatorSeparator2.Name = "bindingNavigatorSeparator2";
     this.bindingNavigatorSeparator2.Size = new System.Drawing.Size(6, 25);
     //
     // ux_labelOrderRequestID
     //
     this.ux_labelOrderRequestID.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.ux_labelOrderRequestID.Location = new System.Drawing.Point(543, 36);
     this.ux_labelOrderRequestID.Name = "ux_labelOrderRequestID";
     this.ux_labelOrderRequestID.Size = new System.Drawing.Size(145, 15);
     this.ux_labelOrderRequestID.TabIndex = 24;
     this.ux_labelOrderRequestID.Tag = "order_request_id";
     this.ux_labelOrderRequestID.Text = "ID:";
     this.ux_labelOrderRequestID.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // ux_textboxOrderRequestID
     //
     this.ux_textboxOrderRequestID.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.ux_textboxOrderRequestID.Location = new System.Drawing.Point(694, 33);
     this.ux_textboxOrderRequestID.Name = "ux_textboxOrderRequestID";
     this.ux_textboxOrderRequestID.Size = new System.Drawing.Size(61, 20);
     this.ux_textboxOrderRequestID.TabIndex = 201;
     this.ux_textboxOrderRequestID.Tag = "order_request_id";
     //
     // ux_textboxItems
     //
     this.ux_textboxItems.Location = new System.Drawing.Point(216, 33);
     this.ux_textboxItems.Name = "ux_textboxItems";
     this.ux_textboxItems.Size = new System.Drawing.Size(61, 20);
     this.ux_textboxItems.TabIndex = 200;
     this.ux_textboxItems.Tag = "items";
     //
     // ux_labelItems
     //
     this.ux_labelItems.Location = new System.Drawing.Point(12, 36);
     this.ux_labelItems.Name = "ux_labelItems";
     this.ux_labelItems.Size = new System.Drawing.Size(198, 15);
     this.ux_labelItems.TabIndex = 26;
     this.ux_labelItems.Tag = "items";
     this.ux_labelItems.Text = "Number of Items:";
     this.ux_labelItems.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // OrderForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(772, 346);
     this.Controls.Add(this.ux_textboxItems);
     this.Controls.Add(this.ux_labelItems);
     this.Controls.Add(this.ux_textboxOrderRequestID);
     this.Controls.Add(this.ux_labelOrderRequestID);
     this.Controls.Add(this.ux_bindingnavigatorForm);
     this.Controls.Add(this.ux_groupbox1);
     this.Name = "OrderForm";
     this.Text = "Accession Form";
     this.Load += new System.EventHandler(this.OrderForm_Load);
     this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.OrderForm_FormClosed);
     this.ux_groupbox1.ResumeLayout(false);
     this.ux_groupbox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ux_bindingnavigatorForm)).EndInit();
     this.ux_bindingnavigatorForm.ResumeLayout(false);
     this.ux_bindingnavigatorForm.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
        /// <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.Windows.Forms.Label labelFirstName;
            System.Windows.Forms.Label labelID;
            System.Windows.Forms.Label labelLastName;
            System.Windows.Forms.Label labelPhoneNumber;
            System.Windows.Forms.Label labelBalance;
            this.textBoxFirstName = new System.Windows.Forms.TextBox();
            this.customerBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.databaseDemonstrationDatabaseDataSet = new IntermediateCSharp.Lesson10.L10_DatabaseDataSet();
            this.maskedTextBoxID = new System.Windows.Forms.MaskedTextBox();
            this.textBoxLastName = new System.Windows.Forms.TextBox();
            this.maskedTextBoxPhoneNumber = new System.Windows.Forms.MaskedTextBox();
            this.maskedTextBoxBalance = new System.Windows.Forms.MaskedTextBox();
            this.fillByLastNameToolStrip = new System.Windows.Forms.ToolStrip();
            this.toolStripLabelLastName = new System.Windows.Forms.ToolStripLabel();
            this.toolStripTextBoxLastName = new System.Windows.Forms.ToolStripTextBox();
            this.fillByLastNameToolStripButton = new System.Windows.Forms.ToolStripButton();
            this.customerTableAdapter = new IntermediateCSharp.Lesson10.L10_DatabaseDataSetTableAdapters.CustomerTableAdapter();
            this.tableAdapterManager = new IntermediateCSharp.Lesson10.L10_DatabaseDataSetTableAdapters.TableAdapterManager();
            labelFirstName = new System.Windows.Forms.Label();
            labelID = new System.Windows.Forms.Label();
            labelLastName = new System.Windows.Forms.Label();
            labelPhoneNumber = new System.Windows.Forms.Label();
            labelBalance = new System.Windows.Forms.Label();
            ((System.ComponentModel.ISupportInitialize)(this.customerBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.databaseDemonstrationDatabaseDataSet)).BeginInit();
            this.fillByLastNameToolStrip.SuspendLayout();
            this.SuspendLayout();
            // 
            // labelFirstName
            // 
            labelFirstName.AutoSize = true;
            labelFirstName.Location = new System.Drawing.Point(114, 63);
            labelFirstName.Name = "labelFirstName";
            labelFirstName.Size = new System.Drawing.Size(60, 13);
            labelFirstName.TabIndex = 3;
            labelFirstName.Text = "First Name:";
            // 
            // labelID
            // 
            labelID.AutoSize = true;
            labelID.Location = new System.Drawing.Point(153, 37);
            labelID.Name = "labelID";
            labelID.Size = new System.Drawing.Size(21, 13);
            labelID.TabIndex = 1;
            labelID.Text = "ID:";
            // 
            // labelLastName
            // 
            labelLastName.AutoSize = true;
            labelLastName.Location = new System.Drawing.Point(113, 89);
            labelLastName.Name = "labelLastName";
            labelLastName.Size = new System.Drawing.Size(61, 13);
            labelLastName.TabIndex = 5;
            labelLastName.Text = "Last Name:";
            // 
            // labelPhoneNumber
            // 
            labelPhoneNumber.AutoSize = true;
            labelPhoneNumber.Location = new System.Drawing.Point(93, 115);
            labelPhoneNumber.Name = "labelPhoneNumber";
            labelPhoneNumber.Size = new System.Drawing.Size(81, 13);
            labelPhoneNumber.TabIndex = 7;
            labelPhoneNumber.Text = "Phone Number:";
            // 
            // labelBalance
            // 
            labelBalance.AutoSize = true;
            labelBalance.Location = new System.Drawing.Point(125, 141);
            labelBalance.Name = "labelBalance";
            labelBalance.Size = new System.Drawing.Size(49, 13);
            labelBalance.TabIndex = 9;
            labelBalance.Text = "Balance:";
            // 
            // textBoxFirstName
            // 
            this.textBoxFirstName.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.customerBindingSource, "First Name", true));
            this.textBoxFirstName.Location = new System.Drawing.Point(180, 60);
            this.textBoxFirstName.Name = "textBoxFirstName";
            this.textBoxFirstName.Size = new System.Drawing.Size(100, 20);
            this.textBoxFirstName.TabIndex = 4;
            // 
            // customerBindingSource
            // 
            this.customerBindingSource.DataMember = "Customer";
            this.customerBindingSource.DataSource = this.databaseDemonstrationDatabaseDataSet;
            // 
            // databaseDemonstrationDatabaseDataSet
            // 
            this.databaseDemonstrationDatabaseDataSet.DataSetName = "L10_DatabaseDataSet";
            this.databaseDemonstrationDatabaseDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
            // 
            // maskedTextBoxID
            // 
            this.maskedTextBoxID.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.customerBindingSource, "ID", true));
            this.maskedTextBoxID.Location = new System.Drawing.Point(180, 34);
            this.maskedTextBoxID.Mask = "00000";
            this.maskedTextBoxID.Name = "maskedTextBoxID";
            this.maskedTextBoxID.Size = new System.Drawing.Size(100, 20);
            this.maskedTextBoxID.TabIndex = 2;
            this.maskedTextBoxID.ValidatingType = typeof(int);
            // 
            // textBoxLastName
            // 
            this.textBoxLastName.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.customerBindingSource, "Last Name", true));
            this.textBoxLastName.Location = new System.Drawing.Point(180, 86);
            this.textBoxLastName.Name = "textBoxLastName";
            this.textBoxLastName.Size = new System.Drawing.Size(100, 20);
            this.textBoxLastName.TabIndex = 6;
            // 
            // maskedTextBoxPhoneNumber
            // 
            this.maskedTextBoxPhoneNumber.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.customerBindingSource, "Phone Number", true));
            this.maskedTextBoxPhoneNumber.Location = new System.Drawing.Point(180, 112);
            this.maskedTextBoxPhoneNumber.Mask = "000-0000";
            this.maskedTextBoxPhoneNumber.Name = "maskedTextBoxPhoneNumber";
            this.maskedTextBoxPhoneNumber.Size = new System.Drawing.Size(100, 20);
            this.maskedTextBoxPhoneNumber.TabIndex = 8;
            // 
            // maskedTextBoxBalance
            // 
            this.maskedTextBoxBalance.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.customerBindingSource, "Balance", true));
            this.maskedTextBoxBalance.Location = new System.Drawing.Point(180, 138);
            this.maskedTextBoxBalance.Mask = "$0.00";
            this.maskedTextBoxBalance.Name = "maskedTextBoxBalance";
            this.maskedTextBoxBalance.Size = new System.Drawing.Size(100, 20);
            this.maskedTextBoxBalance.TabIndex = 10;
            // 
            // fillByLastNameToolStrip
            // 
            this.fillByLastNameToolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolStripLabelLastName,
            this.toolStripTextBoxLastName,
            this.fillByLastNameToolStripButton});
            this.fillByLastNameToolStrip.Location = new System.Drawing.Point(0, 0);
            this.fillByLastNameToolStrip.Name = "fillByLastNameToolStrip";
            this.fillByLastNameToolStrip.Size = new System.Drawing.Size(794, 25);
            this.fillByLastNameToolStrip.TabIndex = 0;
            this.fillByLastNameToolStrip.Text = "fillByLastNameToolStrip";
            // 
            // toolStripLabelLastName
            // 
            this.toolStripLabelLastName.Name = "toolStripLabelLastName";
            this.toolStripLabelLastName.Size = new System.Drawing.Size(61, 22);
            this.toolStripLabelLastName.Text = "Last Name:";
            // 
            // toolStripTextBoxLastName
            // 
            this.toolStripTextBoxLastName.Name = "toolStripTextBoxLastName";
            this.toolStripTextBoxLastName.Size = new System.Drawing.Size(100, 25);
            // 
            // fillByLastNameToolStripButton
            // 
            this.fillByLastNameToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
            this.fillByLastNameToolStripButton.Name = "fillByLastNameToolStripButton";
            this.fillByLastNameToolStripButton.Size = new System.Drawing.Size(84, 22);
            this.fillByLastNameToolStripButton.Text = "Find Last Name";
            this.fillByLastNameToolStripButton.Click += new System.EventHandler(this.FillByLastNameToolStripButton_Click);
            // 
            // customerTableAdapter
            // 
            this.customerTableAdapter.ClearBeforeFill = true;
            // 
            // tableAdapterManager
            // 
            this.tableAdapterManager.BackupDataSetBeforeUpdate = false;
            this.tableAdapterManager.CustomerTableAdapter = this.customerTableAdapter;
            this.tableAdapterManager.UpdateOrder = IntermediateCSharp.Lesson10.L10_DatabaseDataSetTableAdapters.TableAdapterManager.UpdateOrderOption.InsertUpdateDelete;
            // 
            // DatabaseDemonstration
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(794, 568);
            this.Controls.Add(this.fillByLastNameToolStrip);
            this.Controls.Add(labelBalance);
            this.Controls.Add(this.maskedTextBoxBalance);
            this.Controls.Add(labelPhoneNumber);
            this.Controls.Add(this.maskedTextBoxPhoneNumber);
            this.Controls.Add(labelLastName);
            this.Controls.Add(this.textBoxLastName);
            this.Controls.Add(labelID);
            this.Controls.Add(this.maskedTextBoxID);
            this.Controls.Add(labelFirstName);
            this.Controls.Add(this.textBoxFirstName);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
            this.MaximizeBox = false;
            this.Name = "DatabaseDemonstration";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "Database Demonstration";
            this.Load += new System.EventHandler(this.DatabaseDemonstrationGui_Load);
            ((System.ComponentModel.ISupportInitialize)(this.customerBindingSource)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.databaseDemonstrationDatabaseDataSet)).EndInit();
            this.fillByLastNameToolStrip.ResumeLayout(false);
            this.fillByLastNameToolStrip.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
 /// <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(frmCategory));
     this.bindingNavigator1 = new System.Windows.Forms.BindingNavigator(this.components);
     this.categoryBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.newDataSet = new PEIMSV3Cs.NewDataSet();
     this.bindingNavigatorCountItem = new System.Windows.Forms.ToolStripLabel();
     this.bindingNavigatorDeleteItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMoveFirstItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMovePreviousItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorPositionItem = new System.Windows.Forms.ToolStripTextBox();
     this.bindingNavigatorSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorMoveNextItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMoveLastItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorAddNewItem = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
     this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
     this.Panel1 = new System.Windows.Forms.Panel();
     this.tabControl1 = new System.Windows.Forms.TabControl();
     this.tabPage1 = new System.Windows.Forms.TabPage();
     this.SaveButton = new System.Windows.Forms.Button();
     this.SearchIDButton = new System.Windows.Forms.Button();
     this.ExitButton = new System.Windows.Forms.Button();
     this.UpdateButton = new System.Windows.Forms.Button();
     this.DeleteButton = new System.Windows.Forms.Button();
     this.AddButton = new System.Windows.Forms.Button();
     this.textBox1 = new System.Windows.Forms.TextBox();
     this.listBox1 = new System.Windows.Forms.ListBox();
     this.categoryIDLabel = new System.Windows.Forms.Label();
     this.categoryIDTextBox = new System.Windows.Forms.TextBox();
     this.categoryNameLabel = new System.Windows.Forms.Label();
     this.categoryNameTextBox = new System.Windows.Forms.TextBox();
     this.categoryDescriptionLabel = new System.Windows.Forms.Label();
     this.categoryDescriptionTextBox = new System.Windows.Forms.TextBox();
     this.tabPage2 = new System.Windows.Forms.TabPage();
     this.categoryDataGridView = new System.Windows.Forms.DataGridView();
     this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.panel3 = new System.Windows.Forms.Panel();
     this.panel4 = new System.Windows.Forms.Panel();
     this.panel5 = new System.Windows.Forms.Panel();
     this.panel6 = new System.Windows.Forms.Panel();
     ((System.ComponentModel.ISupportInitialize)(this.bindingNavigator1)).BeginInit();
     this.bindingNavigator1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.categoryBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.newDataSet)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     this.Panel1.SuspendLayout();
     this.tabControl1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.tabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.categoryDataGridView)).BeginInit();
     this.panel3.SuspendLayout();
     this.SuspendLayout();
     //
     // bindingNavigator1
     //
     this.bindingNavigator1.AddNewItem = null;
     this.bindingNavigator1.BindingSource = this.categoryBindingSource;
     this.bindingNavigator1.CountItem = this.bindingNavigatorCountItem;
     this.bindingNavigator1.DeleteItem = this.bindingNavigatorDeleteItem;
     this.bindingNavigator1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.bindingNavigatorMoveFirstItem,
     this.bindingNavigatorMovePreviousItem,
     this.bindingNavigatorSeparator,
     this.bindingNavigatorPositionItem,
     this.bindingNavigatorCountItem,
     this.bindingNavigatorSeparator1,
     this.bindingNavigatorMoveNextItem,
     this.bindingNavigatorMoveLastItem,
     this.bindingNavigatorSeparator2,
     this.bindingNavigatorAddNewItem,
     this.bindingNavigatorDeleteItem,
     this.toolStripButton1});
     this.bindingNavigator1.Location = new System.Drawing.Point(0, 0);
     this.bindingNavigator1.MoveFirstItem = this.bindingNavigatorMoveFirstItem;
     this.bindingNavigator1.MoveLastItem = this.bindingNavigatorMoveLastItem;
     this.bindingNavigator1.MoveNextItem = this.bindingNavigatorMoveNextItem;
     this.bindingNavigator1.MovePreviousItem = this.bindingNavigatorMovePreviousItem;
     this.bindingNavigator1.Name = "bindingNavigator1";
     this.bindingNavigator1.Padding = new System.Windows.Forms.Padding(10, 0, 10, 0);
     this.bindingNavigator1.PositionItem = this.bindingNavigatorPositionItem;
     this.bindingNavigator1.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
     this.bindingNavigator1.Size = new System.Drawing.Size(612, 25);
     this.bindingNavigator1.TabIndex = 0;
     this.bindingNavigator1.Text = "bindingNavigator1";
     //
     // categoryBindingSource
     //
     this.categoryBindingSource.DataMember = "category";
     this.categoryBindingSource.DataSource = this.newDataSet;
     //
     // newDataSet
     //
     this.newDataSet.DataSetName = "NewDataSet";
     this.newDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // bindingNavigatorCountItem
     //
     this.bindingNavigatorCountItem.Name = "bindingNavigatorCountItem";
     this.bindingNavigatorCountItem.Size = new System.Drawing.Size(35, 22);
     this.bindingNavigatorCountItem.Text = "of {0}";
     this.bindingNavigatorCountItem.ToolTipText = "Total number of items";
     //
     // bindingNavigatorDeleteItem
     //
     this.bindingNavigatorDeleteItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorDeleteItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorDeleteItem.Image")));
     this.bindingNavigatorDeleteItem.Name = "bindingNavigatorDeleteItem";
     this.bindingNavigatorDeleteItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorDeleteItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorDeleteItem.Text = "Delete";
     //
     // bindingNavigatorMoveFirstItem
     //
     this.bindingNavigatorMoveFirstItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveFirstItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveFirstItem.Image")));
     this.bindingNavigatorMoveFirstItem.Name = "bindingNavigatorMoveFirstItem";
     this.bindingNavigatorMoveFirstItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveFirstItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveFirstItem.Text = "Move first";
     //
     // bindingNavigatorMovePreviousItem
     //
     this.bindingNavigatorMovePreviousItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMovePreviousItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMovePreviousItem.Image")));
     this.bindingNavigatorMovePreviousItem.Name = "bindingNavigatorMovePreviousItem";
     this.bindingNavigatorMovePreviousItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMovePreviousItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMovePreviousItem.Text = "Move previous";
     //
     // bindingNavigatorSeparator
     //
     this.bindingNavigatorSeparator.Name = "bindingNavigatorSeparator";
     this.bindingNavigatorSeparator.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorPositionItem
     //
     this.bindingNavigatorPositionItem.AccessibleName = "Position";
     this.bindingNavigatorPositionItem.AutoSize = false;
     this.bindingNavigatorPositionItem.Name = "bindingNavigatorPositionItem";
     this.bindingNavigatorPositionItem.Size = new System.Drawing.Size(50, 23);
     this.bindingNavigatorPositionItem.Text = "0";
     this.bindingNavigatorPositionItem.ToolTipText = "Current position";
     //
     // bindingNavigatorSeparator1
     //
     this.bindingNavigatorSeparator1.Name = "bindingNavigatorSeparator1";
     this.bindingNavigatorSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorMoveNextItem
     //
     this.bindingNavigatorMoveNextItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveNextItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveNextItem.Image")));
     this.bindingNavigatorMoveNextItem.Name = "bindingNavigatorMoveNextItem";
     this.bindingNavigatorMoveNextItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveNextItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveNextItem.Text = "Move next";
     //
     // bindingNavigatorMoveLastItem
     //
     this.bindingNavigatorMoveLastItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveLastItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveLastItem.Image")));
     this.bindingNavigatorMoveLastItem.Name = "bindingNavigatorMoveLastItem";
     this.bindingNavigatorMoveLastItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveLastItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveLastItem.Text = "Move last";
     //
     // bindingNavigatorSeparator2
     //
     this.bindingNavigatorSeparator2.Name = "bindingNavigatorSeparator2";
     this.bindingNavigatorSeparator2.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorAddNewItem
     //
     this.bindingNavigatorAddNewItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorAddNewItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorAddNewItem.Image")));
     this.bindingNavigatorAddNewItem.Name = "bindingNavigatorAddNewItem";
     this.bindingNavigatorAddNewItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorAddNewItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorAddNewItem.Text = "Add new";
     this.bindingNavigatorAddNewItem.Click += new System.EventHandler(this.bindingNavigatorAddNewItem_Click);
     //
     // toolStripButton1
     //
     this.toolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton1.Image")));
     this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton1.Name = "toolStripButton1";
     this.toolStripButton1.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton1.Text = "Save";
     this.toolStripButton1.Click += new System.EventHandler(this.Save_Click);
     //
     // errorProvider1
     //
     this.errorProvider1.ContainerControl = this;
     //
     // Panel1
     //
     this.Panel1.AutoScroll = true;
     this.Panel1.AutoSize = true;
     this.Panel1.Controls.Add(this.tabControl1);
     this.Panel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.Panel1.Location = new System.Drawing.Point(0, 0);
     this.Panel1.Margin = new System.Windows.Forms.Padding(10, 3, 10, 3);
     this.Panel1.Name = "Panel1";
     this.Panel1.Size = new System.Drawing.Size(612, 268);
     this.Panel1.TabIndex = 1;
     //
     // tabControl1
     //
     this.tabControl1.Controls.Add(this.tabPage1);
     this.tabControl1.Controls.Add(this.tabPage2);
     this.tabControl1.Location = new System.Drawing.Point(0, 3);
     this.tabControl1.Name = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size = new System.Drawing.Size(600, 263);
     this.tabControl1.TabIndex = 0;
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.SaveButton);
     this.tabPage1.Controls.Add(this.SearchIDButton);
     this.tabPage1.Controls.Add(this.ExitButton);
     this.tabPage1.Controls.Add(this.UpdateButton);
     this.tabPage1.Controls.Add(this.DeleteButton);
     this.tabPage1.Controls.Add(this.AddButton);
     this.tabPage1.Controls.Add(this.textBox1);
     this.tabPage1.Controls.Add(this.listBox1);
     this.tabPage1.Controls.Add(this.categoryIDLabel);
     this.tabPage1.Controls.Add(this.categoryIDTextBox);
     this.tabPage1.Controls.Add(this.categoryNameLabel);
     this.tabPage1.Controls.Add(this.categoryNameTextBox);
     this.tabPage1.Controls.Add(this.categoryDescriptionLabel);
     this.tabPage1.Controls.Add(this.categoryDescriptionTextBox);
     this.tabPage1.Location = new System.Drawing.Point(4, 22);
     this.tabPage1.Name = "tabPage1";
     this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage1.Size = new System.Drawing.Size(592, 237);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text = "Details View";
     this.tabPage1.UseVisualStyleBackColor = true;
     //
     // SaveButton
     //
     this.SaveButton.Font = new System.Drawing.Font("Copperplate Gothic Light", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.SaveButton.Location = new System.Drawing.Point(394, 204);
     this.SaveButton.Name = "SaveButton";
     this.SaveButton.Size = new System.Drawing.Size(75, 23);
     this.SaveButton.TabIndex = 55;
     this.SaveButton.Text = "Save";
     this.SaveButton.UseVisualStyleBackColor = true;
     this.SaveButton.Click += new System.EventHandler(this.SaveButton_Click);
     //
     // SearchIDButton
     //
     this.SearchIDButton.Font = new System.Drawing.Font("Copperplate Gothic Light", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.SearchIDButton.Location = new System.Drawing.Point(457, 168);
     this.SearchIDButton.Name = "SearchIDButton";
     this.SearchIDButton.Size = new System.Drawing.Size(125, 23);
     this.SearchIDButton.TabIndex = 36;
     this.SearchIDButton.Text = "SearchID";
     this.SearchIDButton.UseVisualStyleBackColor = true;
     //
     // ExitButton
     //
     this.ExitButton.Font = new System.Drawing.Font("Copperplate Gothic Light", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ExitButton.Location = new System.Drawing.Point(507, 204);
     this.ExitButton.Name = "ExitButton";
     this.ExitButton.Size = new System.Drawing.Size(75, 23);
     this.ExitButton.TabIndex = 35;
     this.ExitButton.Text = "Exit";
     this.ExitButton.UseVisualStyleBackColor = true;
     this.ExitButton.Click += new System.EventHandler(this.ExitButton_Click);
     //
     // UpdateButton
     //
     this.UpdateButton.Font = new System.Drawing.Font("Copperplate Gothic Light", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.UpdateButton.Location = new System.Drawing.Point(294, 204);
     this.UpdateButton.Name = "UpdateButton";
     this.UpdateButton.Size = new System.Drawing.Size(75, 23);
     this.UpdateButton.TabIndex = 34;
     this.UpdateButton.Text = "Update";
     this.UpdateButton.UseVisualStyleBackColor = true;
     this.UpdateButton.Click += new System.EventHandler(this.UpdateButton_Click);
     //
     // DeleteButton
     //
     this.DeleteButton.Font = new System.Drawing.Font("Copperplate Gothic Light", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.DeleteButton.Location = new System.Drawing.Point(194, 204);
     this.DeleteButton.Name = "DeleteButton";
     this.DeleteButton.Size = new System.Drawing.Size(75, 23);
     this.DeleteButton.TabIndex = 33;
     this.DeleteButton.Text = "Delete";
     this.DeleteButton.UseVisualStyleBackColor = true;
     this.DeleteButton.Click += new System.EventHandler(this.DeleteButton_Click);
     //
     // AddButton
     //
     this.AddButton.Font = new System.Drawing.Font("Copperplate Gothic Light", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.AddButton.Location = new System.Drawing.Point(96, 204);
     this.AddButton.Name = "AddButton";
     this.AddButton.Size = new System.Drawing.Size(75, 23);
     this.AddButton.TabIndex = 32;
     this.AddButton.Text = "Add";
     this.AddButton.UseVisualStyleBackColor = true;
     this.AddButton.Click += new System.EventHandler(this.AddButton_Click);
     //
     // textBox1
     //
     this.textBox1.Location = new System.Drawing.Point(457, 140);
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new System.Drawing.Size(120, 20);
     this.textBox1.TabIndex = 31;
     //
     // listBox1
     //
     this.listBox1.DataSource = this.categoryBindingSource;
     this.listBox1.DisplayMember = "categoryID";
     this.listBox1.FormattingEnabled = true;
     this.listBox1.Location = new System.Drawing.Point(457, 26);
     this.listBox1.Name = "listBox1";
     this.listBox1.Size = new System.Drawing.Size(120, 108);
     this.listBox1.TabIndex = 30;
     //
     // categoryIDLabel
     //
     this.categoryIDLabel.AutoSize = true;
     this.categoryIDLabel.Font = new System.Drawing.Font("Copperplate Gothic Light", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.categoryIDLabel.Location = new System.Drawing.Point(16, 30);
     this.categoryIDLabel.Name = "categoryIDLabel";
     this.categoryIDLabel.Size = new System.Drawing.Size(74, 12);
     this.categoryIDLabel.TabIndex = 24;
     this.categoryIDLabel.Text = "categoryID";
     //
     // categoryIDTextBox
     //
     this.categoryIDTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.categoryBindingSource, "categoryID", true));
     this.categoryIDTextBox.Location = new System.Drawing.Point(158, 26);
     this.categoryIDTextBox.Name = "categoryIDTextBox";
     this.categoryIDTextBox.Size = new System.Drawing.Size(272, 20);
     this.categoryIDTextBox.TabIndex = 25;
     //
     // categoryNameLabel
     //
     this.categoryNameLabel.AutoSize = true;
     this.categoryNameLabel.Font = new System.Drawing.Font("Copperplate Gothic Light", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.categoryNameLabel.Location = new System.Drawing.Point(16, 74);
     this.categoryNameLabel.Name = "categoryNameLabel";
     this.categoryNameLabel.Size = new System.Drawing.Size(94, 12);
     this.categoryNameLabel.TabIndex = 26;
     this.categoryNameLabel.Text = "categoryName";
     //
     // categoryNameTextBox
     //
     this.categoryNameTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.categoryBindingSource, "categoryName", true));
     this.categoryNameTextBox.Location = new System.Drawing.Point(158, 70);
     this.categoryNameTextBox.Name = "categoryNameTextBox";
     this.categoryNameTextBox.Size = new System.Drawing.Size(272, 20);
     this.categoryNameTextBox.TabIndex = 27;
     //
     // categoryDescriptionLabel
     //
     this.categoryDescriptionLabel.AutoSize = true;
     this.categoryDescriptionLabel.Font = new System.Drawing.Font("Copperplate Gothic Light", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.categoryDescriptionLabel.Location = new System.Drawing.Point(16, 122);
     this.categoryDescriptionLabel.Name = "categoryDescriptionLabel";
     this.categoryDescriptionLabel.Size = new System.Drawing.Size(135, 12);
     this.categoryDescriptionLabel.TabIndex = 28;
     this.categoryDescriptionLabel.Text = "categoryDescription";
     //
     // categoryDescriptionTextBox
     //
     this.categoryDescriptionTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.categoryBindingSource, "categoryDescription", true));
     this.categoryDescriptionTextBox.Location = new System.Drawing.Point(158, 118);
     this.categoryDescriptionTextBox.Name = "categoryDescriptionTextBox";
     this.categoryDescriptionTextBox.Size = new System.Drawing.Size(272, 20);
     this.categoryDescriptionTextBox.TabIndex = 29;
     //
     // tabPage2
     //
     this.tabPage2.AutoScroll = true;
     this.tabPage2.Controls.Add(this.categoryDataGridView);
     this.tabPage2.Location = new System.Drawing.Point(4, 22);
     this.tabPage2.Name = "tabPage2";
     this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage2.Size = new System.Drawing.Size(592, 237);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text = "Data Grid View";
     this.tabPage2.UseVisualStyleBackColor = true;
     //
     // categoryDataGridView
     //
     this.categoryDataGridView.AutoGenerateColumns = false;
     this.categoryDataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.categoryDataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.dataGridViewTextBoxColumn1,
     this.dataGridViewTextBoxColumn2,
     this.dataGridViewTextBoxColumn3});
     this.categoryDataGridView.DataSource = this.categoryBindingSource;
     this.categoryDataGridView.Location = new System.Drawing.Point(-4, 0);
     this.categoryDataGridView.Name = "categoryDataGridView";
     this.categoryDataGridView.Size = new System.Drawing.Size(345, 241);
     this.categoryDataGridView.TabIndex = 0;
     //
     // dataGridViewTextBoxColumn1
     //
     this.dataGridViewTextBoxColumn1.DataPropertyName = "categoryID";
     this.dataGridViewTextBoxColumn1.HeaderText = "categoryID";
     this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
     //
     // dataGridViewTextBoxColumn2
     //
     this.dataGridViewTextBoxColumn2.DataPropertyName = "categoryName";
     this.dataGridViewTextBoxColumn2.HeaderText = "categoryName";
     this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
     //
     // dataGridViewTextBoxColumn3
     //
     this.dataGridViewTextBoxColumn3.DataPropertyName = "categoryDescription";
     this.dataGridViewTextBoxColumn3.HeaderText = "categoryDescription";
     this.dataGridViewTextBoxColumn3.Name = "dataGridViewTextBoxColumn3";
     //
     // panel3
     //
     this.panel3.Controls.Add(this.Panel1);
     this.panel3.Controls.Add(this.panel4);
     this.panel3.Controls.Add(this.panel5);
     this.panel3.Controls.Add(this.panel6);
     this.panel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel3.Location = new System.Drawing.Point(0, 25);
     this.panel3.Name = "panel3";
     this.panel3.Size = new System.Drawing.Size(612, 268);
     this.panel3.TabIndex = 19;
     //
     // panel4
     //
     this.panel4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel4.Location = new System.Drawing.Point(0, 0);
     this.panel4.Name = "panel4";
     this.panel4.Size = new System.Drawing.Size(612, 268);
     this.panel4.TabIndex = 3;
     //
     // panel5
     //
     this.panel5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel5.Location = new System.Drawing.Point(0, 0);
     this.panel5.Name = "panel5";
     this.panel5.Size = new System.Drawing.Size(612, 268);
     this.panel5.TabIndex = 5;
     //
     // panel6
     //
     this.panel6.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel6.Location = new System.Drawing.Point(0, 0);
     this.panel6.Name = "panel6";
     this.panel6.Size = new System.Drawing.Size(612, 268);
     this.panel6.TabIndex = 6;
     //
     // frmCategory
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoScroll = true;
     this.ClientSize = new System.Drawing.Size(612, 293);
     this.Controls.Add(this.panel3);
     this.Controls.Add(this.bindingNavigator1);
     this.Name = "frmCategory";
     this.Text = "Category";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmcategory_FormClosing);
     this.Load += new System.EventHandler(this.frmcategory_Load);
     ((System.ComponentModel.ISupportInitialize)(this.bindingNavigator1)).EndInit();
     this.bindingNavigator1.ResumeLayout(false);
     this.bindingNavigator1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.categoryBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.newDataSet)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     this.Panel1.ResumeLayout(false);
     this.tabControl1.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     this.tabPage1.PerformLayout();
     this.tabPage2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.categoryDataGridView)).EndInit();
     this.panel3.ResumeLayout(false);
     this.panel3.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Beispiel #36
0
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
     this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
     this.btnGetSongs    = new System.Windows.Forms.Button();
     this.tabControl1    = new System.Windows.Forms.TabControl();
     this.tabPage1       = new System.Windows.Forms.TabPage();
     this.dataGridView1  = new System.Windows.Forms.DataGridView();
     this.idDataGridViewTextBoxColumn     = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.titleDataGridViewTextBoxColumn  = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.artistDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.genreDataGridViewTextBoxColumn  = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.tabPage2                         = new System.Windows.Forms.TabPage();
     this.btnSave                          = new System.Windows.Forms.Button();
     this.txtGenre                         = new System.Windows.Forms.TextBox();
     this.label4                           = new System.Windows.Forms.Label();
     this.txtArtist                        = new System.Windows.Forms.TextBox();
     this.label3                           = new System.Windows.Forms.Label();
     this.txtTitle                         = new System.Windows.Forms.TextBox();
     this.label2                           = new System.Windows.Forms.Label();
     this.txtId                            = new System.Windows.Forms.TextBox();
     this.label1                           = new System.Windows.Forms.Label();
     this.bindingNavigator1                = new System.Windows.Forms.BindingNavigator(this.components);
     this.bindingNavigatorAddNewItem       = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorCountItem        = new System.Windows.Forms.ToolStripLabel();
     this.bindingNavigatorMoveFirstItem    = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMovePreviousItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator        = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorPositionItem     = new System.Windows.Forms.ToolStripTextBox();
     this.bindingNavigatorSeparator1       = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorMoveNextItem     = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMoveLastItem     = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator2       = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorDeleteItem       = new System.Windows.Forms.ToolStripButton();
     this.btnLoginDemo                     = new System.Windows.Forms.Button();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
     this.tabControl1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
     this.tabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bindingNavigator1)).BeginInit();
     this.bindingNavigator1.SuspendLayout();
     this.SuspendLayout();
     //
     // bindingSource1
     //
     this.bindingSource1.DataSource = typeof(Song);
     //
     // btnGetSongs
     //
     this.btnGetSongs.Location = new System.Drawing.Point(12, 34);
     this.btnGetSongs.Name     = "btnGetSongs";
     this.btnGetSongs.Size     = new System.Drawing.Size(115, 37);
     this.btnGetSongs.TabIndex = 1;
     this.btnGetSongs.Text     = "Get All Songs";
     this.btnGetSongs.UseVisualStyleBackColor = true;
     this.btnGetSongs.Click += new System.EventHandler(this.BtnGetSongsClick);
     //
     // tabControl1
     //
     this.tabControl1.Controls.Add(this.tabPage1);
     this.tabControl1.Controls.Add(this.tabPage2);
     this.tabControl1.Enabled       = false;
     this.tabControl1.Location      = new System.Drawing.Point(12, 77);
     this.tabControl1.Name          = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size          = new System.Drawing.Size(640, 297);
     this.tabControl1.TabIndex      = 2;
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.dataGridView1);
     this.tabPage1.Location = new System.Drawing.Point(4, 22);
     this.tabPage1.Name     = "tabPage1";
     this.tabPage1.Padding  = new System.Windows.Forms.Padding(3);
     this.tabPage1.Size     = new System.Drawing.Size(632, 271);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text     = "Datasheet View";
     this.tabPage1.UseVisualStyleBackColor = true;
     //
     // dataGridView1
     //
     this.dataGridView1.AutoGenerateColumns         = false;
     this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
         this.idDataGridViewTextBoxColumn,
         this.titleDataGridViewTextBoxColumn,
         this.artistDataGridViewTextBoxColumn,
         this.genreDataGridViewTextBoxColumn
     });
     this.dataGridView1.DataSource = this.bindingSource1;
     this.dataGridView1.Location   = new System.Drawing.Point(6, 6);
     this.dataGridView1.Name       = "dataGridView1";
     this.dataGridView1.Size       = new System.Drawing.Size(620, 247);
     this.dataGridView1.TabIndex   = 0;
     //
     // idDataGridViewTextBoxColumn
     //
     this.idDataGridViewTextBoxColumn.DataPropertyName = "Id";
     this.idDataGridViewTextBoxColumn.HeaderText       = "Id";
     this.idDataGridViewTextBoxColumn.Name             = "idDataGridViewTextBoxColumn";
     //
     // titleDataGridViewTextBoxColumn
     //
     this.titleDataGridViewTextBoxColumn.DataPropertyName = "Title";
     this.titleDataGridViewTextBoxColumn.HeaderText       = "Title";
     this.titleDataGridViewTextBoxColumn.Name             = "titleDataGridViewTextBoxColumn";
     //
     // artistDataGridViewTextBoxColumn
     //
     this.artistDataGridViewTextBoxColumn.DataPropertyName = "Artist";
     this.artistDataGridViewTextBoxColumn.HeaderText       = "Artist";
     this.artistDataGridViewTextBoxColumn.Name             = "artistDataGridViewTextBoxColumn";
     //
     // genreDataGridViewTextBoxColumn
     //
     this.genreDataGridViewTextBoxColumn.DataPropertyName = "Genre";
     this.genreDataGridViewTextBoxColumn.HeaderText       = "Genre";
     this.genreDataGridViewTextBoxColumn.Name             = "genreDataGridViewTextBoxColumn";
     //
     // tabPage2
     //
     this.tabPage2.Controls.Add(this.btnSave);
     this.tabPage2.Controls.Add(this.txtGenre);
     this.tabPage2.Controls.Add(this.label4);
     this.tabPage2.Controls.Add(this.txtArtist);
     this.tabPage2.Controls.Add(this.label3);
     this.tabPage2.Controls.Add(this.txtTitle);
     this.tabPage2.Controls.Add(this.label2);
     this.tabPage2.Controls.Add(this.txtId);
     this.tabPage2.Controls.Add(this.label1);
     this.tabPage2.Location = new System.Drawing.Point(4, 22);
     this.tabPage2.Name     = "tabPage2";
     this.tabPage2.Padding  = new System.Windows.Forms.Padding(3);
     this.tabPage2.Size     = new System.Drawing.Size(632, 271);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text     = "Detail View";
     this.tabPage2.UseVisualStyleBackColor = true;
     //
     // btnSave
     //
     this.btnSave.Location = new System.Drawing.Point(182, 172);
     this.btnSave.Name     = "btnSave";
     this.btnSave.Size     = new System.Drawing.Size(100, 33);
     this.btnSave.TabIndex = 8;
     this.btnSave.Text     = "Save";
     this.btnSave.UseVisualStyleBackColor = true;
     this.btnSave.Click += new System.EventHandler(this.BtnSaveClick);
     //
     // txtGenre
     //
     this.txtGenre.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bindingSource1, "Genre", true));
     this.txtGenre.Location = new System.Drawing.Point(182, 134);
     this.txtGenre.Name     = "txtGenre";
     this.txtGenre.Size     = new System.Drawing.Size(255, 20);
     this.txtGenre.TabIndex = 7;
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(100, 137);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(76, 23);
     this.label4.TabIndex = 6;
     this.label4.Text     = "Genre";
     //
     // txtArtist
     //
     this.txtArtist.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bindingSource1, "Artist", true));
     this.txtArtist.Location = new System.Drawing.Point(182, 108);
     this.txtArtist.Name     = "txtArtist";
     this.txtArtist.Size     = new System.Drawing.Size(255, 20);
     this.txtArtist.TabIndex = 5;
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(100, 111);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(76, 23);
     this.label3.TabIndex = 4;
     this.label3.Text     = "Artist";
     //
     // txtTitle
     //
     this.txtTitle.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bindingSource1, "Title", true));
     this.txtTitle.Location = new System.Drawing.Point(182, 82);
     this.txtTitle.Name     = "txtTitle";
     this.txtTitle.Size     = new System.Drawing.Size(255, 20);
     this.txtTitle.TabIndex = 3;
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(100, 85);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(76, 23);
     this.label2.TabIndex = 2;
     this.label2.Text     = "Title";
     //
     // txtId
     //
     this.txtId.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bindingSource1, "Id", true));
     this.txtId.Location = new System.Drawing.Point(182, 56);
     this.txtId.Name     = "txtId";
     this.txtId.ReadOnly = true;
     this.txtId.Size     = new System.Drawing.Size(255, 20);
     this.txtId.TabIndex = 1;
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(100, 59);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(76, 23);
     this.label1.TabIndex = 0;
     this.label1.Text     = "Id";
     //
     // bindingNavigator1
     //
     this.bindingNavigator1.AddNewItem    = this.bindingNavigatorAddNewItem;
     this.bindingNavigator1.BindingSource = this.bindingSource1;
     this.bindingNavigator1.CountItem     = this.bindingNavigatorCountItem;
     this.bindingNavigator1.DeleteItem    = null;
     this.bindingNavigator1.Enabled       = false;
     this.bindingNavigator1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.bindingNavigatorMoveFirstItem,
         this.bindingNavigatorMovePreviousItem,
         this.bindingNavigatorSeparator,
         this.bindingNavigatorPositionItem,
         this.bindingNavigatorCountItem,
         this.bindingNavigatorSeparator1,
         this.bindingNavigatorMoveNextItem,
         this.bindingNavigatorMoveLastItem,
         this.bindingNavigatorSeparator2,
         this.bindingNavigatorAddNewItem,
         this.bindingNavigatorDeleteItem
     });
     this.bindingNavigator1.Location         = new System.Drawing.Point(0, 0);
     this.bindingNavigator1.MoveFirstItem    = this.bindingNavigatorMoveFirstItem;
     this.bindingNavigator1.MoveLastItem     = this.bindingNavigatorMoveLastItem;
     this.bindingNavigator1.MoveNextItem     = this.bindingNavigatorMoveNextItem;
     this.bindingNavigator1.MovePreviousItem = this.bindingNavigatorMovePreviousItem;
     this.bindingNavigator1.Name             = "bindingNavigator1";
     this.bindingNavigator1.PositionItem     = this.bindingNavigatorPositionItem;
     this.bindingNavigator1.Size             = new System.Drawing.Size(660, 25);
     this.bindingNavigator1.TabIndex         = 3;
     this.bindingNavigator1.Text             = "bindingNavigator1";
     //
     // bindingNavigatorAddNewItem
     //
     this.bindingNavigatorAddNewItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorAddNewItem.Image        = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorAddNewItem.Image")));
     this.bindingNavigatorAddNewItem.Name         = "bindingNavigatorAddNewItem";
     this.bindingNavigatorAddNewItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorAddNewItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorAddNewItem.Text = "Add new";
     //
     // bindingNavigatorCountItem
     //
     this.bindingNavigatorCountItem.Name        = "bindingNavigatorCountItem";
     this.bindingNavigatorCountItem.Size        = new System.Drawing.Size(35, 22);
     this.bindingNavigatorCountItem.Text        = "of {0}";
     this.bindingNavigatorCountItem.ToolTipText = "Total number of items";
     //
     // bindingNavigatorMoveFirstItem
     //
     this.bindingNavigatorMoveFirstItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveFirstItem.Image        = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveFirstItem.Image")));
     this.bindingNavigatorMoveFirstItem.Name         = "bindingNavigatorMoveFirstItem";
     this.bindingNavigatorMoveFirstItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveFirstItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveFirstItem.Text = "Move first";
     //
     // bindingNavigatorMovePreviousItem
     //
     this.bindingNavigatorMovePreviousItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMovePreviousItem.Image        = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMovePreviousItem.Image")));
     this.bindingNavigatorMovePreviousItem.Name         = "bindingNavigatorMovePreviousItem";
     this.bindingNavigatorMovePreviousItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMovePreviousItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMovePreviousItem.Text = "Move previous";
     //
     // bindingNavigatorSeparator
     //
     this.bindingNavigatorSeparator.Name = "bindingNavigatorSeparator";
     this.bindingNavigatorSeparator.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorPositionItem
     //
     this.bindingNavigatorPositionItem.AccessibleName = "Position";
     this.bindingNavigatorPositionItem.AutoSize       = false;
     this.bindingNavigatorPositionItem.Name           = "bindingNavigatorPositionItem";
     this.bindingNavigatorPositionItem.Size           = new System.Drawing.Size(50, 23);
     this.bindingNavigatorPositionItem.Text           = "0";
     this.bindingNavigatorPositionItem.ToolTipText    = "Current position";
     //
     // bindingNavigatorSeparator1
     //
     this.bindingNavigatorSeparator1.Name = "bindingNavigatorSeparator1";
     this.bindingNavigatorSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorMoveNextItem
     //
     this.bindingNavigatorMoveNextItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveNextItem.Image        = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveNextItem.Image")));
     this.bindingNavigatorMoveNextItem.Name         = "bindingNavigatorMoveNextItem";
     this.bindingNavigatorMoveNextItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveNextItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveNextItem.Text = "Move next";
     //
     // bindingNavigatorMoveLastItem
     //
     this.bindingNavigatorMoveLastItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveLastItem.Image        = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveLastItem.Image")));
     this.bindingNavigatorMoveLastItem.Name         = "bindingNavigatorMoveLastItem";
     this.bindingNavigatorMoveLastItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveLastItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveLastItem.Text = "Move last";
     //
     // bindingNavigatorSeparator2
     //
     this.bindingNavigatorSeparator2.Name = "bindingNavigatorSeparator2";
     this.bindingNavigatorSeparator2.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorDeleteItem
     //
     this.bindingNavigatorDeleteItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorDeleteItem.Image        = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorDeleteItem.Image")));
     this.bindingNavigatorDeleteItem.Name         = "bindingNavigatorDeleteItem";
     this.bindingNavigatorDeleteItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorDeleteItem.Size   = new System.Drawing.Size(23, 22);
     this.bindingNavigatorDeleteItem.Text   = "Delete";
     this.bindingNavigatorDeleteItem.Click += new System.EventHandler(this.BindingNavigatorDeleteItemClick);
     //
     // btnLoginDemo
     //
     this.btnLoginDemo.Location = new System.Drawing.Point(533, 34);
     this.btnLoginDemo.Name     = "btnLoginDemo";
     this.btnLoginDemo.Size     = new System.Drawing.Size(109, 23);
     this.btnLoginDemo.TabIndex = 4;
     this.btnLoginDemo.Text     = "Login Demo...";
     this.btnLoginDemo.UseVisualStyleBackColor = true;
     this.btnLoginDemo.Click += new System.EventHandler(this.BtnLoginDemoClick);
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(660, 385);
     this.Controls.Add(this.btnLoginDemo);
     this.Controls.Add(this.bindingNavigator1);
     this.Controls.Add(this.tabControl1);
     this.Controls.Add(this.btnGetSongs);
     this.Name          = "MainForm";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Songs from Web API";
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
     this.tabControl1.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
     this.tabPage2.ResumeLayout(false);
     this.tabPage2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bindingNavigator1)).EndInit();
     this.bindingNavigator1.ResumeLayout(false);
     this.bindingNavigator1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <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(FrmPermisos));
     this.kryptonHeader1 = new ComponentFactory.Krypton.Toolkit.KryptonHeader();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.splitContainer2 = new System.Windows.Forms.SplitContainer();
     this.dgvUsuarios = new ComponentFactory.Krypton.Toolkit.KryptonDataGridView();
     this.usuarioBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.usuarioBindingNavigator = new System.Windows.Forms.BindingNavigator(this.components);
     this.bindingNavigatorCountItem = new System.Windows.Forms.ToolStripLabel();
     this.bindingNavigatorMoveFirstItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMovePreviousItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorPositionItem = new System.Windows.Forms.ToolStripTextBox();
     this.bindingNavigatorSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorMoveNextItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMoveLastItem = new System.Windows.Forms.ToolStripButton();
     this.kryptonPanel1 = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.gbxInformacion = new System.Windows.Forms.GroupBox();
     this.chkEsPrincipal = new ComponentFactory.Krypton.Toolkit.KryptonCheckBox();
     this.kryptonLabel2 = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.kryptonLabel1 = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.dtpFechaRegistro = new ComponentFactory.Krypton.Toolkit.KryptonDateTimePicker();
     this.cmbEmpleados = new ComponentFactory.Krypton.Toolkit.KryptonComboBox();
     this.txtPassword = new ExactTarget.Windows.Controles.CustomKryptonTextBox();
     this.txtUsername = new ExactTarget.Windows.Controles.CustomKryptonTextBox();
     this.label6 = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.label3 = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.label2 = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.TsMenu = new System.Windows.Forms.ToolStrip();
     this.TsbNuevo = new System.Windows.Forms.ToolStripButton();
     this.TsbEditar = new System.Windows.Forms.ToolStripButton();
     this.TsbEliminar = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator = new System.Windows.Forms.ToolStripSeparator();
     this.TsbGuardar = new System.Windows.Forms.ToolStripButton();
     this.TsbCancelar = new System.Windows.Forms.ToolStripButton();
     this.perUsuario = new ExactTarget.Windows.Controles.PermisosFormulario();
     this.errValidator = new System.Windows.Forms.ErrorProvider(this.components);
     this.usuarioIDDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.usernameDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.passwordDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.esPrincipalDataGridViewCheckBoxColumn = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.fechaRegistroDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.personalDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.permisosBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.personalBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.splitContainer2.Panel1.SuspendLayout();
     this.splitContainer2.Panel2.SuspendLayout();
     this.splitContainer2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgvUsuarios)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.usuarioBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.usuarioBindingNavigator)).BeginInit();
     this.usuarioBindingNavigator.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).BeginInit();
     this.kryptonPanel1.SuspendLayout();
     this.gbxInformacion.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEmpleados)).BeginInit();
     this.TsMenu.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errValidator)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.permisosBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.personalBindingSource)).BeginInit();
     this.SuspendLayout();
     //
     // kryptonHeader1
     //
     this.kryptonHeader1.Dock = System.Windows.Forms.DockStyle.Top;
     this.kryptonHeader1.Location = new System.Drawing.Point(0, 0);
     this.kryptonHeader1.Name = "kryptonHeader1";
     this.kryptonHeader1.PaletteMode = ComponentFactory.Krypton.Toolkit.PaletteMode.Global;
     this.kryptonHeader1.Size = new System.Drawing.Size(753, 31);
     this.kryptonHeader1.TabIndex = 0;
     this.kryptonHeader1.Text = "Permisos de Usuario";
     this.kryptonHeader1.Values.Description = "";
     this.kryptonHeader1.Values.Heading = "Permisos de Usuario";
     this.kryptonHeader1.Values.Image = null;
     //
     // splitContainer1
     //
     this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.Location = new System.Drawing.Point(0, 31);
     this.splitContainer1.Name = "splitContainer1";
     this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.splitContainer2);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.perUsuario);
     this.splitContainer1.Size = new System.Drawing.Size(753, 480);
     this.splitContainer1.SplitterDistance = 236;
     this.splitContainer1.TabIndex = 1;
     //
     // splitContainer2
     //
     this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer2.Location = new System.Drawing.Point(0, 0);
     this.splitContainer2.Name = "splitContainer2";
     //
     // splitContainer2.Panel1
     //
     this.splitContainer2.Panel1.AutoScroll = true;
     this.splitContainer2.Panel1.Controls.Add(this.dgvUsuarios);
     this.splitContainer2.Panel1.Controls.Add(this.usuarioBindingNavigator);
     //
     // splitContainer2.Panel2
     //
     this.splitContainer2.Panel2.Controls.Add(this.kryptonPanel1);
     this.splitContainer2.Panel2.Controls.Add(this.TsMenu);
     this.splitContainer2.Size = new System.Drawing.Size(753, 236);
     this.splitContainer2.SplitterDistance = 274;
     this.splitContainer2.TabIndex = 0;
     //
     // dgvUsuarios
     //
     this.dgvUsuarios.AllowUserToAddRows = false;
     this.dgvUsuarios.AllowUserToDeleteRows = false;
     this.dgvUsuarios.AutoGenerateColumns = false;
     this.dgvUsuarios.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.usuarioIDDataGridViewTextBoxColumn,
     this.usernameDataGridViewTextBoxColumn,
     this.passwordDataGridViewTextBoxColumn,
     this.esPrincipalDataGridViewCheckBoxColumn,
     this.fechaRegistroDataGridViewTextBoxColumn,
     this.personalDataGridViewTextBoxColumn});
     this.dgvUsuarios.DataSource = this.usuarioBindingSource;
     this.dgvUsuarios.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dgvUsuarios.GridStyles.Style = ComponentFactory.Krypton.Toolkit.DataGridViewStyle.Sheet;
     this.dgvUsuarios.GridStyles.StyleBackground = ComponentFactory.Krypton.Toolkit.PaletteBackStyle.GridBackgroundSheet;
     this.dgvUsuarios.GridStyles.StyleColumn = ComponentFactory.Krypton.Toolkit.GridStyle.Sheet;
     this.dgvUsuarios.GridStyles.StyleDataCells = ComponentFactory.Krypton.Toolkit.GridStyle.Sheet;
     this.dgvUsuarios.GridStyles.StyleRow = ComponentFactory.Krypton.Toolkit.GridStyle.Sheet;
     this.dgvUsuarios.Location = new System.Drawing.Point(0, 25);
     this.dgvUsuarios.Name = "dgvUsuarios";
     this.dgvUsuarios.PaletteMode = ComponentFactory.Krypton.Toolkit.PaletteMode.Global;
     this.dgvUsuarios.ReadOnly = true;
     this.dgvUsuarios.RowHeadersWidth = 10;
     this.dgvUsuarios.Size = new System.Drawing.Size(274, 211);
     this.dgvUsuarios.StateCommon.BackStyle = ComponentFactory.Krypton.Toolkit.PaletteBackStyle.GridBackgroundSheet;
     this.dgvUsuarios.TabIndex = 0;
     this.dgvUsuarios.CellEnter += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvUsuarios_CellEnter);
     //
     // usuarioBindingSource
     //
     this.usuarioBindingSource.DataSource = typeof(ExactTarget.Business.Entities.Usuario);
     //
     // usuarioBindingNavigator
     //
     this.usuarioBindingNavigator.AddNewItem = null;
     this.usuarioBindingNavigator.BindingSource = this.usuarioBindingSource;
     this.usuarioBindingNavigator.CountItem = this.bindingNavigatorCountItem;
     this.usuarioBindingNavigator.DeleteItem = null;
     this.usuarioBindingNavigator.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.usuarioBindingNavigator.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.bindingNavigatorMoveFirstItem,
     this.bindingNavigatorMovePreviousItem,
     this.bindingNavigatorSeparator,
     this.bindingNavigatorPositionItem,
     this.bindingNavigatorCountItem,
     this.bindingNavigatorSeparator1,
     this.bindingNavigatorMoveNextItem,
     this.bindingNavigatorMoveLastItem});
     this.usuarioBindingNavigator.Location = new System.Drawing.Point(0, 0);
     this.usuarioBindingNavigator.MoveFirstItem = this.bindingNavigatorMoveFirstItem;
     this.usuarioBindingNavigator.MoveLastItem = this.bindingNavigatorMoveLastItem;
     this.usuarioBindingNavigator.MoveNextItem = this.bindingNavigatorMoveNextItem;
     this.usuarioBindingNavigator.MovePreviousItem = this.bindingNavigatorMovePreviousItem;
     this.usuarioBindingNavigator.Name = "usuarioBindingNavigator";
     this.usuarioBindingNavigator.PositionItem = this.bindingNavigatorPositionItem;
     this.usuarioBindingNavigator.Size = new System.Drawing.Size(274, 25);
     this.usuarioBindingNavigator.TabIndex = 2;
     this.usuarioBindingNavigator.Text = "bindingNavigator1";
     //
     // bindingNavigatorCountItem
     //
     this.bindingNavigatorCountItem.Name = "bindingNavigatorCountItem";
     this.bindingNavigatorCountItem.Size = new System.Drawing.Size(37, 22);
     this.bindingNavigatorCountItem.Text = "de {0}";
     this.bindingNavigatorCountItem.ToolTipText = "Total number of items";
     //
     // bindingNavigatorMoveFirstItem
     //
     this.bindingNavigatorMoveFirstItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveFirstItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveFirstItem.Image")));
     this.bindingNavigatorMoveFirstItem.Name = "bindingNavigatorMoveFirstItem";
     this.bindingNavigatorMoveFirstItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveFirstItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveFirstItem.Text = "Move first";
     //
     // bindingNavigatorMovePreviousItem
     //
     this.bindingNavigatorMovePreviousItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMovePreviousItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMovePreviousItem.Image")));
     this.bindingNavigatorMovePreviousItem.Name = "bindingNavigatorMovePreviousItem";
     this.bindingNavigatorMovePreviousItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMovePreviousItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMovePreviousItem.Text = "Move previous";
     //
     // bindingNavigatorSeparator
     //
     this.bindingNavigatorSeparator.Name = "bindingNavigatorSeparator";
     this.bindingNavigatorSeparator.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorPositionItem
     //
     this.bindingNavigatorPositionItem.AccessibleName = "Position";
     this.bindingNavigatorPositionItem.AutoSize = false;
     this.bindingNavigatorPositionItem.Name = "bindingNavigatorPositionItem";
     this.bindingNavigatorPositionItem.Size = new System.Drawing.Size(50, 23);
     this.bindingNavigatorPositionItem.Text = "0";
     this.bindingNavigatorPositionItem.ToolTipText = "Current position";
     //
     // bindingNavigatorSeparator1
     //
     this.bindingNavigatorSeparator1.Name = "bindingNavigatorSeparator1";
     this.bindingNavigatorSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorMoveNextItem
     //
     this.bindingNavigatorMoveNextItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveNextItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveNextItem.Image")));
     this.bindingNavigatorMoveNextItem.Name = "bindingNavigatorMoveNextItem";
     this.bindingNavigatorMoveNextItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveNextItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveNextItem.Text = "Move next";
     //
     // bindingNavigatorMoveLastItem
     //
     this.bindingNavigatorMoveLastItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveLastItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveLastItem.Image")));
     this.bindingNavigatorMoveLastItem.Name = "bindingNavigatorMoveLastItem";
     this.bindingNavigatorMoveLastItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveLastItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveLastItem.Text = "Move last";
     //
     // kryptonPanel1
     //
     this.kryptonPanel1.Controls.Add(this.gbxInformacion);
     this.kryptonPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.kryptonPanel1.Location = new System.Drawing.Point(0, 25);
     this.kryptonPanel1.Name = "kryptonPanel1";
     this.kryptonPanel1.PaletteMode = ComponentFactory.Krypton.Toolkit.PaletteMode.Global;
     this.kryptonPanel1.PanelBackStyle = ComponentFactory.Krypton.Toolkit.PaletteBackStyle.PanelClient;
     this.kryptonPanel1.Size = new System.Drawing.Size(475, 211);
     this.kryptonPanel1.TabIndex = 3;
     //
     // gbxInformacion
     //
     this.gbxInformacion.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.gbxInformacion.BackColor = System.Drawing.Color.Transparent;
     this.gbxInformacion.Controls.Add(this.chkEsPrincipal);
     this.gbxInformacion.Controls.Add(this.kryptonLabel2);
     this.gbxInformacion.Controls.Add(this.kryptonLabel1);
     this.gbxInformacion.Controls.Add(this.dtpFechaRegistro);
     this.gbxInformacion.Controls.Add(this.cmbEmpleados);
     this.gbxInformacion.Controls.Add(this.txtPassword);
     this.gbxInformacion.Controls.Add(this.txtUsername);
     this.gbxInformacion.Controls.Add(this.label6);
     this.gbxInformacion.Controls.Add(this.label3);
     this.gbxInformacion.Controls.Add(this.label2);
     this.gbxInformacion.Font = new System.Drawing.Font("Calibri", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.gbxInformacion.ForeColor = System.Drawing.Color.Navy;
     this.gbxInformacion.Location = new System.Drawing.Point(14, 14);
     this.gbxInformacion.Name = "gbxInformacion";
     this.gbxInformacion.Size = new System.Drawing.Size(449, 183);
     this.gbxInformacion.TabIndex = 2;
     this.gbxInformacion.TabStop = false;
     this.gbxInformacion.Text = "Datos Usuario";
     //
     // chkEsPrincipal
     //
     this.chkEsPrincipal.LabelStyle = ComponentFactory.Krypton.Toolkit.LabelStyle.NormalControl;
     this.chkEsPrincipal.Location = new System.Drawing.Point(117, 137);
     this.chkEsPrincipal.Name = "chkEsPrincipal";
     this.chkEsPrincipal.PaletteMode = ComponentFactory.Krypton.Toolkit.PaletteMode.Global;
     this.chkEsPrincipal.Size = new System.Drawing.Size(19, 13);
     this.chkEsPrincipal.TabIndex = 31;
     this.chkEsPrincipal.Values.ExtraText = "";
     this.chkEsPrincipal.Values.Image = null;
     this.chkEsPrincipal.Values.Text = "";
     //
     // kryptonLabel2
     //
     this.kryptonLabel2.LabelStyle = ComponentFactory.Krypton.Toolkit.LabelStyle.NormalControl;
     this.kryptonLabel2.Location = new System.Drawing.Point(19, 135);
     this.kryptonLabel2.Name = "kryptonLabel2";
     this.kryptonLabel2.PaletteMode = ComponentFactory.Krypton.Toolkit.PaletteMode.Global;
     this.kryptonLabel2.Size = new System.Drawing.Size(91, 20);
     this.kryptonLabel2.TabIndex = 30;
     this.kryptonLabel2.Text = "Administrador:";
     this.kryptonLabel2.Values.ExtraText = "";
     this.kryptonLabel2.Values.Image = null;
     this.kryptonLabel2.Values.Text = "Administrador:";
     //
     // kryptonLabel1
     //
     this.kryptonLabel1.LabelStyle = ComponentFactory.Krypton.Toolkit.LabelStyle.NormalControl;
     this.kryptonLabel1.Location = new System.Drawing.Point(19, 109);
     this.kryptonLabel1.Name = "kryptonLabel1";
     this.kryptonLabel1.PaletteMode = ComponentFactory.Krypton.Toolkit.PaletteMode.Global;
     this.kryptonLabel1.Size = new System.Drawing.Size(93, 20);
     this.kryptonLabel1.TabIndex = 29;
     this.kryptonLabel1.Text = "Fecha Registro:";
     this.kryptonLabel1.Values.ExtraText = "";
     this.kryptonLabel1.Values.Image = null;
     this.kryptonLabel1.Values.Text = "Fecha Registro:";
     //
     // dtpFechaRegistro
     //
     this.dtpFechaRegistro.CalendarDayOfWeekStyle = ComponentFactory.Krypton.Toolkit.ButtonStyle.CalendarDay;
     this.dtpFechaRegistro.CalendarDayStyle = ComponentFactory.Krypton.Toolkit.ButtonStyle.CalendarDay;
     this.dtpFechaRegistro.CalendarHeaderStyle = ComponentFactory.Krypton.Toolkit.HeaderStyle.Calendar;
     this.dtpFechaRegistro.CalendarTodayDate = new System.DateTime(2010, 4, 28, 0, 0, 0, 0);
     this.dtpFechaRegistro.DropButtonStyle = ComponentFactory.Krypton.Toolkit.ButtonStyle.InputControl;
     this.dtpFechaRegistro.InputControlStyle = ComponentFactory.Krypton.Toolkit.InputControlStyle.Standalone;
     this.dtpFechaRegistro.Location = new System.Drawing.Point(115, 106);
     this.dtpFechaRegistro.Name = "dtpFechaRegistro";
     this.dtpFechaRegistro.Size = new System.Drawing.Size(204, 21);
     this.dtpFechaRegistro.TabIndex = 28;
     this.dtpFechaRegistro.UpDownButtonStyle = ComponentFactory.Krypton.Toolkit.ButtonStyle.InputControl;
     //
     // cmbEmpleados
     //
     this.cmbEmpleados.DataSource = this.personalBindingSource;
     this.cmbEmpleados.DisplayMember = "nombreCompleto";
     this.cmbEmpleados.DropBackStyle = ComponentFactory.Krypton.Toolkit.PaletteBackStyle.ControlClient;
     this.cmbEmpleados.DropButtonStyle = ComponentFactory.Krypton.Toolkit.ButtonStyle.InputControl;
     this.cmbEmpleados.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbEmpleados.DropDownWidth = 258;
     this.cmbEmpleados.InputControlStyle = ComponentFactory.Krypton.Toolkit.InputControlStyle.Standalone;
     this.cmbEmpleados.ItemStyle = ComponentFactory.Krypton.Toolkit.ButtonStyle.ListItem;
     this.cmbEmpleados.Location = new System.Drawing.Point(115, 25);
     this.cmbEmpleados.Name = "cmbEmpleados";
     this.cmbEmpleados.PaletteMode = ComponentFactory.Krypton.Toolkit.PaletteMode.Global;
     this.cmbEmpleados.Size = new System.Drawing.Size(301, 21);
     this.cmbEmpleados.TabIndex = 27;
     this.cmbEmpleados.ValueMember = "personalID";
     //
     // txtPassword
     //
     this.txtPassword.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.txtPassword.BackColorEnter = System.Drawing.SystemColors.Window;
     this.txtPassword.BackColorLeave = System.Drawing.SystemColors.Window;
     this.txtPassword.DataType = ExactTarget.Windows.Controles.DataType.Alfanumerico;
     this.txtPassword.ForeColorEnter = System.Drawing.SystemColors.WindowText;
     this.txtPassword.ForeColorLeave = System.Drawing.SystemColors.WindowText;
     this.txtPassword.InputControlStyle = ComponentFactory.Krypton.Toolkit.InputControlStyle.Standalone;
     this.txtPassword.IsMayusculas = false;
     this.txtPassword.Location = new System.Drawing.Point(115, 80);
     this.txtPassword.MaxValue = 0;
     this.txtPassword.Name = "txtPassword";
     this.txtPassword.NumberDecimals = 3;
     this.txtPassword.PaletteMode = ComponentFactory.Krypton.Toolkit.PaletteMode.Office2007Blue;
     this.txtPassword.Size = new System.Drawing.Size(213, 20);
     this.txtPassword.TabIndex = 23;
     //
     // txtUsername
     //
     this.txtUsername.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.txtUsername.BackColorEnter = System.Drawing.SystemColors.Window;
     this.txtUsername.BackColorLeave = System.Drawing.SystemColors.Window;
     this.txtUsername.DataType = ExactTarget.Windows.Controles.DataType.Alfanumerico;
     this.txtUsername.ForeColorEnter = System.Drawing.SystemColors.WindowText;
     this.txtUsername.ForeColorLeave = System.Drawing.SystemColors.WindowText;
     this.txtUsername.InputControlStyle = ComponentFactory.Krypton.Toolkit.InputControlStyle.Standalone;
     this.txtUsername.IsMayusculas = false;
     this.txtUsername.Location = new System.Drawing.Point(115, 54);
     this.txtUsername.MaxValue = 0;
     this.txtUsername.Name = "txtUsername";
     this.txtUsername.NumberDecimals = 3;
     this.txtUsername.PaletteMode = ComponentFactory.Krypton.Toolkit.PaletteMode.Office2007Blue;
     this.txtUsername.Size = new System.Drawing.Size(213, 20);
     this.txtUsername.TabIndex = 22;
     //
     // label6
     //
     this.label6.LabelStyle = ComponentFactory.Krypton.Toolkit.LabelStyle.NormalControl;
     this.label6.Location = new System.Drawing.Point(19, 83);
     this.label6.Name = "label6";
     this.label6.PaletteMode = ComponentFactory.Krypton.Toolkit.PaletteMode.Global;
     this.label6.Size = new System.Drawing.Size(65, 20);
     this.label6.TabIndex = 10;
     this.label6.Text = "Password:"******"";
     this.label6.Values.Image = null;
     this.label6.Values.Text = "Password:"******"label3";
     this.label3.PaletteMode = ComponentFactory.Krypton.Toolkit.PaletteMode.Global;
     this.label3.Size = new System.Drawing.Size(55, 20);
     this.label3.TabIndex = 4;
     this.label3.Text = "Usuario:";
     this.label3.Values.ExtraText = "";
     this.label3.Values.Image = null;
     this.label3.Values.Text = "Usuario:";
     //
     // label2
     //
     this.label2.LabelStyle = ComponentFactory.Krypton.Toolkit.LabelStyle.NormalControl;
     this.label2.Location = new System.Drawing.Point(19, 28);
     this.label2.Name = "label2";
     this.label2.PaletteMode = ComponentFactory.Krypton.Toolkit.PaletteMode.Global;
     this.label2.Size = new System.Drawing.Size(68, 20);
     this.label2.TabIndex = 2;
     this.label2.Text = "Empleado:";
     this.label2.Values.ExtraText = "";
     this.label2.Values.Image = null;
     this.label2.Values.Text = "Empleado:";
     //
     // TsMenu
     //
     this.TsMenu.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.TsMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.TsbNuevo,
     this.TsbEditar,
     this.TsbEliminar,
     this.toolStripSeparator,
     this.TsbGuardar,
     this.TsbCancelar});
     this.TsMenu.Location = new System.Drawing.Point(0, 0);
     this.TsMenu.Name = "TsMenu";
     this.TsMenu.Size = new System.Drawing.Size(475, 25);
     this.TsMenu.TabIndex = 2;
     this.TsMenu.Text = "Barra de Menu";
     //
     // TsbNuevo
     //
     this.TsbNuevo.Image = global::ExactTarget.Windows.Properties.Resources.Add1;
     this.TsbNuevo.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.TsbNuevo.Name = "TsbNuevo";
     this.TsbNuevo.Size = new System.Drawing.Size(62, 22);
     this.TsbNuevo.Text = "&Nuevo";
     this.TsbNuevo.Click += new System.EventHandler(this.TsbNuevo_Click);
     //
     // TsbEditar
     //
     this.TsbEditar.Image = global::ExactTarget.Windows.Properties.Resources.Modify1;
     this.TsbEditar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.TsbEditar.Name = "TsbEditar";
     this.TsbEditar.Size = new System.Drawing.Size(57, 22);
     this.TsbEditar.Text = "E&ditar";
     this.TsbEditar.Click += new System.EventHandler(this.TsbEditar_Click);
     //
     // TsbEliminar
     //
     this.TsbEliminar.Image = global::ExactTarget.Windows.Properties.Resources.Delete1;
     this.TsbEliminar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.TsbEliminar.Name = "TsbEliminar";
     this.TsbEliminar.Size = new System.Drawing.Size(70, 22);
     this.TsbEliminar.Text = "&Eliminar";
     this.TsbEliminar.Click += new System.EventHandler(this.TsbEliminar_Click);
     //
     // toolStripSeparator
     //
     this.toolStripSeparator.Name = "toolStripSeparator";
     this.toolStripSeparator.Size = new System.Drawing.Size(6, 25);
     //
     // TsbGuardar
     //
     this.TsbGuardar.Image = global::ExactTarget.Windows.Properties.Resources.Save1;
     this.TsbGuardar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.TsbGuardar.Name = "TsbGuardar";
     this.TsbGuardar.Size = new System.Drawing.Size(69, 22);
     this.TsbGuardar.Text = "&Guardar";
     this.TsbGuardar.Click += new System.EventHandler(this.TsbGuardar_Click);
     //
     // TsbCancelar
     //
     this.TsbCancelar.Image = global::ExactTarget.Windows.Properties.Resources.Back1;
     this.TsbCancelar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.TsbCancelar.Name = "TsbCancelar";
     this.TsbCancelar.Size = new System.Drawing.Size(73, 22);
     this.TsbCancelar.Text = "&Cancelar";
     this.TsbCancelar.Click += new System.EventHandler(this.TsbCancelar_Click);
     //
     // perUsuario
     //
     this.perUsuario.Dock = System.Windows.Forms.DockStyle.Fill;
     this.perUsuario.EnabledPermisos = true;
     this.perUsuario.Location = new System.Drawing.Point(0, 0);
     this.perUsuario.Name = "perUsuario";
     this.perUsuario.PersonaID = ((short)(0));
     this.perUsuario.Size = new System.Drawing.Size(753, 240);
     this.perUsuario.TabIndex = 0;
     //
     // errValidator
     //
     this.errValidator.ContainerControl = this;
     //
     // usuarioIDDataGridViewTextBoxColumn
     //
     this.usuarioIDDataGridViewTextBoxColumn.DataPropertyName = "usuarioID";
     this.usuarioIDDataGridViewTextBoxColumn.HeaderText = "usuarioID";
     this.usuarioIDDataGridViewTextBoxColumn.Name = "usuarioIDDataGridViewTextBoxColumn";
     this.usuarioIDDataGridViewTextBoxColumn.ReadOnly = true;
     //
     // usernameDataGridViewTextBoxColumn
     //
     this.usernameDataGridViewTextBoxColumn.DataPropertyName = "username";
     this.usernameDataGridViewTextBoxColumn.HeaderText = "username";
     this.usernameDataGridViewTextBoxColumn.Name = "usernameDataGridViewTextBoxColumn";
     this.usernameDataGridViewTextBoxColumn.ReadOnly = true;
     //
     // passwordDataGridViewTextBoxColumn
     //
     this.passwordDataGridViewTextBoxColumn.DataPropertyName = "password";
     this.passwordDataGridViewTextBoxColumn.HeaderText = "password";
     this.passwordDataGridViewTextBoxColumn.Name = "passwordDataGridViewTextBoxColumn";
     this.passwordDataGridViewTextBoxColumn.ReadOnly = true;
     //
     // esPrincipalDataGridViewCheckBoxColumn
     //
     this.esPrincipalDataGridViewCheckBoxColumn.DataPropertyName = "esPrincipal";
     this.esPrincipalDataGridViewCheckBoxColumn.HeaderText = "esPrincipal";
     this.esPrincipalDataGridViewCheckBoxColumn.Name = "esPrincipalDataGridViewCheckBoxColumn";
     this.esPrincipalDataGridViewCheckBoxColumn.ReadOnly = true;
     //
     // fechaRegistroDataGridViewTextBoxColumn
     //
     this.fechaRegistroDataGridViewTextBoxColumn.DataPropertyName = "fechaRegistro";
     this.fechaRegistroDataGridViewTextBoxColumn.HeaderText = "fechaRegistro";
     this.fechaRegistroDataGridViewTextBoxColumn.Name = "fechaRegistroDataGridViewTextBoxColumn";
     this.fechaRegistroDataGridViewTextBoxColumn.ReadOnly = true;
     //
     // personalDataGridViewTextBoxColumn
     //
     this.personalDataGridViewTextBoxColumn.DataPropertyName = "Personal";
     this.personalDataGridViewTextBoxColumn.HeaderText = "Personal";
     this.personalDataGridViewTextBoxColumn.Name = "personalDataGridViewTextBoxColumn";
     this.personalDataGridViewTextBoxColumn.ReadOnly = true;
     //
     // permisosBindingSource
     //
     this.permisosBindingSource.DataSource = typeof(ExactTarget.Business.Entities.Permiso);
     //
     // personalBindingSource
     //
     this.personalBindingSource.DataSource = typeof(ExactTarget.Business.Entities.Usuario);
     //
     // FrmPermisos
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(753, 511);
     this.Controls.Add(this.splitContainer1);
     this.Controls.Add(this.kryptonHeader1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.Name = "FrmPermisos";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "FrmPermisos";
     this.Load += new System.EventHandler(this.FrmPermisos_Load);
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     this.splitContainer1.ResumeLayout(false);
     this.splitContainer2.Panel1.ResumeLayout(false);
     this.splitContainer2.Panel1.PerformLayout();
     this.splitContainer2.Panel2.ResumeLayout(false);
     this.splitContainer2.Panel2.PerformLayout();
     this.splitContainer2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dgvUsuarios)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.usuarioBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.usuarioBindingNavigator)).EndInit();
     this.usuarioBindingNavigator.ResumeLayout(false);
     this.usuarioBindingNavigator.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).EndInit();
     this.kryptonPanel1.ResumeLayout(false);
     this.gbxInformacion.ResumeLayout(false);
     this.gbxInformacion.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEmpleados)).EndInit();
     this.TsMenu.ResumeLayout(false);
     this.TsMenu.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errValidator)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.permisosBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.personalBindingSource)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Beispiel #38
0
        /// <include file='doc\BindingNavigator.uex' path='docs/doc[@for="BindingNavigator.AddStandardItems"]/*' />
        /// <devdoc>
        ///      Adds standard set of tool strip items to a BindingNavigator tool strip, for basic
        ///      navigation operations such as Move First, Move Next, Add New, etc.
        ///
        ///      This method is called by the Windows Form Designer when a new BindingNavigator is
        ///      added to a Form. When creating a BindingNavigator programmatically, this method
        ///      must be called explicitly.
        ///
        ///      Override this method in derived classes to define additional or alternative standard items.
        ///      To ensure optimal design-time support for your derived class, make sure each item has a
        ///      meaningful value in its Name property. At design time, this will be used to generate a unique
        ///      name for the corresponding member variable. The item's Name property will then be updated
        ///      to match the name given to the member variable.
        ///
        ///      Note: This method does NOT remove any previous items from the strip, or suspend
        ///      layout while items are being added. Those are responsibilities of the caller.
        /// </devdoc>
        public virtual void AddStandardItems()
        {
            //
            // Create items
            //

            MoveFirstItem    = new System.Windows.Forms.ToolStripButton();
            MovePreviousItem = new System.Windows.Forms.ToolStripButton();
            MoveNextItem     = new System.Windows.Forms.ToolStripButton();
            MoveLastItem     = new System.Windows.Forms.ToolStripButton();
            PositionItem     = new System.Windows.Forms.ToolStripTextBox();
            CountItem        = new System.Windows.Forms.ToolStripLabel();
            AddNewItem       = new System.Windows.Forms.ToolStripButton();
            DeleteItem       = new System.Windows.Forms.ToolStripButton();

            ToolStripSeparator separator1 = new System.Windows.Forms.ToolStripSeparator();
            ToolStripSeparator separator2 = new System.Windows.Forms.ToolStripSeparator();
            ToolStripSeparator separator3 = new System.Windows.Forms.ToolStripSeparator();

            //
            // Set up strings
            //

            // Hacky workaround for VSWhidbey 407243
            // Default to lowercase for null name, because C# dev is more likely to create controls programmatically than
            // vb dev.
            char ch = string.IsNullOrEmpty(Name) || char.IsLower(Name[0]) ? 'b' : 'B';

            MoveFirstItem.Name    = ch + "indingNavigatorMoveFirstItem";
            MovePreviousItem.Name = ch + "indingNavigatorMovePreviousItem";
            MoveNextItem.Name     = ch + "indingNavigatorMoveNextItem";
            MoveLastItem.Name     = ch + "indingNavigatorMoveLastItem";
            PositionItem.Name     = ch + "indingNavigatorPositionItem";
            CountItem.Name        = ch + "indingNavigatorCountItem";
            AddNewItem.Name       = ch + "indingNavigatorAddNewItem";
            DeleteItem.Name       = ch + "indingNavigatorDeleteItem";
            separator1.Name       = ch + "indingNavigatorSeparator";
            separator2.Name       = ch + "indingNavigatorSeparator";
            separator3.Name       = ch + "indingNavigatorSeparator";

            MoveFirstItem.Text    = SR.GetString(SR.BindingNavigatorMoveFirstItemText);
            MovePreviousItem.Text = SR.GetString(SR.BindingNavigatorMovePreviousItemText);
            MoveNextItem.Text     = SR.GetString(SR.BindingNavigatorMoveNextItemText);
            MoveLastItem.Text     = SR.GetString(SR.BindingNavigatorMoveLastItemText);
            AddNewItem.Text       = SR.GetString(SR.BindingNavigatorAddNewItemText);
            DeleteItem.Text       = SR.GetString(SR.BindingNavigatorDeleteItemText);

            CountItem.ToolTipText    = SR.GetString(SR.BindingNavigatorCountItemTip);
            PositionItem.ToolTipText = SR.GetString(SR.BindingNavigatorPositionItemTip);
            CountItem.AutoToolTip    = false;
            PositionItem.AutoToolTip = false;

            PositionItem.AccessibleName = SR.GetString(SR.BindingNavigatorPositionAccessibleName);
            //
            // Set up images
            //

            Bitmap moveFirstImage    = new Bitmap(typeof(BindingNavigator), "BindingNavigator.MoveFirst.bmp");
            Bitmap movePreviousImage = new Bitmap(typeof(BindingNavigator), "BindingNavigator.MovePrevious.bmp");
            Bitmap moveNextImage     = new Bitmap(typeof(BindingNavigator), "BindingNavigator.MoveNext.bmp");
            Bitmap moveLastImage     = new Bitmap(typeof(BindingNavigator), "BindingNavigator.MoveLast.bmp");
            Bitmap addNewImage       = new Bitmap(typeof(BindingNavigator), "BindingNavigator.AddNew.bmp");
            Bitmap deleteImage       = new Bitmap(typeof(BindingNavigator), "BindingNavigator.Delete.bmp");

            moveFirstImage.MakeTransparent(System.Drawing.Color.Magenta);
            movePreviousImage.MakeTransparent(System.Drawing.Color.Magenta);
            moveNextImage.MakeTransparent(System.Drawing.Color.Magenta);
            moveLastImage.MakeTransparent(System.Drawing.Color.Magenta);
            addNewImage.MakeTransparent(System.Drawing.Color.Magenta);
            deleteImage.MakeTransparent(System.Drawing.Color.Magenta);

            MoveFirstItem.Image    = moveFirstImage;
            MovePreviousItem.Image = movePreviousImage;
            MoveNextItem.Image     = moveNextImage;
            MoveLastItem.Image     = moveLastImage;
            AddNewItem.Image       = addNewImage;
            DeleteItem.Image       = deleteImage;

            MoveFirstItem.RightToLeftAutoMirrorImage    = true;
            MovePreviousItem.RightToLeftAutoMirrorImage = true;
            MoveNextItem.RightToLeftAutoMirrorImage     = true;
            MoveLastItem.RightToLeftAutoMirrorImage     = true;
            AddNewItem.RightToLeftAutoMirrorImage       = true;
            DeleteItem.RightToLeftAutoMirrorImage       = true;

            MoveFirstItem.DisplayStyle    = ToolStripItemDisplayStyle.Image;
            MovePreviousItem.DisplayStyle = ToolStripItemDisplayStyle.Image;
            MoveNextItem.DisplayStyle     = ToolStripItemDisplayStyle.Image;
            MoveLastItem.DisplayStyle     = ToolStripItemDisplayStyle.Image;
            AddNewItem.DisplayStyle       = ToolStripItemDisplayStyle.Image;
            DeleteItem.DisplayStyle       = ToolStripItemDisplayStyle.Image;

            //
            // Set other random properties
            //
            PositionItem.AutoSize = false;
            PositionItem.Width    = 50;

            //
            // Add items to strip
            //

            Items.AddRange(new ToolStripItem[] {
                MoveFirstItem,
                MovePreviousItem,
                separator1,
                PositionItem,
                CountItem,
                separator2,
                MoveNextItem,
                MoveLastItem,
                separator3,
                AddNewItem,
                DeleteItem,
            });
        }
 /// <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(chaxun_zhuan));
     this.dataGridView1 = new System.Windows.Forms.DataGridView();
     this.bindingNavigator1 = new System.Windows.Forms.BindingNavigator(this.components);
     this.bindingNavigatorCountItem = new System.Windows.Forms.ToolStripLabel();
     this.bindingNavigatorMoveFirstItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMovePreviousItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorPositionItem = new System.Windows.Forms.ToolStripTextBox();
     this.bindingNavigatorSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorMoveNextItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMoveLastItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.button1 = new System.Windows.Forms.Button();
     this.button2 = new System.Windows.Forms.Button();
     this.comboBox1 = new System.Windows.Forms.ComboBox();
     this.label1 = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingNavigator1)).BeginInit();
     this.bindingNavigator1.SuspendLayout();
     this.SuspendLayout();
     //
     // dataGridView1
     //
     this.dataGridView1.BackgroundColor = System.Drawing.SystemColors.ButtonHighlight;
     this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridView1.Location = new System.Drawing.Point(21, 92);
     this.dataGridView1.Name = "dataGridView1";
     this.dataGridView1.RowTemplate.Height = 23;
     this.dataGridView1.Size = new System.Drawing.Size(528, 193);
     this.dataGridView1.TabIndex = 0;
     //
     // bindingNavigator1
     //
     this.bindingNavigator1.AddNewItem = null;
     this.bindingNavigator1.CountItem = this.bindingNavigatorCountItem;
     this.bindingNavigator1.DeleteItem = null;
     this.bindingNavigator1.Dock = System.Windows.Forms.DockStyle.None;
     this.bindingNavigator1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.bindingNavigatorMoveFirstItem,
     this.bindingNavigatorMovePreviousItem,
     this.bindingNavigatorSeparator,
     this.bindingNavigatorPositionItem,
     this.bindingNavigatorCountItem,
     this.bindingNavigatorSeparator1,
     this.bindingNavigatorMoveNextItem,
     this.bindingNavigatorMoveLastItem,
     this.bindingNavigatorSeparator2});
     this.bindingNavigator1.Location = new System.Drawing.Point(21, 64);
     this.bindingNavigator1.MoveFirstItem = this.bindingNavigatorMoveFirstItem;
     this.bindingNavigator1.MoveLastItem = this.bindingNavigatorMoveLastItem;
     this.bindingNavigator1.MoveNextItem = this.bindingNavigatorMoveNextItem;
     this.bindingNavigator1.MovePreviousItem = this.bindingNavigatorMovePreviousItem;
     this.bindingNavigator1.Name = "bindingNavigator1";
     this.bindingNavigator1.PositionItem = this.bindingNavigatorPositionItem;
     this.bindingNavigator1.Size = new System.Drawing.Size(206, 25);
     this.bindingNavigator1.TabIndex = 1;
     this.bindingNavigator1.Text = "bindingNavigator1";
     //
     // bindingNavigatorCountItem
     //
     this.bindingNavigatorCountItem.Name = "bindingNavigatorCountItem";
     this.bindingNavigatorCountItem.Size = new System.Drawing.Size(32, 22);
     this.bindingNavigatorCountItem.Text = "/ {0}";
     this.bindingNavigatorCountItem.ToolTipText = "总项数";
     //
     // bindingNavigatorMoveFirstItem
     //
     this.bindingNavigatorMoveFirstItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveFirstItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveFirstItem.Image")));
     this.bindingNavigatorMoveFirstItem.Name = "bindingNavigatorMoveFirstItem";
     this.bindingNavigatorMoveFirstItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveFirstItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveFirstItem.Text = "移到第一条记录";
     //
     // bindingNavigatorMovePreviousItem
     //
     this.bindingNavigatorMovePreviousItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMovePreviousItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMovePreviousItem.Image")));
     this.bindingNavigatorMovePreviousItem.Name = "bindingNavigatorMovePreviousItem";
     this.bindingNavigatorMovePreviousItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMovePreviousItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMovePreviousItem.Text = "移到上一条记录";
     //
     // bindingNavigatorSeparator
     //
     this.bindingNavigatorSeparator.Name = "bindingNavigatorSeparator";
     this.bindingNavigatorSeparator.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorPositionItem
     //
     this.bindingNavigatorPositionItem.AccessibleName = "位置";
     this.bindingNavigatorPositionItem.AutoSize = false;
     this.bindingNavigatorPositionItem.Name = "bindingNavigatorPositionItem";
     this.bindingNavigatorPositionItem.Size = new System.Drawing.Size(50, 23);
     this.bindingNavigatorPositionItem.Text = "0";
     this.bindingNavigatorPositionItem.ToolTipText = "当前位置";
     //
     // bindingNavigatorSeparator1
     //
     this.bindingNavigatorSeparator1.Name = "bindingNavigatorSeparator1";
     this.bindingNavigatorSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorMoveNextItem
     //
     this.bindingNavigatorMoveNextItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveNextItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveNextItem.Image")));
     this.bindingNavigatorMoveNextItem.Name = "bindingNavigatorMoveNextItem";
     this.bindingNavigatorMoveNextItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveNextItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveNextItem.Text = "移到下一条记录";
     //
     // bindingNavigatorMoveLastItem
     //
     this.bindingNavigatorMoveLastItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveLastItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveLastItem.Image")));
     this.bindingNavigatorMoveLastItem.Name = "bindingNavigatorMoveLastItem";
     this.bindingNavigatorMoveLastItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveLastItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveLastItem.Text = "移到最后一条记录";
     //
     // bindingNavigatorSeparator2
     //
     this.bindingNavigatorSeparator2.Name = "bindingNavigatorSeparator2";
     this.bindingNavigatorSeparator2.Size = new System.Drawing.Size(6, 25);
     //
     // button1
     //
     this.button1.BackColor = System.Drawing.Color.Transparent;
     this.button1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button1.BackgroundImage")));
     this.button1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.button1.FlatAppearance.BorderSize = 0;
     this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.button1.Location = new System.Drawing.Point(508, 12);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(41, 36);
     this.button1.TabIndex = 2;
     this.button1.UseVisualStyleBackColor = false;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     this.button1.MouseLeave += new System.EventHandler(this.button1_MouseLeave);
     this.button1.MouseMove += new System.Windows.Forms.MouseEventHandler(this.button1_MouseMove);
     //
     // button2
     //
     this.button2.BackColor = System.Drawing.Color.Transparent;
     this.button2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button2.BackgroundImage")));
     this.button2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.button2.FlatAppearance.BorderSize = 0;
     this.button2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.button2.Location = new System.Drawing.Point(139, 317);
     this.button2.Name = "button2";
     this.button2.Size = new System.Drawing.Size(119, 40);
     this.button2.TabIndex = 3;
     this.button2.UseVisualStyleBackColor = false;
     this.button2.Click += new System.EventHandler(this.button2_Click);
     this.button2.MouseLeave += new System.EventHandler(this.button2_MouseLeave);
     this.button2.MouseMove += new System.Windows.Forms.MouseEventHandler(this.button2_MouseMove);
     //
     // comboBox1
     //
     this.comboBox1.FormattingEnabled = true;
     this.comboBox1.Items.AddRange(new object[] {
     "房产工程",
     "环境工程",
     "公路工程"});
     this.comboBox1.Location = new System.Drawing.Point(139, 291);
     this.comboBox1.Name = "comboBox1";
     this.comboBox1.Size = new System.Drawing.Size(130, 20);
     this.comboBox1.TabIndex = 4;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.label1.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label1.Location = new System.Drawing.Point(12, 288);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(131, 26);
     this.label1.TabIndex = 5;
     this.label1.Text = "选择专家类别:";
     //
     // chaxun_zhuan
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.LightGray;
     this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.ClientSize = new System.Drawing.Size(576, 369);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.comboBox1);
     this.Controls.Add(this.button2);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.bindingNavigator1);
     this.Controls.Add(this.dataGridView1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "chaxun_zhuan";
     this.Text = "Form2";
     this.Load += new System.EventHandler(this.Form2_Load);
     this.MouseDown += new System.Windows.Forms.MouseEventHandler(this.chaxun_zhuan_MouseDown);
     this.MouseMove += new System.Windows.Forms.MouseEventHandler(this.chaxun_zhuan_MouseMove);
     this.MouseUp += new System.Windows.Forms.MouseEventHandler(this.chaxun_zhuan_MouseUp);
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingNavigator1)).EndInit();
     this.bindingNavigator1.ResumeLayout(false);
     this.bindingNavigator1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Beispiel #40
0
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormPurchasePlanNomenclature));
     this.panel1            = new System.Windows.Forms.Panel();
     this.label1            = new System.Windows.Forms.Label();
     this.findButton        = new System.Windows.Forms.Button();
     this.searchTextBox     = new System.Windows.Forms.TextBox();
     this.buttonSave        = new System.Windows.Forms.Button();
     this.buttonCancel      = new System.Windows.Forms.Button();
     this.listView1         = new System.Windows.Forms.ListView();
     this.columnHeader1     = new System.Windows.Forms.ColumnHeader();
     this.columnHeader2     = new System.Windows.Forms.ColumnHeader();
     this.columnHeader14    = new System.Windows.Forms.ColumnHeader();
     this.columnHeader3     = new System.Windows.Forms.ColumnHeader();
     this.columnHeader4     = new System.Windows.Forms.ColumnHeader();
     this.columnHeader5     = new System.Windows.Forms.ColumnHeader();
     this.columnHeader6     = new System.Windows.Forms.ColumnHeader();
     this.columnHeader7     = new System.Windows.Forms.ColumnHeader();
     this.columnHeader8     = new System.Windows.Forms.ColumnHeader();
     this.columnHeader9     = new System.Windows.Forms.ColumnHeader();
     this.columnHeader10    = new System.Windows.Forms.ColumnHeader();
     this.columnHeader11    = new System.Windows.Forms.ColumnHeader();
     this.columnHeader12    = new System.Windows.Forms.ColumnHeader();
     this.columnHeader13    = new System.Windows.Forms.ColumnHeader();
     this.columnHeader15    = new System.Windows.Forms.ColumnHeader();
     this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.выбратьНоменклатуруToolStripMenuItem  = new System.Windows.Forms.ToolStripMenuItem();
     this.показатьВесьПереченьToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.imageList1       = new System.Windows.Forms.ImageList(this.components);
     this.toolStrip1       = new System.Windows.Forms.ToolStrip();
     this.toolStripLabel1  = new System.Windows.Forms.ToolStripLabel();
     this.filterTextBox    = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
     this.toolTip1         = new System.Windows.Forms.ToolTip(this.components);
     this.panel1.SuspendLayout();
     this.contextMenuStrip1.SuspendLayout();
     this.toolStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.Controls.Add(this.label1);
     this.panel1.Controls.Add(this.findButton);
     this.panel1.Controls.Add(this.searchTextBox);
     this.panel1.Controls.Add(this.buttonSave);
     this.panel1.Controls.Add(this.buttonCancel);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.panel1.Location = new System.Drawing.Point(0, 355);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(519, 72);
     this.panel1.TabIndex = 4;
     //
     // label1
     //
     this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                 | System.Windows.Forms.AnchorStyles.Left)
                                                                | System.Windows.Forms.AnchorStyles.Right)));
     this.label1.Location = new System.Drawing.Point(12, 5);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(495, 31);
     this.label1.TabIndex = 20;
     this.label1.Text     = "...";
     //
     // findButton
     //
     this.findButton.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.findButton.Image    = ((System.Drawing.Image)(resources.GetObject("findButton.Image")));
     this.findButton.Location = new System.Drawing.Point(258, 37);
     this.findButton.Name     = "findButton";
     this.findButton.Size     = new System.Drawing.Size(25, 23);
     this.findButton.TabIndex = 18;
     this.toolTip1.SetToolTip(this.findButton, "Поиск");
     this.findButton.UseVisualStyleBackColor = true;
     this.findButton.Click += new System.EventHandler(this.FindButtonClick);
     //
     // searchTextBox
     //
     this.searchTextBox.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.searchTextBox.Location = new System.Drawing.Point(12, 39);
     this.searchTextBox.Name     = "searchTextBox";
     this.searchTextBox.Size     = new System.Drawing.Size(245, 20);
     this.searchTextBox.TabIndex = 2;
     this.toolTip1.SetToolTip(this.searchTextBox, "Введите значение для поиска");
     this.searchTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.TextBox1KeyDown);
     //
     // buttonSave
     //
     this.buttonSave.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonSave.Image      = ((System.Drawing.Image)(resources.GetObject("buttonSave.Image")));
     this.buttonSave.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.buttonSave.Location   = new System.Drawing.Point(351, 37);
     this.buttonSave.Name       = "buttonSave";
     this.buttonSave.Size       = new System.Drawing.Size(75, 23);
     this.buttonSave.TabIndex   = 1;
     this.buttonSave.Text       = "Выбрать";
     this.buttonSave.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     this.buttonSave.UseVisualStyleBackColor = true;
     this.buttonSave.Click += new System.EventHandler(this.ButtonSaveClick);
     //
     // buttonCancel
     //
     this.buttonCancel.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonCancel.Image      = ((System.Drawing.Image)(resources.GetObject("buttonCancel.Image")));
     this.buttonCancel.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.buttonCancel.Location   = new System.Drawing.Point(432, 37);
     this.buttonCancel.Name       = "buttonCancel";
     this.buttonCancel.Size       = new System.Drawing.Size(75, 23);
     this.buttonCancel.TabIndex   = 0;
     this.buttonCancel.Text       = "Отмена";
     this.buttonCancel.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     this.buttonCancel.UseVisualStyleBackColor = true;
     this.buttonCancel.Click += new System.EventHandler(this.ButtonCancelClick);
     //
     // listView1
     //
     this.listView1.Activation = System.Windows.Forms.ItemActivation.OneClick;
     this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.columnHeader1,
         this.columnHeader2,
         this.columnHeader3,
         this.columnHeader14,
         this.columnHeader4,
         this.columnHeader5,
         this.columnHeader6,
         this.columnHeader7,
         this.columnHeader8,
         this.columnHeader9,
         this.columnHeader10,
         this.columnHeader11,
         this.columnHeader12,
         this.columnHeader13,
         this.columnHeader15
     });
     this.listView1.ContextMenuStrip = this.contextMenuStrip1;
     this.listView1.Cursor           = System.Windows.Forms.Cursors.Default;
     this.listView1.Dock             = System.Windows.Forms.DockStyle.Fill;
     this.listView1.FullRowSelect    = true;
     this.listView1.LargeImageList   = this.imageList1;
     this.listView1.Location         = new System.Drawing.Point(0, 25);
     this.listView1.MultiSelect      = false;
     this.listView1.Name             = "listView1";
     this.listView1.Size             = new System.Drawing.Size(519, 330);
     this.listView1.SmallImageList   = this.imageList1;
     this.listView1.StateImageList   = this.imageList1;
     this.listView1.TabIndex         = 7;
     this.listView1.UseCompatibleStateImageBehavior = false;
     this.listView1.View = System.Windows.Forms.View.Details;
     this.listView1.SelectedIndexChanged += new System.EventHandler(this.ListView1SelectedIndexChanged);
     //
     // columnHeader1
     //
     this.columnHeader1.Text  = "...";
     this.columnHeader1.Width = 40;
     //
     // columnHeader2
     //
     this.columnHeader2.Text  = "Наименование";
     this.columnHeader2.Width = 250;
     //
     // columnHeader14
     //
     this.columnHeader14.Text  = "Контрагент";
     this.columnHeader14.Width = 250;
     //
     // columnHeader3
     //
     this.columnHeader3.Text      = "Цена";
     this.columnHeader3.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.columnHeader3.Width     = 100;
     //
     // columnHeader4
     //
     this.columnHeader4.Text  = "Производитель";
     this.columnHeader4.Width = 250;
     //
     // columnHeader5
     //
     this.columnHeader5.Text      = "Остаток";
     this.columnHeader5.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // columnHeader6
     //
     this.columnHeader6.Text = "Срок годности";
     //
     // columnHeader7
     //
     this.columnHeader7.Text      = "Скидка №1";
     this.columnHeader7.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // columnHeader8
     //
     this.columnHeader8.Text      = "Скидка №2";
     this.columnHeader8.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // columnHeader9
     //
     this.columnHeader9.Text      = "Скидка №3";
     this.columnHeader9.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // columnHeader10
     //
     this.columnHeader10.Text      = "Скидка №4";
     this.columnHeader10.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // columnHeader11
     //
     this.columnHeader11.Text = "Код товара";
     //
     // columnHeader12
     //
     this.columnHeader12.Text = "Серия";
     //
     // columnHeader13
     //
     this.columnHeader13.Text = "Артикул";
     //
     // columnHeader15
     //
     this.columnHeader15.Text  = "Прайс-лист";
     this.columnHeader15.Width = 100;
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.выбратьНоменклатуруToolStripMenuItem,
         this.показатьВесьПереченьToolStripMenuItem
     });
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(207, 48);
     //
     // выбратьНоменклатуруToolStripMenuItem
     //
     this.выбратьНоменклатуруToolStripMenuItem.Image  = ((System.Drawing.Image)(resources.GetObject("выбратьНоменклатуруToolStripMenuItem.Image")));
     this.выбратьНоменклатуруToolStripMenuItem.Name   = "выбратьНоменклатуруToolStripMenuItem";
     this.выбратьНоменклатуруToolStripMenuItem.Size   = new System.Drawing.Size(206, 22);
     this.выбратьНоменклатуруToolStripMenuItem.Text   = "Выбрать номенклатуру";
     this.выбратьНоменклатуруToolStripMenuItem.Click += new System.EventHandler(this.ВыбратьНоменклатуруToolStripMenuItemClick);
     //
     // показатьВесьПереченьToolStripMenuItem
     //
     this.показатьВесьПереченьToolStripMenuItem.Image  = ((System.Drawing.Image)(resources.GetObject("показатьВесьПереченьToolStripMenuItem.Image")));
     this.показатьВесьПереченьToolStripMenuItem.Name   = "показатьВесьПереченьToolStripMenuItem";
     this.показатьВесьПереченьToolStripMenuItem.Size   = new System.Drawing.Size(206, 22);
     this.показатьВесьПереченьToolStripMenuItem.Text   = "Показать весь перечень";
     this.показатьВесьПереченьToolStripMenuItem.Click += new System.EventHandler(this.ПоказатьВесьПереченьToolStripMenuItemClick);
     //
     // imageList1
     //
     this.imageList1.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "page.png");
     //
     // toolStrip1
     //
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toolStripLabel1,
         this.filterTextBox,
         this.toolStripButton1
     });
     this.toolStrip1.Location = new System.Drawing.Point(0, 0);
     this.toolStrip1.Name     = "toolStrip1";
     this.toolStrip1.Size     = new System.Drawing.Size(519, 25);
     this.toolStrip1.TabIndex = 8;
     this.toolStrip1.Text     = "toolStrip1";
     //
     // toolStripLabel1
     //
     this.toolStripLabel1.Name = "toolStripLabel1";
     this.toolStripLabel1.Size = new System.Drawing.Size(126, 22);
     this.toolStripLabel1.Text = "Фильтр по значению:";
     //
     // filterTextBox
     //
     this.filterTextBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.filterTextBox.Name        = "filterTextBox";
     this.filterTextBox.Size        = new System.Drawing.Size(200, 25);
     this.filterTextBox.ToolTipText = "Введите значение для фильтра";
     this.filterTextBox.KeyDown    += new System.Windows.Forms.KeyEventHandler(this.FilterTextBoxKeyDown);
     //
     // toolStripButton1
     //
     this.toolStripButton1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton1.Image")));
     this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton1.Name   = "toolStripButton1";
     this.toolStripButton1.Size   = new System.Drawing.Size(90, 22);
     this.toolStripButton1.Text   = "Применить";
     this.toolStripButton1.Click += new System.EventHandler(this.ToolStripButton1Click);
     //
     // FormPurchasePlanNomenclature
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(519, 427);
     this.Controls.Add(this.listView1);
     this.Controls.Add(this.toolStrip1);
     this.Controls.Add(this.panel1);
     this.Icon        = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name        = "FormPurchasePlanNomenclature";
     this.Text        = "Номенклатура из прайс-листов";
     this.Activated  += new System.EventHandler(this.FormPurchasePlanNomenclatureActivated);
     this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.FormPurchasePlanNomenclatureFormClosed);
     this.Load       += new System.EventHandler(this.FormPurchasePlanNomenclatureLoad);
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.contextMenuStrip1.ResumeLayout(false);
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Beispiel #41
0
        /// <include file='doc\BindingNavigator.uex' path='docs/doc[@for="BindingNavigator.AddStandardItems"]/*' />
        /// <devdoc>
        ///      Adds standard set of tool strip items to a BindingNavigator tool strip, for basic
        ///      navigation operations such as Move First, Move Next, Add New, etc.
        ///
        ///      This method is called by the Windows Form Designer when a new BindingNavigator is
        ///      added to a Form. When creating a BindingNavigator programmatically, this method
        ///      must be called explicitly.
        ///
        ///      Override this method in derived classes to define additional or alternative standard items.
        ///      To ensure optimal design-time support for your derived class, make sure each item has a
        ///      meaningful value in its Name property. At design time, this will be used to generate a unique
        ///      name for the corresponding member variable. The item's Name property will then be updated
        ///      to match the name given to the member variable.
        ///
        ///      Note: This method does NOT remove any previous items from the strip, or suspend
        ///      layout while items are being added. Those are responsibilities of the caller.
        /// </devdoc>
        public virtual void AddStandardItems() {

            //
            // Create items
            //

            MoveFirstItem    = new System.Windows.Forms.ToolStripButton();
            MovePreviousItem = new System.Windows.Forms.ToolStripButton();
            MoveNextItem     = new System.Windows.Forms.ToolStripButton();
            MoveLastItem     = new System.Windows.Forms.ToolStripButton();
            PositionItem     = new System.Windows.Forms.ToolStripTextBox();
            CountItem        = new System.Windows.Forms.ToolStripLabel();
            AddNewItem       = new System.Windows.Forms.ToolStripButton();
            DeleteItem       = new System.Windows.Forms.ToolStripButton();

            ToolStripSeparator separator1 = new System.Windows.Forms.ToolStripSeparator();
            ToolStripSeparator separator2 = new System.Windows.Forms.ToolStripSeparator();
            ToolStripSeparator separator3 = new System.Windows.Forms.ToolStripSeparator();

            //
            // Set up strings
            //

            // Hacky workaround for VSWhidbey 407243
            // Default to lowercase for null name, because C# dev is more likely to create controls programmatically than
            // vb dev.
            char ch = string.IsNullOrEmpty(Name) || char.IsLower(Name[0]) ? 'b' : 'B';

            MoveFirstItem.Name    = ch + "indingNavigatorMoveFirstItem";
            MovePreviousItem.Name = ch + "indingNavigatorMovePreviousItem";
            MoveNextItem.Name     = ch + "indingNavigatorMoveNextItem";
            MoveLastItem.Name     = ch + "indingNavigatorMoveLastItem";
            PositionItem.Name     = ch + "indingNavigatorPositionItem";
            CountItem.Name        = ch + "indingNavigatorCountItem";
            AddNewItem.Name       = ch + "indingNavigatorAddNewItem";
            DeleteItem.Name       = ch + "indingNavigatorDeleteItem";
            separator1.Name       = ch + "indingNavigatorSeparator";
            separator2.Name       = ch + "indingNavigatorSeparator";
            separator3.Name       = ch + "indingNavigatorSeparator";

            MoveFirstItem.Text    = SR.GetString(SR.BindingNavigatorMoveFirstItemText);
            MovePreviousItem.Text = SR.GetString(SR.BindingNavigatorMovePreviousItemText);
            MoveNextItem.Text     = SR.GetString(SR.BindingNavigatorMoveNextItemText);
            MoveLastItem.Text     = SR.GetString(SR.BindingNavigatorMoveLastItemText);
            AddNewItem.Text       = SR.GetString(SR.BindingNavigatorAddNewItemText);
            DeleteItem.Text       = SR.GetString(SR.BindingNavigatorDeleteItemText);

            CountItem.ToolTipText    = SR.GetString(SR.BindingNavigatorCountItemTip);
            PositionItem.ToolTipText = SR.GetString(SR.BindingNavigatorPositionItemTip);
            CountItem.AutoToolTip    = false;
            PositionItem.AutoToolTip = false;

            PositionItem.AccessibleName = SR.GetString(SR.BindingNavigatorPositionAccessibleName);
            //
            // Set up images
            //

            Bitmap moveFirstImage    = new Bitmap(typeof(BindingNavigator), "BindingNavigator.MoveFirst.bmp");
            Bitmap movePreviousImage = new Bitmap(typeof(BindingNavigator), "BindingNavigator.MovePrevious.bmp");
            Bitmap moveNextImage     = new Bitmap(typeof(BindingNavigator), "BindingNavigator.MoveNext.bmp");
            Bitmap moveLastImage     = new Bitmap(typeof(BindingNavigator), "BindingNavigator.MoveLast.bmp");
            Bitmap addNewImage       = new Bitmap(typeof(BindingNavigator), "BindingNavigator.AddNew.bmp");
            Bitmap deleteImage       = new Bitmap(typeof(BindingNavigator), "BindingNavigator.Delete.bmp");

            moveFirstImage.MakeTransparent(System.Drawing.Color.Magenta);
            movePreviousImage.MakeTransparent(System.Drawing.Color.Magenta);
            moveNextImage.MakeTransparent(System.Drawing.Color.Magenta);
            moveLastImage.MakeTransparent(System.Drawing.Color.Magenta);
            addNewImage.MakeTransparent(System.Drawing.Color.Magenta);
            deleteImage.MakeTransparent(System.Drawing.Color.Magenta);

            MoveFirstItem.Image    = moveFirstImage;
            MovePreviousItem.Image = movePreviousImage;
            MoveNextItem.Image     = moveNextImage;
            MoveLastItem.Image     = moveLastImage;
            AddNewItem.Image       = addNewImage;
            DeleteItem.Image       = deleteImage;

            MoveFirstItem.RightToLeftAutoMirrorImage = true;
            MovePreviousItem.RightToLeftAutoMirrorImage = true;
            MoveNextItem.RightToLeftAutoMirrorImage = true;
            MoveLastItem.RightToLeftAutoMirrorImage = true;
            AddNewItem.RightToLeftAutoMirrorImage = true;
            DeleteItem.RightToLeftAutoMirrorImage = true;

            MoveFirstItem.DisplayStyle    = ToolStripItemDisplayStyle.Image;
            MovePreviousItem.DisplayStyle = ToolStripItemDisplayStyle.Image;
            MoveNextItem.DisplayStyle     = ToolStripItemDisplayStyle.Image;
            MoveLastItem.DisplayStyle     = ToolStripItemDisplayStyle.Image;
            AddNewItem.DisplayStyle       = ToolStripItemDisplayStyle.Image;
            DeleteItem.DisplayStyle       = ToolStripItemDisplayStyle.Image;

            //
            // Set other random properties
            //
            PositionItem.AutoSize = false;
            PositionItem.Width = 50;

            //
            // Add items to strip
            //

            Items.AddRange(new ToolStripItem[] {
                                MoveFirstItem,
                                MovePreviousItem,
                                separator1,
                                PositionItem,
                                CountItem,
                                separator2,
                                MoveNextItem,
                                MoveLastItem,
                                separator3,
                                AddNewItem,
                                DeleteItem,
                                });
        }
 /// <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();
     this.label2 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.txtIdAlicuotaALI = new System.Windows.Forms.TextBox();
     this.txtPorcentajeALI = new System.Windows.Forms.TextBox();
     this.gvwDatos = new System.Windows.Forms.DataGridView();
     this.grpBotones = new System.Windows.Forms.GroupBox();
     this.btnCancelar = new System.Windows.Forms.Button();
     this.btnSalir = new System.Windows.Forms.Button();
     this.btnGrabar = new System.Windows.Forms.Button();
     this.btnBorrar = new System.Windows.Forms.Button();
     this.btnEditar = new System.Windows.Forms.Button();
     this.btnNuevo = new System.Windows.Forms.Button();
     this.grpCampos = new System.Windows.Forms.GroupBox();
     this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
     this.bindingNavigator1 = new System.Windows.Forms.BindingNavigator(this.components);
     this.bindingNavigatorCountItem = new System.Windows.Forms.ToolStripLabel();
     this.bindingNavigatorMoveFirstItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMovePreviousItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorPositionItem = new System.Windows.Forms.ToolStripTextBox();
     this.bindingNavigatorSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorMoveNextItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMoveLastItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.gvwDatos)).BeginInit();
     this.grpBotones.SuspendLayout();
     this.grpCampos.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingNavigator1)).BeginInit();
     this.bindingNavigator1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     this.SuspendLayout();
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.ForeColor = System.Drawing.SystemColors.ActiveCaption;
     this.label2.Location = new System.Drawing.Point(8, 42);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(66, 15);
     this.label2.TabIndex = 22;
     this.label2.Text = "Porcentaje";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.SystemColors.ActiveCaption;
     this.label1.Location = new System.Drawing.Point(8, 16);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(19, 15);
     this.label1.TabIndex = 21;
     this.label1.Text = "ID";
     //
     // txtIdAlicuotaALI
     //
     this.txtIdAlicuotaALI.BackColor = System.Drawing.SystemColors.ActiveCaptionText;
     this.txtIdAlicuotaALI.Location = new System.Drawing.Point(104, 16);
     this.txtIdAlicuotaALI.Name = "txtIdAlicuotaALI";
     this.txtIdAlicuotaALI.ReadOnly = true;
     this.txtIdAlicuotaALI.Size = new System.Drawing.Size(147, 20);
     this.txtIdAlicuotaALI.TabIndex = 0;
     //
     // txtPorcentajeALI
     //
     this.txtPorcentajeALI.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtPorcentajeALI.Location = new System.Drawing.Point(104, 42);
     this.txtPorcentajeALI.Name = "txtPorcentajeALI";
     this.txtPorcentajeALI.Size = new System.Drawing.Size(147, 20);
     this.txtPorcentajeALI.TabIndex = 1;
     //
     // gvwDatos
     //
     this.gvwDatos.AllowUserToAddRows = false;
     this.gvwDatos.AllowUserToDeleteRows = false;
     this.gvwDatos.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells;
     this.gvwDatos.Location = new System.Drawing.Point(12, 16);
     this.gvwDatos.Name = "gvwDatos";
     this.gvwDatos.ReadOnly = true;
     this.gvwDatos.Size = new System.Drawing.Size(270, 241);
     this.gvwDatos.TabIndex = 18;
     this.gvwDatos.TabStop = false;
     this.gvwDatos.Text = "DataGridView1";
     //
     // grpBotones
     //
     this.grpBotones.Controls.Add(this.btnCancelar);
     this.grpBotones.Controls.Add(this.btnSalir);
     this.grpBotones.Controls.Add(this.btnGrabar);
     this.grpBotones.Controls.Add(this.btnBorrar);
     this.grpBotones.Controls.Add(this.btnEditar);
     this.grpBotones.Controls.Add(this.btnNuevo);
     this.grpBotones.Location = new System.Drawing.Point(293, 12);
     this.grpBotones.Name = "grpBotones";
     this.grpBotones.Size = new System.Drawing.Size(172, 332);
     this.grpBotones.TabIndex = 2;
     this.grpBotones.TabStop = false;
     //
     // btnCancelar
     //
     this.btnCancelar.Location = new System.Drawing.Point(20, 148);
     this.btnCancelar.Name = "btnCancelar";
     this.btnCancelar.Size = new System.Drawing.Size(132, 26);
     this.btnCancelar.TabIndex = 6;
     this.btnCancelar.Text = "Cancelar";
     this.btnCancelar.UseVisualStyleBackColor = true;
     this.btnCancelar.Click += new System.EventHandler(this.btnCancelar_Click);
     //
     // btnSalir
     //
     this.btnSalir.Location = new System.Drawing.Point(20, 180);
     this.btnSalir.Name = "btnSalir";
     this.btnSalir.Size = new System.Drawing.Size(132, 26);
     this.btnSalir.TabIndex = 5;
     this.btnSalir.Text = "Salir";
     this.btnSalir.UseVisualStyleBackColor = true;
     this.btnSalir.Click += new System.EventHandler(this.btnSalir_Click);
     //
     // btnGrabar
     //
     this.btnGrabar.Location = new System.Drawing.Point(20, 116);
     this.btnGrabar.Name = "btnGrabar";
     this.btnGrabar.Size = new System.Drawing.Size(132, 26);
     this.btnGrabar.TabIndex = 4;
     this.btnGrabar.Text = "Grabar";
     this.btnGrabar.UseVisualStyleBackColor = true;
     this.btnGrabar.Click += new System.EventHandler(this.btnGrabar_Click);
     //
     // btnBorrar
     //
     this.btnBorrar.Location = new System.Drawing.Point(20, 84);
     this.btnBorrar.Name = "btnBorrar";
     this.btnBorrar.Size = new System.Drawing.Size(132, 26);
     this.btnBorrar.TabIndex = 3;
     this.btnBorrar.Text = "Borrar";
     this.btnBorrar.UseVisualStyleBackColor = true;
     this.btnBorrar.Click += new System.EventHandler(this.btnBorrar_Click);
     //
     // btnEditar
     //
     this.btnEditar.Location = new System.Drawing.Point(20, 52);
     this.btnEditar.Name = "btnEditar";
     this.btnEditar.Size = new System.Drawing.Size(132, 26);
     this.btnEditar.TabIndex = 2;
     this.btnEditar.Text = "Editar";
     this.btnEditar.UseVisualStyleBackColor = true;
     this.btnEditar.Click += new System.EventHandler(this.btnEditar_Click);
     //
     // btnNuevo
     //
     this.btnNuevo.Location = new System.Drawing.Point(20, 20);
     this.btnNuevo.Name = "btnNuevo";
     this.btnNuevo.Size = new System.Drawing.Size(132, 26);
     this.btnNuevo.TabIndex = 1;
     this.btnNuevo.Text = "Nuevo";
     this.btnNuevo.UseVisualStyleBackColor = true;
     this.btnNuevo.Click += new System.EventHandler(this.btnNuevo_Click);
     //
     // grpCampos
     //
     this.grpCampos.Controls.Add(this.label1);
     this.grpCampos.Controls.Add(this.label2);
     this.grpCampos.Controls.Add(this.txtPorcentajeALI);
     this.grpCampos.Controls.Add(this.txtIdAlicuotaALI);
     this.grpCampos.Location = new System.Drawing.Point(12, 263);
     this.grpCampos.Name = "grpCampos";
     this.grpCampos.Size = new System.Drawing.Size(270, 78);
     this.grpCampos.TabIndex = 0;
     this.grpCampos.TabStop = false;
     //
     // bindingNavigator1
     //
     this.bindingNavigator1.AddNewItem = null;
     this.bindingNavigator1.CountItem = this.bindingNavigatorCountItem;
     this.bindingNavigator1.DeleteItem = null;
     this.bindingNavigator1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.bindingNavigator1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.bindingNavigatorMoveFirstItem,
     this.bindingNavigatorMovePreviousItem,
     this.bindingNavigatorSeparator,
     this.bindingNavigatorPositionItem,
     this.bindingNavigatorCountItem,
     this.bindingNavigatorSeparator1,
     this.bindingNavigatorMoveNextItem,
     this.bindingNavigatorMoveLastItem,
     this.bindingNavigatorSeparator2});
     this.bindingNavigator1.Location = new System.Drawing.Point(0, 358);
     this.bindingNavigator1.MoveFirstItem = this.bindingNavigatorMoveFirstItem;
     this.bindingNavigator1.MoveLastItem = this.bindingNavigatorMoveLastItem;
     this.bindingNavigator1.MoveNextItem = this.bindingNavigatorMoveNextItem;
     this.bindingNavigator1.MovePreviousItem = this.bindingNavigatorMovePreviousItem;
     this.bindingNavigator1.Name = "bindingNavigator1";
     this.bindingNavigator1.PositionItem = this.bindingNavigatorPositionItem;
     this.bindingNavigator1.Size = new System.Drawing.Size(478, 25);
     this.bindingNavigator1.TabIndex = 29;
     this.bindingNavigator1.Text = "bindingNavigator1";
     //
     // bindingNavigatorCountItem
     //
     this.bindingNavigatorCountItem.Name = "bindingNavigatorCountItem";
     this.bindingNavigatorCountItem.Size = new System.Drawing.Size(38, 22);
     this.bindingNavigatorCountItem.Text = "de {0}";
     this.bindingNavigatorCountItem.ToolTipText = "Número total de elementos";
     //
     // bindingNavigatorMoveFirstItem
     //
     this.bindingNavigatorMoveFirstItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveFirstItem.Name = "bindingNavigatorMoveFirstItem";
     this.bindingNavigatorMoveFirstItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveFirstItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveFirstItem.Text = "Mover primero";
     //
     // bindingNavigatorMovePreviousItem
     //
     this.bindingNavigatorMovePreviousItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMovePreviousItem.Name = "bindingNavigatorMovePreviousItem";
     this.bindingNavigatorMovePreviousItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMovePreviousItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMovePreviousItem.Text = "Mover anterior";
     //
     // bindingNavigatorSeparator
     //
     this.bindingNavigatorSeparator.Name = "bindingNavigatorSeparator";
     this.bindingNavigatorSeparator.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorPositionItem
     //
     this.bindingNavigatorPositionItem.AccessibleName = "Posición";
     this.bindingNavigatorPositionItem.AutoSize = false;
     this.bindingNavigatorPositionItem.Name = "bindingNavigatorPositionItem";
     this.bindingNavigatorPositionItem.Size = new System.Drawing.Size(50, 21);
     this.bindingNavigatorPositionItem.Text = "0";
     this.bindingNavigatorPositionItem.ToolTipText = "Posición actual";
     //
     // bindingNavigatorSeparator1
     //
     this.bindingNavigatorSeparator1.Name = "bindingNavigatorSeparator1";
     this.bindingNavigatorSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorMoveNextItem
     //
     this.bindingNavigatorMoveNextItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveNextItem.Name = "bindingNavigatorMoveNextItem";
     this.bindingNavigatorMoveNextItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveNextItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveNextItem.Text = "Mover siguiente";
     //
     // bindingNavigatorMoveLastItem
     //
     this.bindingNavigatorMoveLastItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveLastItem.Name = "bindingNavigatorMoveLastItem";
     this.bindingNavigatorMoveLastItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveLastItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveLastItem.Text = "Mover último";
     //
     // bindingNavigatorSeparator2
     //
     this.bindingNavigatorSeparator2.Name = "bindingNavigatorSeparator2";
     this.bindingNavigatorSeparator2.Size = new System.Drawing.Size(6, 25);
     //
     // errorProvider1
     //
     this.errorProvider1.ContainerControl = this;
     //
     // frmAlicuotasIva
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(478, 383);
     this.ControlBox = false;
     this.Controls.Add(this.bindingNavigator1);
     this.Controls.Add(this.grpCampos);
     this.Controls.Add(this.gvwDatos);
     this.Controls.Add(this.grpBotones);
     this.Name = "frmAlicuotasIva";
     this.Text = "Alicuotas iva";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmAlicuotasIva_FormClosing);
     this.Load += new System.EventHandler(this.frmAlicuotasIva_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gvwDatos)).EndInit();
     this.grpBotones.ResumeLayout(false);
     this.grpCampos.ResumeLayout(false);
     this.grpCampos.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingNavigator1)).EndInit();
     this.bindingNavigator1.ResumeLayout(false);
     this.bindingNavigator1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
     this.txtResult = new System.Windows.Forms.TextBox();
     this.txtExp = new System.Windows.Forms.RichTextBox();
     this.menuRichTextBox = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.粘贴剪切板内容ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.复制计算结果ToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator7 = new System.Windows.Forms.ToolStripSeparator();
     this.运算符ToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.andToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.orToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.xorToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.notToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator11 = new System.Windows.Forms.ToolStripSeparator();
     this.sgnToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.intToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.absToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator12 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripMenuItem4 = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem5 = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator13 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripMenuItem6 = new System.Windows.Forms.ToolStripMenuItem();
     this.变量ToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.函数ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.cmbFunSort = new System.Windows.Forms.ToolStripComboBox();
     this.txtSearchKey = new System.Windows.Forms.ToolStripTextBox();
     this.算式ToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
     this.btnbtnReciprocal = new System.Windows.Forms.Button();
     this.btnANS = new System.Windows.Forms.Button();
     this.btnE = new System.Windows.Forms.Button();
     this.btnPow = new System.Windows.Forms.Button();
     this.btnPI = new System.Windows.Forms.Button();
     this.btnPercent = new System.Windows.Forms.Button();
     this.btnSqrt = new System.Windows.Forms.Button();
     this.btnEqual = new System.Windows.Forms.Button();
     this.btnPoint = new System.Windows.Forms.Button();
     this.btnC = new System.Windows.Forms.Button();
     this.btnBackspace = new System.Windows.Forms.Button();
     this.btnComma = new System.Windows.Forms.Button();
     this.btn_e_ = new System.Windows.Forms.Button();
     this.btnBIN = new System.Windows.Forms.Button();
     this.btnB = new System.Windows.Forms.Button();
     this.btnHEX = new System.Windows.Forms.Button();
     this.btnToB = new System.Windows.Forms.Button();
     this.btnToH = new System.Windows.Forms.Button();
     this.btnMod = new System.Windows.Forms.Button();
     this.btnSum = new System.Windows.Forms.Button();
     this.bnt_C = new System.Windows.Forms.Button();
     this.btnnCr = new System.Windows.Forms.Button();
     this.btnnAr = new System.Windows.Forms.Button();
     this.btnFactorial = new System.Windows.Forms.Button();
     this.btnDivide = new System.Windows.Forms.Button();
     this.btnMultiply = new System.Windows.Forms.Button();
     this.btnMinus = new System.Windows.Forms.Button();
     this.btnPlus = new System.Windows.Forms.Button();
     this.btnPareR = new System.Windows.Forms.Button();
     this.btnPareL = new System.Windows.Forms.Button();
     this.btnExp = new System.Windows.Forms.Button();
     this.btnLog = new System.Windows.Forms.Button();
     this.btnLn = new System.Windows.Forms.Button();
     this.btnOCT = new System.Windows.Forms.Button();
     this.btnTanh = new System.Windows.Forms.Button();
     this.btnCosh = new System.Windows.Forms.Button();
     this.btnSinh = new System.Windows.Forms.Button();
     this.btnAtan = new System.Windows.Forms.Button();
     this.btnAcos = new System.Windows.Forms.Button();
     this.btnAsin = new System.Windows.Forms.Button();
     this.btnTan = new System.Windows.Forms.Button();
     this.btnCos = new System.Windows.Forms.Button();
     this.btnSin = new System.Windows.Forms.Button();
     this.btnDu = new System.Windows.Forms.Button();
     this.btnToO = new System.Windows.Forms.Button();
     this.btnA = new System.Windows.Forms.Button();
     this.btnDms = new System.Windows.Forms.Button();
     this.btn_E = new System.Windows.Forms.Button();
     this.btnS = new System.Windows.Forms.Button();
     this.btnAverage = new System.Windows.Forms.Button();
     this.btnF = new System.Windows.Forms.Button();
     this.btnToDegree = new System.Windows.Forms.Button();
     this.btnD = new System.Windows.Forms.Button();
     this.btn0 = new System.Windows.Forms.Button();
     this.btn3 = new System.Windows.Forms.Button();
     this.btn2 = new System.Windows.Forms.Button();
     this.btn1 = new System.Windows.Forms.Button();
     this.btn6 = new System.Windows.Forms.Button();
     this.btn5 = new System.Windows.Forms.Button();
     this.btn4 = new System.Windows.Forms.Button();
     this.btn9 = new System.Windows.Forms.Button();
     this.btn8 = new System.Windows.Forms.Button();
     this.btn7 = new System.Windows.Forms.Button();
     this.menuStrip1 = new System.Windows.Forms.MenuStrip();
     this.帮助ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.帮助ToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.注册ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.关于ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.科学型ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.科学计数法ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.双括号ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.移动光标ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.功能ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.复制计算结果ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.获取剪切板内容ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
     this.存储计算公式ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.存储函数ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
     this.人民币大写ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.人民币阿拉伯数字形式ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator10 = new System.Windows.Forms.ToolStripSeparator();
     this.单步计算ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.语音ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.语音ToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.自然读音ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.输入ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.求和ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.求平均ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.运算符ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.andToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.orToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.xorToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.notToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator8 = new System.Windows.Forms.ToolStripSeparator();
     this.sgnToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.intToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.absToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator9 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem3 = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripMenuItem7 = new System.Windows.Forms.ToolStripMenuItem();
     this.变量ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.算式ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.单位转换ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.英里公里ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.海里公里ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.光年公里ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.英寸厘米ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.平方公里亩ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.亩平方公里ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.亩平方米ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.桶立方米ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.千米每小时米每秒ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.米每秒千米每小时ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.马赫米每秒ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.panel1 = new System.Windows.Forms.Panel();
     this.panel2 = new System.Windows.Forms.Panel();
     this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components);
     this.NotifyMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.显示计算器ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.关闭计算器ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.menuRichTextBox.SuspendLayout();
     this.menuStrip1.SuspendLayout();
     this.panel1.SuspendLayout();
     this.panel2.SuspendLayout();
     this.NotifyMenu.SuspendLayout();
     this.SuspendLayout();
     //
     // txtResult
     //
     this.txtResult.BackColor = System.Drawing.SystemColors.Window;
     this.txtResult.Location = new System.Drawing.Point(12, 80);
     this.txtResult.Name = "txtResult";
     this.txtResult.ReadOnly = true;
     this.txtResult.Size = new System.Drawing.Size(352, 21);
     this.txtResult.TabIndex = 3;
     //
     // txtExp
     //
     this.txtExp.ContextMenuStrip = this.menuRichTextBox;
     this.txtExp.Location = new System.Drawing.Point(12, 42);
     this.txtExp.Multiline = false;
     this.txtExp.Name = "txtExp";
     this.txtExp.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.txtExp.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.None;
     this.txtExp.Size = new System.Drawing.Size(352, 21);
     this.txtExp.TabIndex = 0;
     this.txtExp.Tag = "";
     this.txtExp.Text = "";
     this.txtExp.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtExp_KeyDown);
     this.txtExp.MouseDown += new System.Windows.Forms.MouseEventHandler(this.txtExp_MouseDown);
     this.txtExp.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtExp_KeyPress);
     this.txtExp.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txtExp_KeyUp);
     this.txtExp.TextChanged += new System.EventHandler(this.txtExp_TextChanged);
     //
     // menuRichTextBox
     //
     this.menuRichTextBox.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.粘贴剪切板内容ToolStripMenuItem,
     this.复制计算结果ToolStripMenuItem1,
     this.toolStripSeparator7,
     this.运算符ToolStripMenuItem1,
     this.变量ToolStripMenuItem1,
     this.函数ToolStripMenuItem,
     this.算式ToolStripMenuItem1});
     this.menuRichTextBox.Name = "menuTextBox";
     this.menuRichTextBox.Size = new System.Drawing.Size(155, 142);
     //
     // 粘贴剪切板内容ToolStripMenuItem
     //
     this.粘贴剪切板内容ToolStripMenuItem.Name = "粘贴剪切板内容ToolStripMenuItem";
     this.粘贴剪切板内容ToolStripMenuItem.Size = new System.Drawing.Size(154, 22);
     this.粘贴剪切板内容ToolStripMenuItem.Text = "粘贴剪切板内容";
     this.粘贴剪切板内容ToolStripMenuItem.ToolTipText = "粘贴剪切板内容到算式输入框";
     this.粘贴剪切板内容ToolStripMenuItem.Click += new System.EventHandler(this.粘贴剪切板内容ToolStripMenuItem_Click);
     //
     // 复制计算结果ToolStripMenuItem1
     //
     this.复制计算结果ToolStripMenuItem1.Name = "复制计算结果ToolStripMenuItem1";
     this.复制计算结果ToolStripMenuItem1.Size = new System.Drawing.Size(154, 22);
     this.复制计算结果ToolStripMenuItem1.Text = "复制计算结果";
     this.复制计算结果ToolStripMenuItem1.ToolTipText = "复制计算结果到剪切板";
     this.复制计算结果ToolStripMenuItem1.Click += new System.EventHandler(this.复制计算结果ToolStripMenuItem1_Click);
     //
     // toolStripSeparator7
     //
     this.toolStripSeparator7.Name = "toolStripSeparator7";
     this.toolStripSeparator7.Size = new System.Drawing.Size(151, 6);
     //
     // 运算符ToolStripMenuItem1
     //
     this.运算符ToolStripMenuItem1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.andToolStripMenuItem1,
     this.orToolStripMenuItem1,
     this.xorToolStripMenuItem1,
     this.notToolStripMenuItem1,
     this.toolStripSeparator11,
     this.sgnToolStripMenuItem1,
     this.intToolStripMenuItem1,
     this.absToolStripMenuItem1,
     this.toolStripSeparator12,
     this.toolStripMenuItem4,
     this.toolStripMenuItem5,
     this.toolStripSeparator13,
     this.toolStripMenuItem6});
     this.运算符ToolStripMenuItem1.Name = "运算符ToolStripMenuItem1";
     this.运算符ToolStripMenuItem1.Size = new System.Drawing.Size(154, 22);
     this.运算符ToolStripMenuItem1.Text = "运算符";
     //
     // andToolStripMenuItem1
     //
     this.andToolStripMenuItem1.Name = "andToolStripMenuItem1";
     this.andToolStripMenuItem1.Size = new System.Drawing.Size(88, 22);
     this.andToolStripMenuItem1.Text = "And";
     this.andToolStripMenuItem1.ToolTipText = "按位与";
     this.andToolStripMenuItem1.Click += new System.EventHandler(this.OpeMenuItem_Click);
     //
     // orToolStripMenuItem1
     //
     this.orToolStripMenuItem1.Name = "orToolStripMenuItem1";
     this.orToolStripMenuItem1.Size = new System.Drawing.Size(88, 22);
     this.orToolStripMenuItem1.Text = "Or";
     this.orToolStripMenuItem1.ToolTipText = "按位或";
     this.orToolStripMenuItem1.Click += new System.EventHandler(this.OpeMenuItem_Click);
     //
     // xorToolStripMenuItem1
     //
     this.xorToolStripMenuItem1.Name = "xorToolStripMenuItem1";
     this.xorToolStripMenuItem1.Size = new System.Drawing.Size(88, 22);
     this.xorToolStripMenuItem1.Text = "Xor";
     this.xorToolStripMenuItem1.ToolTipText = "按位异或";
     this.xorToolStripMenuItem1.Click += new System.EventHandler(this.OpeMenuItem_Click);
     //
     // notToolStripMenuItem1
     //
     this.notToolStripMenuItem1.Name = "notToolStripMenuItem1";
     this.notToolStripMenuItem1.Size = new System.Drawing.Size(88, 22);
     this.notToolStripMenuItem1.Text = "Not";
     this.notToolStripMenuItem1.ToolTipText = "按位取反";
     this.notToolStripMenuItem1.Click += new System.EventHandler(this.OpeMenuItem_Click2);
     //
     // toolStripSeparator11
     //
     this.toolStripSeparator11.Name = "toolStripSeparator11";
     this.toolStripSeparator11.Size = new System.Drawing.Size(85, 6);
     //
     // sgnToolStripMenuItem1
     //
     this.sgnToolStripMenuItem1.Name = "sgnToolStripMenuItem1";
     this.sgnToolStripMenuItem1.Size = new System.Drawing.Size(88, 22);
     this.sgnToolStripMenuItem1.Text = "Sgn";
     this.sgnToolStripMenuItem1.ToolTipText = "取数值的符号";
     this.sgnToolStripMenuItem1.Click += new System.EventHandler(this.OpeMenuItem_Click2);
     //
     // intToolStripMenuItem1
     //
     this.intToolStripMenuItem1.Name = "intToolStripMenuItem1";
     this.intToolStripMenuItem1.Size = new System.Drawing.Size(88, 22);
     this.intToolStripMenuItem1.Text = "Int";
     this.intToolStripMenuItem1.ToolTipText = "取整";
     this.intToolStripMenuItem1.Click += new System.EventHandler(this.OpeMenuItem_Click2);
     //
     // absToolStripMenuItem1
     //
     this.absToolStripMenuItem1.Name = "absToolStripMenuItem1";
     this.absToolStripMenuItem1.Size = new System.Drawing.Size(88, 22);
     this.absToolStripMenuItem1.Text = "Abs";
     this.absToolStripMenuItem1.ToolTipText = "取绝对值";
     this.absToolStripMenuItem1.Click += new System.EventHandler(this.OpeMenuItem_Click2);
     //
     // toolStripSeparator12
     //
     this.toolStripSeparator12.Name = "toolStripSeparator12";
     this.toolStripSeparator12.Size = new System.Drawing.Size(85, 6);
     //
     // toolStripMenuItem4
     //
     this.toolStripMenuItem4.Name = "toolStripMenuItem4";
     this.toolStripMenuItem4.Size = new System.Drawing.Size(88, 22);
     this.toolStripMenuItem4.Text = "<<";
     this.toolStripMenuItem4.ToolTipText = "按左位移";
     this.toolStripMenuItem4.Click += new System.EventHandler(this.OpeMenuItem_Click);
     //
     // toolStripMenuItem5
     //
     this.toolStripMenuItem5.Name = "toolStripMenuItem5";
     this.toolStripMenuItem5.Size = new System.Drawing.Size(88, 22);
     this.toolStripMenuItem5.Text = ">>";
     this.toolStripMenuItem5.ToolTipText = "按右位移";
     this.toolStripMenuItem5.Click += new System.EventHandler(this.OpeMenuItem_Click);
     //
     // toolStripSeparator13
     //
     this.toolStripSeparator13.Name = "toolStripSeparator13";
     this.toolStripSeparator13.Size = new System.Drawing.Size(85, 6);
     //
     // toolStripMenuItem6
     //
     this.toolStripMenuItem6.Name = "toolStripMenuItem6";
     this.toolStripMenuItem6.Size = new System.Drawing.Size(88, 22);
     this.toolStripMenuItem6.Text = "=";
     this.toolStripMenuItem6.ToolTipText = "等于号,用于给变量赋值";
     this.toolStripMenuItem6.Click += new System.EventHandler(this.OpeMenuItem_Click);
     //
     // 变量ToolStripMenuItem1
     //
     this.变量ToolStripMenuItem1.Name = "变量ToolStripMenuItem1";
     this.变量ToolStripMenuItem1.Size = new System.Drawing.Size(154, 22);
     this.变量ToolStripMenuItem1.Text = "变量";
     //
     // 函数ToolStripMenuItem
     //
     this.函数ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.cmbFunSort,
     this.txtSearchKey});
     this.函数ToolStripMenuItem.Name = "函数ToolStripMenuItem";
     this.函数ToolStripMenuItem.Size = new System.Drawing.Size(154, 22);
     this.函数ToolStripMenuItem.Text = "函数";
     //
     // cmbFunSort
     //
     this.cmbFunSort.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbFunSort.Name = "cmbFunSort";
     this.cmbFunSort.Size = new System.Drawing.Size(121, 20);
     this.cmbFunSort.Sorted = true;
     this.cmbFunSort.ToolTipText = "请选择函数类别";
     this.cmbFunSort.SelectedIndexChanged += new System.EventHandler(this.cmbFunSort_SelectedIndexChanged);
     //
     // txtSearchKey
     //
     this.txtSearchKey.BackColor = System.Drawing.SystemColors.Window;
     this.txtSearchKey.Name = "txtSearchKey";
     this.txtSearchKey.Size = new System.Drawing.Size(121, 21);
     this.txtSearchKey.ToolTipText = "请输入搜索关键字";
     this.txtSearchKey.TextChanged += new System.EventHandler(this.toolStripTextBox1_TextChanged);
     //
     // 算式ToolStripMenuItem1
     //
     this.算式ToolStripMenuItem1.Name = "算式ToolStripMenuItem1";
     this.算式ToolStripMenuItem1.Size = new System.Drawing.Size(154, 22);
     this.算式ToolStripMenuItem1.Text = "算式";
     //
     // btnbtnReciprocal
     //
     this.btnbtnReciprocal.Location = new System.Drawing.Point(307, 153);
     this.btnbtnReciprocal.Name = "btnbtnReciprocal";
     this.btnbtnReciprocal.Size = new System.Drawing.Size(45, 45);
     this.btnbtnReciprocal.TabIndex = 68;
     this.btnbtnReciprocal.Tag = "1/";
     this.btnbtnReciprocal.Text = "1/x";
     this.toolTip1.SetToolTip(this.btnbtnReciprocal, "倒数");
     this.btnbtnReciprocal.UseVisualStyleBackColor = true;
     //
     // btnANS
     //
     this.btnANS.Location = new System.Drawing.Point(255, 0);
     this.btnANS.Name = "btnANS";
     this.btnANS.Size = new System.Drawing.Size(45, 45);
     this.btnANS.TabIndex = 67;
     this.btnANS.Tag = "|";
     this.btnANS.Text = "ANS";
     this.toolTip1.SetToolTip(this.btnANS, "输入上次计算结果到算式输入框");
     this.btnANS.UseVisualStyleBackColor = true;
     this.btnANS.Click += new System.EventHandler(this.btnANS_Click);
     //
     // btnE
     //
     this.btnE.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnE.Location = new System.Drawing.Point(51, 153);
     this.btnE.Name = "btnE";
     this.btnE.Size = new System.Drawing.Size(45, 45);
     this.btnE.TabIndex = 66;
     this.btnE.Tag = "E|E";
     this.btnE.Text = "E";
     this.toolTip1.SetToolTip(this.btnE, "科学计数法E");
     this.btnE.UseVisualStyleBackColor = true;
     //
     // btnPow
     //
     this.btnPow.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnPow.Location = new System.Drawing.Point(255, 102);
     this.btnPow.Name = "btnPow";
     this.btnPow.Size = new System.Drawing.Size(45, 45);
     this.btnPow.TabIndex = 65;
     this.btnPow.Tag = "^";
     this.btnPow.Text = "x^y";
     this.toolTip1.SetToolTip(this.btnPow, "乘方");
     this.btnPow.UseVisualStyleBackColor = true;
     //
     // btnPI
     //
     this.btnPI.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnPI.Location = new System.Drawing.Point(307, 0);
     this.btnPI.Name = "btnPI";
     this.btnPI.Size = new System.Drawing.Size(45, 45);
     this.btnPI.TabIndex = 64;
     this.btnPI.Tag = "pi";
     this.btnPI.Text = "pi";
     this.toolTip1.SetToolTip(this.btnPI, "圆周率");
     this.btnPI.UseVisualStyleBackColor = true;
     //
     // btnPercent
     //
     this.btnPercent.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnPercent.Location = new System.Drawing.Point(307, 102);
     this.btnPercent.Name = "btnPercent";
     this.btnPercent.Size = new System.Drawing.Size(45, 45);
     this.btnPercent.TabIndex = 63;
     this.btnPercent.Tag = "%";
     this.btnPercent.Text = "%";
     this.toolTip1.SetToolTip(this.btnPercent, "百分号");
     this.btnPercent.UseVisualStyleBackColor = true;
     //
     // btnSqrt
     //
     this.btnSqrt.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnSqrt.Location = new System.Drawing.Point(255, 153);
     this.btnSqrt.Name = "btnSqrt";
     this.btnSqrt.Size = new System.Drawing.Size(45, 45);
     this.btnSqrt.TabIndex = 62;
     this.btnSqrt.Tag = "sqrt";
     this.btnSqrt.Text = "sqrt";
     this.toolTip1.SetToolTip(this.btnSqrt, "例:\r\nsqrt(2)对2开平方\r\nsqrt(2,4)对2开4次方");
     this.btnSqrt.UseVisualStyleBackColor = true;
     //
     // btnEqual
     //
     this.btnEqual.ForeColor = System.Drawing.Color.Red;
     this.btnEqual.Location = new System.Drawing.Point(204, 153);
     this.btnEqual.Name = "btnEqual";
     this.btnEqual.Size = new System.Drawing.Size(45, 45);
     this.btnEqual.TabIndex = 61;
     this.btnEqual.Tag = "|";
     this.btnEqual.Text = "=";
     this.toolTip1.SetToolTip(this.btnEqual, "等于");
     this.btnEqual.UseVisualStyleBackColor = true;
     //
     // btnPoint
     //
     this.btnPoint.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnPoint.Location = new System.Drawing.Point(102, 153);
     this.btnPoint.Name = "btnPoint";
     this.btnPoint.Size = new System.Drawing.Size(45, 45);
     this.btnPoint.TabIndex = 60;
     this.btnPoint.Tag = ".|点";
     this.btnPoint.Text = ".";
     this.toolTip1.SetToolTip(this.btnPoint, "小数点");
     this.btnPoint.UseVisualStyleBackColor = true;
     //
     // btnC
     //
     this.btnC.ForeColor = System.Drawing.Color.Red;
     this.btnC.Location = new System.Drawing.Point(204, 51);
     this.btnC.Name = "btnC";
     this.btnC.Size = new System.Drawing.Size(45, 45);
     this.btnC.TabIndex = 59;
     this.btnC.Tag = "|清零";
     this.btnC.Text = "C";
     this.toolTip1.SetToolTip(this.btnC, "清除");
     this.btnC.UseVisualStyleBackColor = true;
     this.btnC.Click += new System.EventHandler(this.btnC_Click);
     //
     // btnBackspace
     //
     this.btnBackspace.ForeColor = System.Drawing.Color.Red;
     this.btnBackspace.Location = new System.Drawing.Point(204, 0);
     this.btnBackspace.Name = "btnBackspace";
     this.btnBackspace.Size = new System.Drawing.Size(45, 45);
     this.btnBackspace.TabIndex = 58;
     this.btnBackspace.Tag = "|";
     this.btnBackspace.Text = "←";
     this.toolTip1.SetToolTip(this.btnBackspace, "退格");
     this.btnBackspace.UseVisualStyleBackColor = true;
     this.btnBackspace.Click += new System.EventHandler(this.btnBackspace_Click);
     //
     // btnComma
     //
     this.btnComma.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnComma.Location = new System.Drawing.Point(204, 102);
     this.btnComma.Name = "btnComma";
     this.btnComma.Size = new System.Drawing.Size(45, 45);
     this.btnComma.TabIndex = 41;
     this.btnComma.Tag = ",";
     this.btnComma.Text = ",";
     this.toolTip1.SetToolTip(this.btnComma, "逗号");
     this.btnComma.UseVisualStyleBackColor = true;
     //
     // btn_e_
     //
     this.btn_e_.Location = new System.Drawing.Point(307, 93);
     this.btn_e_.Name = "btn_e_";
     this.btn_e_.Size = new System.Drawing.Size(45, 25);
     this.btn_e_.TabIndex = 96;
     this.btn_e_.Tag = "e";
     this.btn_e_.Text = "e";
     this.toolTip1.SetToolTip(this.btn_e_, "自然常数e");
     this.btn_e_.UseVisualStyleBackColor = true;
     //
     // btnBIN
     //
     this.btnBIN.Location = new System.Drawing.Point(255, 0);
     this.btnBIN.Name = "btnBIN";
     this.btnBIN.Size = new System.Drawing.Size(45, 25);
     this.btnBIN.TabIndex = 95;
     this.btnBIN.Tag = "BIN";
     this.btnBIN.Text = "BIN";
     this.toolTip1.SetToolTip(this.btnBIN, "二进制转十进制,例:1011BIN");
     this.btnBIN.UseVisualStyleBackColor = true;
     //
     // btnB
     //
     this.btnB.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnB.Location = new System.Drawing.Point(51, 93);
     this.btnB.Name = "btnB";
     this.btnB.Size = new System.Drawing.Size(45, 25);
     this.btnB.TabIndex = 94;
     this.btnB.Tag = "B";
     this.btnB.Text = "B";
     this.toolTip1.SetToolTip(this.btnB, "十六进制B");
     this.btnB.UseVisualStyleBackColor = true;
     //
     // btnHEX
     //
     this.btnHEX.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnHEX.Location = new System.Drawing.Point(255, 62);
     this.btnHEX.Name = "btnHEX";
     this.btnHEX.Size = new System.Drawing.Size(45, 25);
     this.btnHEX.TabIndex = 93;
     this.btnHEX.Tag = "HEX";
     this.btnHEX.Text = "HEX";
     this.toolTip1.SetToolTip(this.btnHEX, "十六进制转十进制,例:B5EF8HEX");
     this.btnHEX.UseVisualStyleBackColor = true;
     //
     // btnToB
     //
     this.btnToB.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnToB.Location = new System.Drawing.Point(307, 0);
     this.btnToB.Name = "btnToB";
     this.btnToB.Size = new System.Drawing.Size(45, 25);
     this.btnToB.TabIndex = 92;
     this.btnToB.Tag = "toB";
     this.btnToB.Text = "toB";
     this.toolTip1.SetToolTip(this.btnToB, "十进制转二进制,例:toB(9)");
     this.btnToB.UseVisualStyleBackColor = true;
     //
     // btnToH
     //
     this.btnToH.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnToH.Location = new System.Drawing.Point(307, 62);
     this.btnToH.Name = "btnToH";
     this.btnToH.Size = new System.Drawing.Size(45, 25);
     this.btnToH.TabIndex = 91;
     this.btnToH.Tag = "toH";
     this.btnToH.Text = "toH";
     this.toolTip1.SetToolTip(this.btnToH, "十进制转十六进制,例:toH(999)");
     this.btnToH.UseVisualStyleBackColor = true;
     //
     // btnMod
     //
     this.btnMod.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnMod.Location = new System.Drawing.Point(256, 93);
     this.btnMod.Name = "btnMod";
     this.btnMod.Size = new System.Drawing.Size(45, 25);
     this.btnMod.TabIndex = 90;
     this.btnMod.Tag = "s";
     this.btnMod.Text = "s";
     this.toolTip1.SetToolTip(this.btnMod, "样本标准方差,例:s(4,5,6)");
     this.btnMod.UseVisualStyleBackColor = true;
     //
     // btnSum
     //
     this.btnSum.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnSum.Location = new System.Drawing.Point(204, 93);
     this.btnSum.Name = "btnSum";
     this.btnSum.Size = new System.Drawing.Size(45, 25);
     this.btnSum.TabIndex = 89;
     this.btnSum.Tag = "sum";
     this.btnSum.Text = "sum";
     this.toolTip1.SetToolTip(this.btnSum, "求和,例:sum(-9,5.6*4,2,7)");
     this.btnSum.UseVisualStyleBackColor = true;
     //
     // bnt_C
     //
     this.bnt_C.ForeColor = System.Drawing.SystemColors.ControlText;
     this.bnt_C.Location = new System.Drawing.Point(102, 93);
     this.bnt_C.Name = "bnt_C";
     this.bnt_C.Size = new System.Drawing.Size(45, 25);
     this.bnt_C.TabIndex = 88;
     this.bnt_C.Tag = "C";
     this.bnt_C.Text = "C";
     this.toolTip1.SetToolTip(this.bnt_C, "十六进制C");
     this.bnt_C.UseVisualStyleBackColor = true;
     //
     // btnnCr
     //
     this.btnnCr.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnnCr.Location = new System.Drawing.Point(204, 31);
     this.btnnCr.Name = "btnnCr";
     this.btnnCr.Size = new System.Drawing.Size(45, 25);
     this.btnnCr.TabIndex = 87;
     this.btnnCr.Tag = "nCr";
     this.btnnCr.Text = "nCr";
     this.toolTip1.SetToolTip(this.btnnCr, "组合");
     this.btnnCr.UseVisualStyleBackColor = true;
     //
     // btnnAr
     //
     this.btnnAr.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnnAr.Location = new System.Drawing.Point(204, 0);
     this.btnnAr.Name = "btnnAr";
     this.btnnAr.Size = new System.Drawing.Size(45, 25);
     this.btnnAr.TabIndex = 86;
     this.btnnAr.Tag = "nAr";
     this.btnnAr.Text = "nAr";
     this.toolTip1.SetToolTip(this.btnnAr, "排列");
     this.btnnAr.UseVisualStyleBackColor = true;
     //
     // btnFactorial
     //
     this.btnFactorial.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnFactorial.Location = new System.Drawing.Point(205, 62);
     this.btnFactorial.Name = "btnFactorial";
     this.btnFactorial.Size = new System.Drawing.Size(45, 25);
     this.btnFactorial.TabIndex = 69;
     this.btnFactorial.Tag = "!";
     this.btnFactorial.Text = "n!";
     this.toolTip1.SetToolTip(this.btnFactorial, "阶乘");
     this.btnFactorial.UseVisualStyleBackColor = true;
     //
     // btnDivide
     //
     this.btnDivide.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnDivide.Location = new System.Drawing.Point(153, 153);
     this.btnDivide.Name = "btnDivide";
     this.btnDivide.Size = new System.Drawing.Size(45, 45);
     this.btnDivide.TabIndex = 57;
     this.btnDivide.Tag = "/|除以";
     this.btnDivide.Text = "/";
     this.toolTip1.SetToolTip(this.btnDivide, "除");
     this.btnDivide.UseVisualStyleBackColor = true;
     //
     // btnMultiply
     //
     this.btnMultiply.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnMultiply.Location = new System.Drawing.Point(153, 102);
     this.btnMultiply.Name = "btnMultiply";
     this.btnMultiply.Size = new System.Drawing.Size(45, 45);
     this.btnMultiply.TabIndex = 56;
     this.btnMultiply.Tag = "*|乘以";
     this.btnMultiply.Text = "*";
     this.toolTip1.SetToolTip(this.btnMultiply, "乘");
     this.btnMultiply.UseVisualStyleBackColor = true;
     //
     // btnMinus
     //
     this.btnMinus.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnMinus.Location = new System.Drawing.Point(153, 51);
     this.btnMinus.Name = "btnMinus";
     this.btnMinus.Size = new System.Drawing.Size(45, 45);
     this.btnMinus.TabIndex = 55;
     this.btnMinus.Tag = "-|减去";
     this.btnMinus.Text = "-";
     this.toolTip1.SetToolTip(this.btnMinus, "减号或负号");
     this.btnMinus.UseVisualStyleBackColor = true;
     //
     // btnPlus
     //
     this.btnPlus.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnPlus.Location = new System.Drawing.Point(153, 0);
     this.btnPlus.Name = "btnPlus";
     this.btnPlus.Size = new System.Drawing.Size(45, 45);
     this.btnPlus.TabIndex = 54;
     this.btnPlus.Tag = "+|加上";
     this.btnPlus.Text = "+";
     this.toolTip1.SetToolTip(this.btnPlus, "加号或正号");
     this.btnPlus.UseVisualStyleBackColor = true;
     //
     // btnPareR
     //
     this.btnPareR.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnPareR.Location = new System.Drawing.Point(307, 51);
     this.btnPareR.Name = "btnPareR";
     this.btnPareR.Size = new System.Drawing.Size(45, 45);
     this.btnPareR.TabIndex = 53;
     this.btnPareR.Tag = ")";
     this.btnPareR.Text = ")";
     this.toolTip1.SetToolTip(this.btnPareR, "右括号");
     this.btnPareR.UseVisualStyleBackColor = true;
     //
     // btnPareL
     //
     this.btnPareL.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnPareL.Location = new System.Drawing.Point(255, 51);
     this.btnPareL.Name = "btnPareL";
     this.btnPareL.Size = new System.Drawing.Size(45, 45);
     this.btnPareL.TabIndex = 52;
     this.btnPareL.Tag = "(";
     this.btnPareL.Text = "(";
     this.toolTip1.SetToolTip(this.btnPareL, "左括号");
     this.btnPareL.UseVisualStyleBackColor = true;
     //
     // btnExp
     //
     this.btnExp.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnExp.Location = new System.Drawing.Point(153, 62);
     this.btnExp.Name = "btnExp";
     this.btnExp.Size = new System.Drawing.Size(45, 25);
     this.btnExp.TabIndex = 84;
     this.btnExp.Tag = "Exp";
     this.btnExp.Text = "Exp";
     this.toolTip1.SetToolTip(this.btnExp, "常数e的x次方");
     this.btnExp.UseVisualStyleBackColor = true;
     //
     // btnLog
     //
     this.btnLog.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnLog.Location = new System.Drawing.Point(153, 31);
     this.btnLog.Name = "btnLog";
     this.btnLog.Size = new System.Drawing.Size(45, 25);
     this.btnLog.TabIndex = 83;
     this.btnLog.Tag = "log";
     this.btnLog.Text = "log";
     this.toolTip1.SetToolTip(this.btnLog, "例:\r\nlog(9)对9取对数,底数是10\r\nlog(9,3)对9取对数,底数是3");
     this.btnLog.UseVisualStyleBackColor = true;
     //
     // btnLn
     //
     this.btnLn.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnLn.Location = new System.Drawing.Point(153, 0);
     this.btnLn.Name = "btnLn";
     this.btnLn.Size = new System.Drawing.Size(45, 25);
     this.btnLn.TabIndex = 82;
     this.btnLn.Tag = "ln";
     this.btnLn.Text = "ln";
     this.toolTip1.SetToolTip(this.btnLn, "以e为底数的对数");
     this.btnLn.UseVisualStyleBackColor = true;
     //
     // btnOCT
     //
     this.btnOCT.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnOCT.Location = new System.Drawing.Point(255, 31);
     this.btnOCT.Name = "btnOCT";
     this.btnOCT.Size = new System.Drawing.Size(45, 25);
     this.btnOCT.TabIndex = 80;
     this.btnOCT.Tag = "OCT";
     this.btnOCT.Text = "OCT";
     this.toolTip1.SetToolTip(this.btnOCT, "八进制转十制,例:4576OCT");
     this.btnOCT.UseVisualStyleBackColor = true;
     //
     // btnTanh
     //
     this.btnTanh.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnTanh.Location = new System.Drawing.Point(102, 62);
     this.btnTanh.Name = "btnTanh";
     this.btnTanh.Size = new System.Drawing.Size(45, 25);
     this.btnTanh.TabIndex = 78;
     this.btnTanh.Tag = "tanh";
     this.btnTanh.Text = "tanh";
     this.toolTip1.SetToolTip(this.btnTanh, "双曲正切");
     this.btnTanh.UseVisualStyleBackColor = true;
     //
     // btnCosh
     //
     this.btnCosh.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnCosh.Location = new System.Drawing.Point(51, 62);
     this.btnCosh.Name = "btnCosh";
     this.btnCosh.Size = new System.Drawing.Size(45, 25);
     this.btnCosh.TabIndex = 77;
     this.btnCosh.Tag = "cosh";
     this.btnCosh.Text = "cosh";
     this.toolTip1.SetToolTip(this.btnCosh, "双曲余弦");
     this.btnCosh.UseVisualStyleBackColor = true;
     //
     // btnSinh
     //
     this.btnSinh.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnSinh.Location = new System.Drawing.Point(0, 62);
     this.btnSinh.Name = "btnSinh";
     this.btnSinh.Size = new System.Drawing.Size(45, 25);
     this.btnSinh.TabIndex = 76;
     this.btnSinh.Tag = "sinh";
     this.btnSinh.Text = "sinh";
     this.toolTip1.SetToolTip(this.btnSinh, "双曲正弦");
     this.btnSinh.UseVisualStyleBackColor = true;
     //
     // btnAtan
     //
     this.btnAtan.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnAtan.Location = new System.Drawing.Point(102, 31);
     this.btnAtan.Name = "btnAtan";
     this.btnAtan.Size = new System.Drawing.Size(45, 25);
     this.btnAtan.TabIndex = 75;
     this.btnAtan.Tag = "atan";
     this.btnAtan.Text = "atan";
     this.toolTip1.SetToolTip(this.btnAtan, "反正切");
     this.btnAtan.UseVisualStyleBackColor = true;
     //
     // btnAcos
     //
     this.btnAcos.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnAcos.Location = new System.Drawing.Point(51, 31);
     this.btnAcos.Name = "btnAcos";
     this.btnAcos.Size = new System.Drawing.Size(45, 25);
     this.btnAcos.TabIndex = 74;
     this.btnAcos.Tag = "acos";
     this.btnAcos.Text = "acos";
     this.toolTip1.SetToolTip(this.btnAcos, "反余弦");
     this.btnAcos.UseVisualStyleBackColor = true;
     //
     // btnAsin
     //
     this.btnAsin.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnAsin.Location = new System.Drawing.Point(0, 31);
     this.btnAsin.Name = "btnAsin";
     this.btnAsin.Size = new System.Drawing.Size(45, 25);
     this.btnAsin.TabIndex = 73;
     this.btnAsin.Tag = "asin";
     this.btnAsin.Text = "asin";
     this.toolTip1.SetToolTip(this.btnAsin, "反正弦");
     this.btnAsin.UseVisualStyleBackColor = true;
     //
     // btnTan
     //
     this.btnTan.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnTan.Location = new System.Drawing.Point(102, 0);
     this.btnTan.Name = "btnTan";
     this.btnTan.Size = new System.Drawing.Size(45, 25);
     this.btnTan.TabIndex = 72;
     this.btnTan.Tag = "tan";
     this.btnTan.Text = "tan";
     this.toolTip1.SetToolTip(this.btnTan, "正切");
     this.btnTan.UseVisualStyleBackColor = true;
     //
     // btnCos
     //
     this.btnCos.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnCos.Location = new System.Drawing.Point(51, 0);
     this.btnCos.Name = "btnCos";
     this.btnCos.Size = new System.Drawing.Size(45, 25);
     this.btnCos.TabIndex = 71;
     this.btnCos.Tag = "cos";
     this.btnCos.Text = "cos";
     this.toolTip1.SetToolTip(this.btnCos, "余弦");
     this.btnCos.UseVisualStyleBackColor = true;
     //
     // btnSin
     //
     this.btnSin.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnSin.Location = new System.Drawing.Point(0, 0);
     this.btnSin.Name = "btnSin";
     this.btnSin.Size = new System.Drawing.Size(45, 25);
     this.btnSin.TabIndex = 70;
     this.btnSin.Tag = "sin";
     this.btnSin.Text = "sin";
     this.toolTip1.SetToolTip(this.btnSin, "正弦\r\n例:\r\nsin(90度)\r\nsin(2pi)");
     this.btnSin.UseVisualStyleBackColor = true;
     //
     // btnDu
     //
     this.btnDu.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnDu.Location = new System.Drawing.Point(153, 93);
     this.btnDu.Name = "btnDu";
     this.btnDu.Size = new System.Drawing.Size(45, 25);
     this.btnDu.TabIndex = 85;
     this.btnDu.Tag = "度";
     this.btnDu.Text = "度";
     this.toolTip1.SetToolTip(this.btnDu, "角度转弧度,例:sin(30度)\r\n其中\'90度\'表示把角度90转换为弧度数");
     this.btnDu.UseVisualStyleBackColor = true;
     //
     // btnToO
     //
     this.btnToO.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnToO.Location = new System.Drawing.Point(307, 31);
     this.btnToO.Name = "btnToO";
     this.btnToO.Size = new System.Drawing.Size(45, 25);
     this.btnToO.TabIndex = 81;
     this.btnToO.Tag = "toO";
     this.btnToO.Text = "toO";
     this.toolTip1.SetToolTip(this.btnToO, "十进制转八进制,例:toO(39)");
     this.btnToO.UseVisualStyleBackColor = true;
     //
     // btnA
     //
     this.btnA.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnA.Location = new System.Drawing.Point(0, 93);
     this.btnA.Name = "btnA";
     this.btnA.Size = new System.Drawing.Size(45, 25);
     this.btnA.TabIndex = 79;
     this.btnA.Tag = "A";
     this.btnA.Text = "A";
     this.toolTip1.SetToolTip(this.btnA, "十六进制A");
     this.btnA.UseVisualStyleBackColor = true;
     //
     // btnDms
     //
     this.btnDms.Location = new System.Drawing.Point(307, 124);
     this.btnDms.Name = "btnDms";
     this.btnDms.Size = new System.Drawing.Size(45, 25);
     this.btnDms.TabIndex = 103;
     this.btnDms.Tag = "dms";
     this.btnDms.Text = "dms";
     this.toolTip1.SetToolTip(this.btnDms, "度分秒转小数形式,例:dms(30,35,59)\r\n小数形式转度分秒,例:dms(30.56)");
     this.btnDms.UseVisualStyleBackColor = true;
     //
     // btn_E
     //
     this.btn_E.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btn_E.Location = new System.Drawing.Point(51, 124);
     this.btn_E.Name = "btn_E";
     this.btn_E.Size = new System.Drawing.Size(45, 25);
     this.btn_E.TabIndex = 102;
     this.btn_E.Tag = "E";
     this.btn_E.Text = "E";
     this.toolTip1.SetToolTip(this.btn_E, "十六进制E");
     this.btn_E.UseVisualStyleBackColor = true;
     //
     // btnS
     //
     this.btnS.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnS.Location = new System.Drawing.Point(256, 124);
     this.btnS.Name = "btnS";
     this.btnS.Size = new System.Drawing.Size(45, 25);
     this.btnS.TabIndex = 101;
     this.btnS.Tag = "Mod";
     this.btnS.Text = "Mod";
     this.toolTip1.SetToolTip(this.btnS, "取余,例:6Mod4");
     this.btnS.UseVisualStyleBackColor = true;
     //
     // btnAverage
     //
     this.btnAverage.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnAverage.Location = new System.Drawing.Point(204, 124);
     this.btnAverage.Name = "btnAverage";
     this.btnAverage.Size = new System.Drawing.Size(45, 25);
     this.btnAverage.TabIndex = 100;
     this.btnAverage.Tag = "avg";
     this.btnAverage.Text = "avg";
     this.toolTip1.SetToolTip(this.btnAverage, "求平均,例:avg(-8,6,7,5,8)");
     this.btnAverage.UseVisualStyleBackColor = true;
     //
     // btnF
     //
     this.btnF.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnF.Location = new System.Drawing.Point(102, 124);
     this.btnF.Name = "btnF";
     this.btnF.Size = new System.Drawing.Size(45, 25);
     this.btnF.TabIndex = 99;
     this.btnF.Tag = "F";
     this.btnF.Text = "F";
     this.toolTip1.SetToolTip(this.btnF, "十六进制F");
     this.btnF.UseVisualStyleBackColor = true;
     //
     // btnToDegree
     //
     this.btnToDegree.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnToDegree.Location = new System.Drawing.Point(153, 124);
     this.btnToDegree.Name = "btnToDegree";
     this.btnToDegree.Size = new System.Drawing.Size(45, 25);
     this.btnToDegree.TabIndex = 98;
     this.btnToDegree.Tag = "toDegree";
     this.btnToDegree.Text = "toDgr";
     this.toolTip1.SetToolTip(this.btnToDegree, "弧度转角度,例:toDegree(3.14)");
     this.btnToDegree.UseVisualStyleBackColor = true;
     //
     // btnD
     //
     this.btnD.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnD.Location = new System.Drawing.Point(0, 124);
     this.btnD.Name = "btnD";
     this.btnD.Size = new System.Drawing.Size(45, 25);
     this.btnD.TabIndex = 97;
     this.btnD.Tag = "D";
     this.btnD.Text = "D";
     this.toolTip1.SetToolTip(this.btnD, "十六进制D");
     this.btnD.UseVisualStyleBackColor = true;
     //
     // btn0
     //
     this.btn0.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btn0.Location = new System.Drawing.Point(0, 153);
     this.btn0.Name = "btn0";
     this.btn0.Size = new System.Drawing.Size(45, 45);
     this.btn0.TabIndex = 51;
     this.btn0.Tag = "0|_0";
     this.btn0.Text = "0";
     this.btn0.UseVisualStyleBackColor = true;
     //
     // btn3
     //
     this.btn3.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btn3.Location = new System.Drawing.Point(102, 102);
     this.btn3.Name = "btn3";
     this.btn3.Size = new System.Drawing.Size(45, 45);
     this.btn3.TabIndex = 50;
     this.btn3.Tag = "3|_3";
     this.btn3.Text = "3";
     this.btn3.UseVisualStyleBackColor = true;
     //
     // btn2
     //
     this.btn2.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btn2.Location = new System.Drawing.Point(51, 102);
     this.btn2.Name = "btn2";
     this.btn2.Size = new System.Drawing.Size(45, 45);
     this.btn2.TabIndex = 49;
     this.btn2.Tag = "2|_2";
     this.btn2.Text = "2";
     this.btn2.UseVisualStyleBackColor = true;
     //
     // btn1
     //
     this.btn1.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btn1.Location = new System.Drawing.Point(0, 102);
     this.btn1.Name = "btn1";
     this.btn1.Size = new System.Drawing.Size(45, 45);
     this.btn1.TabIndex = 48;
     this.btn1.Tag = "1|_1";
     this.btn1.Text = "1";
     this.btn1.UseVisualStyleBackColor = true;
     //
     // btn6
     //
     this.btn6.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btn6.Location = new System.Drawing.Point(102, 51);
     this.btn6.Name = "btn6";
     this.btn6.Size = new System.Drawing.Size(45, 45);
     this.btn6.TabIndex = 47;
     this.btn6.Tag = "6|_6";
     this.btn6.Text = "6";
     this.btn6.UseVisualStyleBackColor = true;
     //
     // btn5
     //
     this.btn5.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btn5.Location = new System.Drawing.Point(51, 51);
     this.btn5.Name = "btn5";
     this.btn5.Size = new System.Drawing.Size(45, 45);
     this.btn5.TabIndex = 46;
     this.btn5.Tag = "5|_5";
     this.btn5.Text = "5";
     this.btn5.UseVisualStyleBackColor = true;
     //
     // btn4
     //
     this.btn4.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btn4.Location = new System.Drawing.Point(0, 51);
     this.btn4.Name = "btn4";
     this.btn4.Size = new System.Drawing.Size(45, 45);
     this.btn4.TabIndex = 45;
     this.btn4.Tag = "4|_4";
     this.btn4.Text = "4";
     this.btn4.UseVisualStyleBackColor = true;
     //
     // btn9
     //
     this.btn9.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btn9.Location = new System.Drawing.Point(102, 0);
     this.btn9.Name = "btn9";
     this.btn9.Size = new System.Drawing.Size(45, 45);
     this.btn9.TabIndex = 44;
     this.btn9.Tag = "9|_9";
     this.btn9.Text = "9";
     this.btn9.UseVisualStyleBackColor = true;
     //
     // btn8
     //
     this.btn8.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btn8.Location = new System.Drawing.Point(51, 0);
     this.btn8.Name = "btn8";
     this.btn8.Size = new System.Drawing.Size(45, 45);
     this.btn8.TabIndex = 43;
     this.btn8.Tag = "8|_8";
     this.btn8.Text = "8";
     this.btn8.UseVisualStyleBackColor = true;
     //
     // btn7
     //
     this.btn7.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btn7.Location = new System.Drawing.Point(0, 0);
     this.btn7.Name = "btn7";
     this.btn7.Size = new System.Drawing.Size(45, 45);
     this.btn7.TabIndex = 42;
     this.btn7.Tag = "7|_7";
     this.btn7.Text = "7";
     this.btn7.UseVisualStyleBackColor = true;
     //
     // menuStrip1
     //
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.帮助ToolStripMenuItem,
     this.科学型ToolStripMenuItem,
     this.科学计数法ToolStripMenuItem,
     this.双括号ToolStripMenuItem,
     this.移动光标ToolStripMenuItem,
     this.功能ToolStripMenuItem,
     this.语音ToolStripMenuItem,
     this.输入ToolStripMenuItem});
     this.menuStrip1.Location = new System.Drawing.Point(0, 0);
     this.menuStrip1.Name = "menuStrip1";
     this.menuStrip1.Size = new System.Drawing.Size(376, 24);
     this.menuStrip1.TabIndex = 13;
     this.menuStrip1.Text = "menuStrip1";
     //
     // 帮助ToolStripMenuItem
     //
     this.帮助ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.帮助ToolStripMenuItem1,
     this.注册ToolStripMenuItem,
     this.关于ToolStripMenuItem});
     this.帮助ToolStripMenuItem.Name = "帮助ToolStripMenuItem";
     this.帮助ToolStripMenuItem.Size = new System.Drawing.Size(41, 20);
     this.帮助ToolStripMenuItem.Text = "帮助";
     //
     // 帮助ToolStripMenuItem1
     //
     this.帮助ToolStripMenuItem1.Name = "帮助ToolStripMenuItem1";
     this.帮助ToolStripMenuItem1.Size = new System.Drawing.Size(94, 22);
     this.帮助ToolStripMenuItem1.Text = "帮助";
     this.帮助ToolStripMenuItem1.Click += new System.EventHandler(this.帮助ToolStripMenuItem1_Click);
     //
     // 注册ToolStripMenuItem
     //
     this.注册ToolStripMenuItem.Name = "注册ToolStripMenuItem";
     this.注册ToolStripMenuItem.Size = new System.Drawing.Size(94, 22);
     this.注册ToolStripMenuItem.Text = "注册";
     this.注册ToolStripMenuItem.Click += new System.EventHandler(this.注册ToolStripMenuItem_Click);
     //
     // 关于ToolStripMenuItem
     //
     this.关于ToolStripMenuItem.Name = "关于ToolStripMenuItem";
     this.关于ToolStripMenuItem.Size = new System.Drawing.Size(94, 22);
     this.关于ToolStripMenuItem.Text = "关于";
     this.关于ToolStripMenuItem.Click += new System.EventHandler(this.关于ToolStripMenuItem_Click);
     //
     // 科学型ToolStripMenuItem
     //
     this.科学型ToolStripMenuItem.Name = "科学型ToolStripMenuItem";
     this.科学型ToolStripMenuItem.Size = new System.Drawing.Size(53, 20);
     this.科学型ToolStripMenuItem.Text = "科学型";
     this.科学型ToolStripMenuItem.Click += new System.EventHandler(this.科学型ToolStripMenuItem_Click);
     //
     // 科学计数法ToolStripMenuItem
     //
     this.科学计数法ToolStripMenuItem.Name = "科学计数法ToolStripMenuItem";
     this.科学计数法ToolStripMenuItem.Size = new System.Drawing.Size(35, 20);
     this.科学计数法ToolStripMenuItem.Text = "F-E";
     this.科学计数法ToolStripMenuItem.ToolTipText = "将计算结果转换为科学计数法表示";
     this.科学计数法ToolStripMenuItem.Click += new System.EventHandler(this.科学计数法ToolStripMenuItem_Click);
     //
     // 双括号ToolStripMenuItem
     //
     this.双括号ToolStripMenuItem.Name = "双括号ToolStripMenuItem";
     this.双括号ToolStripMenuItem.Size = new System.Drawing.Size(35, 20);
     this.双括号ToolStripMenuItem.Text = "( )";
     this.双括号ToolStripMenuItem.Click += new System.EventHandler(this.双括号ToolStripMenuItem_Click);
     //
     // 移动光标ToolStripMenuItem
     //
     this.移动光标ToolStripMenuItem.Name = "移动光标ToolStripMenuItem";
     this.移动光标ToolStripMenuItem.Size = new System.Drawing.Size(35, 20);
     this.移动光标ToolStripMenuItem.Text = "|←";
     this.移动光标ToolStripMenuItem.Click += new System.EventHandler(this.移动光标ToolStripMenuItem_Click);
     //
     // 功能ToolStripMenuItem
     //
     this.功能ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.复制计算结果ToolStripMenuItem,
     this.获取剪切板内容ToolStripMenuItem,
     this.toolStripSeparator4,
     this.存储计算公式ToolStripMenuItem,
     this.存储函数ToolStripMenuItem,
     this.toolStripSeparator5,
     this.人民币大写ToolStripMenuItem,
     this.人民币阿拉伯数字形式ToolStripMenuItem,
     this.toolStripSeparator10,
     this.单步计算ToolStripMenuItem});
     this.功能ToolStripMenuItem.Name = "功能ToolStripMenuItem";
     this.功能ToolStripMenuItem.Size = new System.Drawing.Size(41, 20);
     this.功能ToolStripMenuItem.Text = "功能";
     //
     // 复制计算结果ToolStripMenuItem
     //
     this.复制计算结果ToolStripMenuItem.Name = "复制计算结果ToolStripMenuItem";
     this.复制计算结果ToolStripMenuItem.Size = new System.Drawing.Size(190, 22);
     this.复制计算结果ToolStripMenuItem.Text = "复制计算结果";
     this.复制计算结果ToolStripMenuItem.ToolTipText = "复制计算结果到剪切板";
     this.复制计算结果ToolStripMenuItem.Click += new System.EventHandler(this.复制计算结果ToolStripMenuItem_Click);
     //
     // 获取剪切板内容ToolStripMenuItem
     //
     this.获取剪切板内容ToolStripMenuItem.Name = "获取剪切板内容ToolStripMenuItem";
     this.获取剪切板内容ToolStripMenuItem.Size = new System.Drawing.Size(190, 22);
     this.获取剪切板内容ToolStripMenuItem.Text = "粘贴剪切板内容";
     this.获取剪切板内容ToolStripMenuItem.ToolTipText = "粘贴剪切板内容到算式输入框";
     this.获取剪切板内容ToolStripMenuItem.Click += new System.EventHandler(this.获取剪切板内容ToolStripMenuItem_Click);
     //
     // toolStripSeparator4
     //
     this.toolStripSeparator4.Name = "toolStripSeparator4";
     this.toolStripSeparator4.Size = new System.Drawing.Size(187, 6);
     //
     // 存储计算公式ToolStripMenuItem
     //
     this.存储计算公式ToolStripMenuItem.Name = "存储计算公式ToolStripMenuItem";
     this.存储计算公式ToolStripMenuItem.Size = new System.Drawing.Size(190, 22);
     this.存储计算公式ToolStripMenuItem.Text = "存储算式";
     this.存储计算公式ToolStripMenuItem.ToolTipText = "存储当前算式";
     this.存储计算公式ToolStripMenuItem.Click += new System.EventHandler(this.存储计算公式ToolStripMenuItem_Click);
     //
     // 存储函数ToolStripMenuItem
     //
     this.存储函数ToolStripMenuItem.Name = "存储函数ToolStripMenuItem";
     this.存储函数ToolStripMenuItem.Size = new System.Drawing.Size(190, 22);
     this.存储函数ToolStripMenuItem.Text = "自定义函数";
     this.存储函数ToolStripMenuItem.ToolTipText = "打开函数存储与管理对话框";
     this.存储函数ToolStripMenuItem.Click += new System.EventHandler(this.存储函数ToolStripMenuItem_Click);
     //
     // toolStripSeparator5
     //
     this.toolStripSeparator5.Name = "toolStripSeparator5";
     this.toolStripSeparator5.Size = new System.Drawing.Size(187, 6);
     //
     // 人民币大写ToolStripMenuItem
     //
     this.人民币大写ToolStripMenuItem.Name = "人民币大写ToolStripMenuItem";
     this.人民币大写ToolStripMenuItem.Size = new System.Drawing.Size(190, 22);
     this.人民币大写ToolStripMenuItem.Text = "人民币大写形式";
     this.人民币大写ToolStripMenuItem.ToolTipText = "将计算结果转换为人民币大写形式";
     this.人民币大写ToolStripMenuItem.Click += new System.EventHandler(this.人民币大写ToolStripMenuItem_Click);
     //
     // 人民币阿拉伯数字形式ToolStripMenuItem
     //
     this.人民币阿拉伯数字形式ToolStripMenuItem.Name = "人民币阿拉伯数字形式ToolStripMenuItem";
     this.人民币阿拉伯数字形式ToolStripMenuItem.Size = new System.Drawing.Size(190, 22);
     this.人民币阿拉伯数字形式ToolStripMenuItem.Text = "人民币阿拉伯数字形式";
     this.人民币阿拉伯数字形式ToolStripMenuItem.ToolTipText = "将计算结果转换为人民币阿拉伯数字形式";
     this.人民币阿拉伯数字形式ToolStripMenuItem.Click += new System.EventHandler(this.人民币阿拉伯数字形式ToolStripMenuItem_Click);
     //
     // toolStripSeparator10
     //
     this.toolStripSeparator10.Name = "toolStripSeparator10";
     this.toolStripSeparator10.Size = new System.Drawing.Size(187, 6);
     //
     // 单步计算ToolStripMenuItem
     //
     this.单步计算ToolStripMenuItem.CheckOnClick = true;
     this.单步计算ToolStripMenuItem.Name = "单步计算ToolStripMenuItem";
     this.单步计算ToolStripMenuItem.Size = new System.Drawing.Size(190, 22);
     this.单步计算ToolStripMenuItem.Text = "单步计算";
     this.单步计算ToolStripMenuItem.ToolTipText = "单步计算";
     //
     // 语音ToolStripMenuItem
     //
     this.语音ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.语音ToolStripMenuItem1,
     this.自然读音ToolStripMenuItem});
     this.语音ToolStripMenuItem.Name = "语音ToolStripMenuItem";
     this.语音ToolStripMenuItem.Size = new System.Drawing.Size(41, 20);
     this.语音ToolStripMenuItem.Text = "语音";
     //
     // 语音ToolStripMenuItem1
     //
     this.语音ToolStripMenuItem1.Name = "语音ToolStripMenuItem1";
     this.语音ToolStripMenuItem1.Size = new System.Drawing.Size(118, 22);
     this.语音ToolStripMenuItem1.Text = "发音";
     this.语音ToolStripMenuItem1.Click += new System.EventHandler(this.语音ToolStripMenuItem1_Click);
     //
     // 自然读音ToolStripMenuItem
     //
     this.自然读音ToolStripMenuItem.Name = "自然读音ToolStripMenuItem";
     this.自然读音ToolStripMenuItem.Size = new System.Drawing.Size(118, 22);
     this.自然读音ToolStripMenuItem.Text = "自然读音";
     this.自然读音ToolStripMenuItem.ToolTipText = "例:111读作一百一十一";
     this.自然读音ToolStripMenuItem.Click += new System.EventHandler(this.自然读音ToolStripMenuItem_Click);
     //
     // 输入ToolStripMenuItem
     //
     this.输入ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.求和ToolStripMenuItem,
     this.求平均ToolStripMenuItem,
     this.运算符ToolStripMenuItem,
     this.变量ToolStripMenuItem,
     this.算式ToolStripMenuItem,
     this.单位转换ToolStripMenuItem});
     this.输入ToolStripMenuItem.Name = "输入ToolStripMenuItem";
     this.输入ToolStripMenuItem.Size = new System.Drawing.Size(41, 20);
     this.输入ToolStripMenuItem.Text = "输入";
     //
     // 求和ToolStripMenuItem
     //
     this.求和ToolStripMenuItem.Name = "求和ToolStripMenuItem";
     this.求和ToolStripMenuItem.Size = new System.Drawing.Size(118, 22);
     this.求和ToolStripMenuItem.Text = "求和";
     this.求和ToolStripMenuItem.Click += new System.EventHandler(this.求和ToolStripMenuItem_Click);
     //
     // 求平均ToolStripMenuItem
     //
     this.求平均ToolStripMenuItem.Name = "求平均ToolStripMenuItem";
     this.求平均ToolStripMenuItem.Size = new System.Drawing.Size(118, 22);
     this.求平均ToolStripMenuItem.Text = "求平均";
     this.求平均ToolStripMenuItem.Click += new System.EventHandler(this.求平均ToolStripMenuItem_Click);
     //
     // 运算符ToolStripMenuItem
     //
     this.运算符ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.andToolStripMenuItem,
     this.orToolStripMenuItem,
     this.xorToolStripMenuItem,
     this.notToolStripMenuItem,
     this.toolStripSeparator8,
     this.sgnToolStripMenuItem,
     this.intToolStripMenuItem,
     this.absToolStripMenuItem,
     this.toolStripSeparator9,
     this.toolStripMenuItem2,
     this.toolStripMenuItem3,
     this.toolStripSeparator6,
     this.toolStripMenuItem7});
     this.运算符ToolStripMenuItem.Name = "运算符ToolStripMenuItem";
     this.运算符ToolStripMenuItem.Size = new System.Drawing.Size(118, 22);
     this.运算符ToolStripMenuItem.Text = "运算符";
     //
     // andToolStripMenuItem
     //
     this.andToolStripMenuItem.Name = "andToolStripMenuItem";
     this.andToolStripMenuItem.Size = new System.Drawing.Size(88, 22);
     this.andToolStripMenuItem.Text = "And";
     this.andToolStripMenuItem.ToolTipText = "按位与";
     this.andToolStripMenuItem.Click += new System.EventHandler(this.OpeMenuItem_Click);
     //
     // orToolStripMenuItem
     //
     this.orToolStripMenuItem.Name = "orToolStripMenuItem";
     this.orToolStripMenuItem.Size = new System.Drawing.Size(88, 22);
     this.orToolStripMenuItem.Text = "Or";
     this.orToolStripMenuItem.ToolTipText = "按位或";
     this.orToolStripMenuItem.Click += new System.EventHandler(this.OpeMenuItem_Click);
     //
     // xorToolStripMenuItem
     //
     this.xorToolStripMenuItem.Name = "xorToolStripMenuItem";
     this.xorToolStripMenuItem.Size = new System.Drawing.Size(88, 22);
     this.xorToolStripMenuItem.Text = "Xor";
     this.xorToolStripMenuItem.ToolTipText = "按位异或";
     this.xorToolStripMenuItem.Click += new System.EventHandler(this.OpeMenuItem_Click);
     //
     // notToolStripMenuItem
     //
     this.notToolStripMenuItem.Name = "notToolStripMenuItem";
     this.notToolStripMenuItem.Size = new System.Drawing.Size(88, 22);
     this.notToolStripMenuItem.Text = "Not";
     this.notToolStripMenuItem.ToolTipText = "按位取反";
     this.notToolStripMenuItem.Click += new System.EventHandler(this.OpeMenuItem_Click2);
     //
     // toolStripSeparator8
     //
     this.toolStripSeparator8.Name = "toolStripSeparator8";
     this.toolStripSeparator8.Size = new System.Drawing.Size(85, 6);
     //
     // sgnToolStripMenuItem
     //
     this.sgnToolStripMenuItem.Name = "sgnToolStripMenuItem";
     this.sgnToolStripMenuItem.Size = new System.Drawing.Size(88, 22);
     this.sgnToolStripMenuItem.Text = "Sgn";
     this.sgnToolStripMenuItem.ToolTipText = "取数值的符号";
     this.sgnToolStripMenuItem.Click += new System.EventHandler(this.OpeMenuItem_Click2);
     //
     // intToolStripMenuItem
     //
     this.intToolStripMenuItem.Name = "intToolStripMenuItem";
     this.intToolStripMenuItem.Size = new System.Drawing.Size(88, 22);
     this.intToolStripMenuItem.Text = "Int";
     this.intToolStripMenuItem.ToolTipText = "取整";
     this.intToolStripMenuItem.Click += new System.EventHandler(this.OpeMenuItem_Click2);
     //
     // absToolStripMenuItem
     //
     this.absToolStripMenuItem.Name = "absToolStripMenuItem";
     this.absToolStripMenuItem.Size = new System.Drawing.Size(88, 22);
     this.absToolStripMenuItem.Text = "Abs";
     this.absToolStripMenuItem.ToolTipText = "取绝对值";
     this.absToolStripMenuItem.Click += new System.EventHandler(this.OpeMenuItem_Click2);
     //
     // toolStripSeparator9
     //
     this.toolStripSeparator9.Name = "toolStripSeparator9";
     this.toolStripSeparator9.Size = new System.Drawing.Size(85, 6);
     //
     // toolStripMenuItem2
     //
     this.toolStripMenuItem2.Name = "toolStripMenuItem2";
     this.toolStripMenuItem2.Size = new System.Drawing.Size(88, 22);
     this.toolStripMenuItem2.Text = "<<";
     this.toolStripMenuItem2.ToolTipText = "按左位移";
     this.toolStripMenuItem2.Click += new System.EventHandler(this.OpeMenuItem_Click);
     //
     // toolStripMenuItem3
     //
     this.toolStripMenuItem3.Name = "toolStripMenuItem3";
     this.toolStripMenuItem3.Size = new System.Drawing.Size(88, 22);
     this.toolStripMenuItem3.Text = ">>";
     this.toolStripMenuItem3.ToolTipText = "按右位移";
     this.toolStripMenuItem3.Click += new System.EventHandler(this.OpeMenuItem_Click);
     //
     // toolStripSeparator6
     //
     this.toolStripSeparator6.Name = "toolStripSeparator6";
     this.toolStripSeparator6.Size = new System.Drawing.Size(85, 6);
     //
     // toolStripMenuItem7
     //
     this.toolStripMenuItem7.Name = "toolStripMenuItem7";
     this.toolStripMenuItem7.Size = new System.Drawing.Size(88, 22);
     this.toolStripMenuItem7.Text = "=";
     this.toolStripMenuItem7.ToolTipText = "等于号,用于给变量赋值";
     this.toolStripMenuItem7.Click += new System.EventHandler(this.OpeMenuItem_Click);
     //
     // 变量ToolStripMenuItem
     //
     this.变量ToolStripMenuItem.Name = "变量ToolStripMenuItem";
     this.变量ToolStripMenuItem.Size = new System.Drawing.Size(118, 22);
     this.变量ToolStripMenuItem.Text = "变量";
     this.变量ToolStripMenuItem.ToolTipText = "存储变量:例ax=-5*sqrt(3)\r\n使用变量:例3+2*ax";
     //
     // 算式ToolStripMenuItem
     //
     this.算式ToolStripMenuItem.Name = "算式ToolStripMenuItem";
     this.算式ToolStripMenuItem.Size = new System.Drawing.Size(118, 22);
     this.算式ToolStripMenuItem.Text = "算式";
     //
     // 单位转换ToolStripMenuItem
     //
     this.单位转换ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.英里公里ToolStripMenuItem,
     this.海里公里ToolStripMenuItem,
     this.光年公里ToolStripMenuItem,
     this.英寸厘米ToolStripMenuItem,
     this.toolStripSeparator1,
     this.平方公里亩ToolStripMenuItem,
     this.亩平方公里ToolStripMenuItem,
     this.亩平方米ToolStripMenuItem,
     this.toolStripSeparator3,
     this.桶立方米ToolStripMenuItem,
     this.toolStripSeparator2,
     this.千米每小时米每秒ToolStripMenuItem,
     this.米每秒千米每小时ToolStripMenuItem,
     this.马赫米每秒ToolStripMenuItem});
     this.单位转换ToolStripMenuItem.Name = "单位转换ToolStripMenuItem";
     this.单位转换ToolStripMenuItem.Size = new System.Drawing.Size(118, 22);
     this.单位转换ToolStripMenuItem.Text = "单位换算";
     //
     // 英里公里ToolStripMenuItem
     //
     this.英里公里ToolStripMenuItem.Name = "英里公里ToolStripMenuItem";
     this.英里公里ToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
     this.英里公里ToolStripMenuItem.Text = "英里->公里";
     this.英里公里ToolStripMenuItem.ToolTipText = "例:\r\nconv(英里,公里,1)\r\nconv(英里,公里,1)*5";
     this.英里公里ToolStripMenuItem.Click += new System.EventHandler(this.英里公里ToolStripMenuItem_Click);
     //
     // 海里公里ToolStripMenuItem
     //
     this.海里公里ToolStripMenuItem.Name = "海里公里ToolStripMenuItem";
     this.海里公里ToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
     this.海里公里ToolStripMenuItem.Text = "海里->公里";
     this.海里公里ToolStripMenuItem.Click += new System.EventHandler(this.海里公里ToolStripMenuItem_Click);
     //
     // 光年公里ToolStripMenuItem
     //
     this.光年公里ToolStripMenuItem.Name = "光年公里ToolStripMenuItem";
     this.光年公里ToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
     this.光年公里ToolStripMenuItem.Text = "光年->公里";
     this.光年公里ToolStripMenuItem.Click += new System.EventHandler(this.光年公里ToolStripMenuItem_Click);
     //
     // 英寸厘米ToolStripMenuItem
     //
     this.英寸厘米ToolStripMenuItem.Name = "英寸厘米ToolStripMenuItem";
     this.英寸厘米ToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
     this.英寸厘米ToolStripMenuItem.Text = "英寸->厘米";
     this.英寸厘米ToolStripMenuItem.Click += new System.EventHandler(this.英寸厘米ToolStripMenuItem_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(175, 6);
     //
     // 平方公里亩ToolStripMenuItem
     //
     this.平方公里亩ToolStripMenuItem.Name = "平方公里亩ToolStripMenuItem";
     this.平方公里亩ToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
     this.平方公里亩ToolStripMenuItem.Text = "平方公里->亩";
     this.平方公里亩ToolStripMenuItem.Click += new System.EventHandler(this.平方公里亩ToolStripMenuItem_Click);
     //
     // 亩平方公里ToolStripMenuItem
     //
     this.亩平方公里ToolStripMenuItem.Name = "亩平方公里ToolStripMenuItem";
     this.亩平方公里ToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
     this.亩平方公里ToolStripMenuItem.Text = "亩->平方公里";
     this.亩平方公里ToolStripMenuItem.Click += new System.EventHandler(this.亩平方公里ToolStripMenuItem_Click);
     //
     // 亩平方米ToolStripMenuItem
     //
     this.亩平方米ToolStripMenuItem.Name = "亩平方米ToolStripMenuItem";
     this.亩平方米ToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
     this.亩平方米ToolStripMenuItem.Text = "亩->平方米";
     this.亩平方米ToolStripMenuItem.Click += new System.EventHandler(this.亩平方米ToolStripMenuItem_Click);
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(175, 6);
     //
     // 桶立方米ToolStripMenuItem
     //
     this.桶立方米ToolStripMenuItem.Name = "桶立方米ToolStripMenuItem";
     this.桶立方米ToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
     this.桶立方米ToolStripMenuItem.Text = "桶->立方米";
     this.桶立方米ToolStripMenuItem.ToolTipText = "桶:原油数量单位";
     this.桶立方米ToolStripMenuItem.Click += new System.EventHandler(this.桶立方米ToolStripMenuItem_Click);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(175, 6);
     //
     // 千米每小时米每秒ToolStripMenuItem
     //
     this.千米每小时米每秒ToolStripMenuItem.Name = "千米每小时米每秒ToolStripMenuItem";
     this.千米每小时米每秒ToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
     this.千米每小时米每秒ToolStripMenuItem.Text = "千米每小时->米每秒";
     this.千米每小时米每秒ToolStripMenuItem.Click += new System.EventHandler(this.千米每小时米每秒ToolStripMenuItem_Click);
     //
     // 米每秒千米每小时ToolStripMenuItem
     //
     this.米每秒千米每小时ToolStripMenuItem.Name = "米每秒千米每小时ToolStripMenuItem";
     this.米每秒千米每小时ToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
     this.米每秒千米每小时ToolStripMenuItem.Text = "米每秒->千米每小时";
     this.米每秒千米每小时ToolStripMenuItem.Click += new System.EventHandler(this.米每秒千米每小时ToolStripMenuItem_Click);
     //
     // 马赫米每秒ToolStripMenuItem
     //
     this.马赫米每秒ToolStripMenuItem.Name = "马赫米每秒ToolStripMenuItem";
     this.马赫米每秒ToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
     this.马赫米每秒ToolStripMenuItem.Text = "马赫->米每秒";
     this.马赫米每秒ToolStripMenuItem.ToolTipText = "马赫:速度单位";
     this.马赫米每秒ToolStripMenuItem.Click += new System.EventHandler(this.马赫米每秒ToolStripMenuItem_Click);
     //
     // panel1
     //
     this.panel1.Controls.Add(this.btnbtnReciprocal);
     this.panel1.Controls.Add(this.btnANS);
     this.panel1.Controls.Add(this.btnE);
     this.panel1.Controls.Add(this.btnPow);
     this.panel1.Controls.Add(this.btnPI);
     this.panel1.Controls.Add(this.btnPercent);
     this.panel1.Controls.Add(this.btnSqrt);
     this.panel1.Controls.Add(this.btnEqual);
     this.panel1.Controls.Add(this.btnPoint);
     this.panel1.Controls.Add(this.btnC);
     this.panel1.Controls.Add(this.btnBackspace);
     this.panel1.Controls.Add(this.btnDivide);
     this.panel1.Controls.Add(this.btnMultiply);
     this.panel1.Controls.Add(this.btnMinus);
     this.panel1.Controls.Add(this.btnPlus);
     this.panel1.Controls.Add(this.btnPareR);
     this.panel1.Controls.Add(this.btnPareL);
     this.panel1.Controls.Add(this.btn0);
     this.panel1.Controls.Add(this.btn3);
     this.panel1.Controls.Add(this.btn2);
     this.panel1.Controls.Add(this.btn1);
     this.panel1.Controls.Add(this.btn6);
     this.panel1.Controls.Add(this.btn5);
     this.panel1.Controls.Add(this.btn4);
     this.panel1.Controls.Add(this.btn9);
     this.panel1.Controls.Add(this.btn8);
     this.panel1.Controls.Add(this.btn7);
     this.panel1.Controls.Add(this.btnComma);
     this.panel1.Location = new System.Drawing.Point(12, 118);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(352, 199);
     this.panel1.TabIndex = 69;
     //
     // panel2
     //
     this.panel2.Controls.Add(this.btnDms);
     this.panel2.Controls.Add(this.btn_E);
     this.panel2.Controls.Add(this.btnS);
     this.panel2.Controls.Add(this.btnAverage);
     this.panel2.Controls.Add(this.btnF);
     this.panel2.Controls.Add(this.btnToDegree);
     this.panel2.Controls.Add(this.btnD);
     this.panel2.Controls.Add(this.btn_e_);
     this.panel2.Controls.Add(this.btnBIN);
     this.panel2.Controls.Add(this.btnB);
     this.panel2.Controls.Add(this.btnHEX);
     this.panel2.Controls.Add(this.btnToB);
     this.panel2.Controls.Add(this.btnToH);
     this.panel2.Controls.Add(this.btnMod);
     this.panel2.Controls.Add(this.btnSum);
     this.panel2.Controls.Add(this.bnt_C);
     this.panel2.Controls.Add(this.btnnCr);
     this.panel2.Controls.Add(this.btnnAr);
     this.panel2.Controls.Add(this.btnDu);
     this.panel2.Controls.Add(this.btnExp);
     this.panel2.Controls.Add(this.btnLog);
     this.panel2.Controls.Add(this.btnLn);
     this.panel2.Controls.Add(this.btnToO);
     this.panel2.Controls.Add(this.btnOCT);
     this.panel2.Controls.Add(this.btnA);
     this.panel2.Controls.Add(this.btnTanh);
     this.panel2.Controls.Add(this.btnCosh);
     this.panel2.Controls.Add(this.btnSinh);
     this.panel2.Controls.Add(this.btnAtan);
     this.panel2.Controls.Add(this.btnAcos);
     this.panel2.Controls.Add(this.btnAsin);
     this.panel2.Controls.Add(this.btnTan);
     this.panel2.Controls.Add(this.btnCos);
     this.panel2.Controls.Add(this.btnSin);
     this.panel2.Controls.Add(this.btnFactorial);
     this.panel2.Location = new System.Drawing.Point(12, 363);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(352, 150);
     this.panel2.TabIndex = 70;
     //
     // notifyIcon1
     //
     this.notifyIcon1.ContextMenuStrip = this.NotifyMenu;
     this.notifyIcon1.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon1.Icon")));
     this.notifyIcon1.Text = "计算器";
     this.notifyIcon1.Visible = true;
     this.notifyIcon1.MouseClick += new System.Windows.Forms.MouseEventHandler(this.notifyIcon1_MouseClick);
     //
     // NotifyMenu
     //
     this.NotifyMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.显示计算器ToolStripMenuItem,
     this.关闭计算器ToolStripMenuItem});
     this.NotifyMenu.Name = "NotifyMenu";
     this.NotifyMenu.Size = new System.Drawing.Size(131, 48);
     //
     // 显示计算器ToolStripMenuItem
     //
     this.显示计算器ToolStripMenuItem.Name = "显示计算器ToolStripMenuItem";
     this.显示计算器ToolStripMenuItem.Size = new System.Drawing.Size(130, 22);
     this.显示计算器ToolStripMenuItem.Text = "显示计算器";
     this.显示计算器ToolStripMenuItem.MouseDown += new System.Windows.Forms.MouseEventHandler(this.显示计算器ToolStripMenuItem_MouseDown);
     //
     // 关闭计算器ToolStripMenuItem
     //
     this.关闭计算器ToolStripMenuItem.Name = "关闭计算器ToolStripMenuItem";
     this.关闭计算器ToolStripMenuItem.Size = new System.Drawing.Size(130, 22);
     this.关闭计算器ToolStripMenuItem.Text = "关闭计算器";
     this.关闭计算器ToolStripMenuItem.MouseDown += new System.Windows.Forms.MouseEventHandler(this.关闭计算器ToolStripMenuItem_MouseDown);
     //
     // Form1
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(376, 525);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.txtExp);
     this.Controls.Add(this.txtResult);
     this.Controls.Add(this.menuStrip1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MainMenuStrip = this.menuStrip1;
     this.MaximizeBox = false;
     this.Name = "Form1";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "计算器";
     this.Load += new System.EventHandler(this.Form1_Load);
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing);
     this.menuRichTextBox.ResumeLayout(false);
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     this.panel1.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     this.NotifyMenu.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <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(PlanContentForm));
     this.educationalDepartmentDataSet     = new DepartmentManager.EducationalDepartmentDataSet();
     this.plansBindingSource               = new System.Windows.Forms.BindingSource(this.components);
     this.plansTableAdapter                = new DepartmentManager.EducationalDepartmentDataSetTableAdapters.PlansTableAdapter();
     this.tableAdapterManager              = new DepartmentManager.EducationalDepartmentDataSetTableAdapters.TableAdapterManager();
     this.planContentTableAdapter          = new DepartmentManager.EducationalDepartmentDataSetTableAdapters.PlanContentTableAdapter();
     this.subjectsTableAdapter             = new DepartmentManager.EducationalDepartmentDataSetTableAdapters.SubjectsTableAdapter();
     this.plansBindingNavigator            = new System.Windows.Forms.BindingNavigator(this.components);
     this.bindingNavigatorAddNewItem       = new System.Windows.Forms.ToolStripButton();
     this.planContentBindingSource         = new System.Windows.Forms.BindingSource(this.components);
     this.bindingNavigatorCountItem        = new System.Windows.Forms.ToolStripLabel();
     this.bindingNavigatorDeleteItem       = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMoveFirstItem    = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMovePreviousItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator        = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorPositionItem     = new System.Windows.Forms.ToolStripTextBox();
     this.bindingNavigatorSeparator1       = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorMoveNextItem     = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMoveLastItem     = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator2       = new System.Windows.Forms.ToolStripSeparator();
     this.plansBindingNavigatorSaveItem    = new System.Windows.Forms.ToolStripButton();
     this.planContentDataGridView          = new System.Windows.Forms.DataGridView();
     this.plansBindingSource1              = new System.Windows.Forms.BindingSource(this.components);
     this.subjectsBindingSource            = new System.Windows.Forms.BindingSource(this.components);
     this.plansDataGridView                = new System.Windows.Forms.DataGridView();
     this.dataGridViewTextBoxColumn8       = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn9       = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn7       = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn2       = new System.Windows.Forms.DataGridViewComboBoxColumn();
     this.dataGridViewTextBoxColumn3       = new System.Windows.Forms.DataGridViewComboBoxColumn();
     this.dataGridViewTextBoxColumn4       = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn5       = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn6       = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn1       = new System.Windows.Forms.DataGridViewTextBoxColumn();
     ((System.ComponentModel.ISupportInitialize)(this.educationalDepartmentDataSet)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.plansBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.plansBindingNavigator)).BeginInit();
     this.plansBindingNavigator.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.planContentBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.planContentDataGridView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.plansBindingSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.subjectsBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.plansDataGridView)).BeginInit();
     this.SuspendLayout();
     //
     // educationalDepartmentDataSet
     //
     this.educationalDepartmentDataSet.DataSetName             = "EducationalDepartmentDataSet";
     this.educationalDepartmentDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // plansBindingSource
     //
     this.plansBindingSource.DataMember = "Plans";
     this.plansBindingSource.DataSource = this.educationalDepartmentDataSet;
     //
     // plansTableAdapter
     //
     this.plansTableAdapter.ClearBeforeFill = true;
     //
     // tableAdapterManager
     //
     this.tableAdapterManager.BackupDataSetBeforeUpdate = false;
     this.tableAdapterManager.GroupsTableAdapter        = null;
     this.tableAdapterManager.MarkRecordsTableAdapter   = null;
     this.tableAdapterManager.PlanContentTableAdapter   = this.planContentTableAdapter;
     this.tableAdapterManager.PlansTableAdapter         = this.plansTableAdapter;
     this.tableAdapterManager.StudentsTableAdapter      = null;
     this.tableAdapterManager.SubjectsTableAdapter      = this.subjectsTableAdapter;
     this.tableAdapterManager.UpdateOrder = DepartmentManager.EducationalDepartmentDataSetTableAdapters.TableAdapterManager.UpdateOrderOption.InsertUpdateDelete;
     //
     // planContentTableAdapter
     //
     this.planContentTableAdapter.ClearBeforeFill = true;
     //
     // subjectsTableAdapter
     //
     this.subjectsTableAdapter.ClearBeforeFill = true;
     //
     // plansBindingNavigator
     //
     this.plansBindingNavigator.AddNewItem    = this.bindingNavigatorAddNewItem;
     this.plansBindingNavigator.BindingSource = this.planContentBindingSource;
     this.plansBindingNavigator.CountItem     = this.bindingNavigatorCountItem;
     this.plansBindingNavigator.DeleteItem    = this.bindingNavigatorDeleteItem;
     this.plansBindingNavigator.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.bindingNavigatorMoveFirstItem,
         this.bindingNavigatorMovePreviousItem,
         this.bindingNavigatorSeparator,
         this.bindingNavigatorPositionItem,
         this.bindingNavigatorCountItem,
         this.bindingNavigatorSeparator1,
         this.bindingNavigatorMoveNextItem,
         this.bindingNavigatorMoveLastItem,
         this.bindingNavigatorSeparator2,
         this.bindingNavigatorAddNewItem,
         this.bindingNavigatorDeleteItem,
         this.plansBindingNavigatorSaveItem
     });
     this.plansBindingNavigator.Location         = new System.Drawing.Point(0, 0);
     this.plansBindingNavigator.MoveFirstItem    = this.bindingNavigatorMoveFirstItem;
     this.plansBindingNavigator.MoveLastItem     = this.bindingNavigatorMoveLastItem;
     this.plansBindingNavigator.MoveNextItem     = this.bindingNavigatorMoveNextItem;
     this.plansBindingNavigator.MovePreviousItem = this.bindingNavigatorMovePreviousItem;
     this.plansBindingNavigator.Name             = "plansBindingNavigator";
     this.plansBindingNavigator.PositionItem     = this.bindingNavigatorPositionItem;
     this.plansBindingNavigator.Size             = new System.Drawing.Size(869, 25);
     this.plansBindingNavigator.TabIndex         = 0;
     this.plansBindingNavigator.Text             = "bindingNavigator1";
     //
     // bindingNavigatorAddNewItem
     //
     this.bindingNavigatorAddNewItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorAddNewItem.Image        = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorAddNewItem.Image")));
     this.bindingNavigatorAddNewItem.Name         = "bindingNavigatorAddNewItem";
     this.bindingNavigatorAddNewItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorAddNewItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorAddNewItem.Text = "Add new";
     //
     // planContentBindingSource
     //
     this.planContentBindingSource.DataMember = "FK_PlanContent_Plans";
     this.planContentBindingSource.DataSource = this.plansBindingSource;
     //
     // bindingNavigatorCountItem
     //
     this.bindingNavigatorCountItem.Name        = "bindingNavigatorCountItem";
     this.bindingNavigatorCountItem.Size        = new System.Drawing.Size(35, 22);
     this.bindingNavigatorCountItem.Text        = "of {0}";
     this.bindingNavigatorCountItem.ToolTipText = "Total number of items";
     //
     // bindingNavigatorDeleteItem
     //
     this.bindingNavigatorDeleteItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorDeleteItem.Image        = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorDeleteItem.Image")));
     this.bindingNavigatorDeleteItem.Name         = "bindingNavigatorDeleteItem";
     this.bindingNavigatorDeleteItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorDeleteItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorDeleteItem.Text = "Delete";
     //
     // bindingNavigatorMoveFirstItem
     //
     this.bindingNavigatorMoveFirstItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveFirstItem.Image        = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveFirstItem.Image")));
     this.bindingNavigatorMoveFirstItem.Name         = "bindingNavigatorMoveFirstItem";
     this.bindingNavigatorMoveFirstItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveFirstItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveFirstItem.Text = "Move first";
     //
     // bindingNavigatorMovePreviousItem
     //
     this.bindingNavigatorMovePreviousItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMovePreviousItem.Image        = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMovePreviousItem.Image")));
     this.bindingNavigatorMovePreviousItem.Name         = "bindingNavigatorMovePreviousItem";
     this.bindingNavigatorMovePreviousItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMovePreviousItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMovePreviousItem.Text = "Move previous";
     //
     // bindingNavigatorSeparator
     //
     this.bindingNavigatorSeparator.Name = "bindingNavigatorSeparator";
     this.bindingNavigatorSeparator.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorPositionItem
     //
     this.bindingNavigatorPositionItem.AccessibleName = "Position";
     this.bindingNavigatorPositionItem.AutoSize       = false;
     this.bindingNavigatorPositionItem.Name           = "bindingNavigatorPositionItem";
     this.bindingNavigatorPositionItem.Size           = new System.Drawing.Size(50, 23);
     this.bindingNavigatorPositionItem.Text           = "0";
     this.bindingNavigatorPositionItem.ToolTipText    = "Current position";
     //
     // bindingNavigatorSeparator1
     //
     this.bindingNavigatorSeparator1.Name = "bindingNavigatorSeparator1";
     this.bindingNavigatorSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorMoveNextItem
     //
     this.bindingNavigatorMoveNextItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveNextItem.Image        = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveNextItem.Image")));
     this.bindingNavigatorMoveNextItem.Name         = "bindingNavigatorMoveNextItem";
     this.bindingNavigatorMoveNextItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveNextItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveNextItem.Text = "Move next";
     //
     // bindingNavigatorMoveLastItem
     //
     this.bindingNavigatorMoveLastItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveLastItem.Image        = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveLastItem.Image")));
     this.bindingNavigatorMoveLastItem.Name         = "bindingNavigatorMoveLastItem";
     this.bindingNavigatorMoveLastItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveLastItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveLastItem.Text = "Move last";
     //
     // bindingNavigatorSeparator2
     //
     this.bindingNavigatorSeparator2.Name = "bindingNavigatorSeparator2";
     this.bindingNavigatorSeparator2.Size = new System.Drawing.Size(6, 25);
     //
     // plansBindingNavigatorSaveItem
     //
     this.plansBindingNavigatorSaveItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.plansBindingNavigatorSaveItem.Image        = ((System.Drawing.Image)(resources.GetObject("plansBindingNavigatorSaveItem.Image")));
     this.plansBindingNavigatorSaveItem.Name         = "plansBindingNavigatorSaveItem";
     this.plansBindingNavigatorSaveItem.Size         = new System.Drawing.Size(23, 22);
     this.plansBindingNavigatorSaveItem.Text         = "Save Data";
     this.plansBindingNavigatorSaveItem.Click       += new System.EventHandler(this.PlansBindingNavigatorSaveItem_Click);
     //
     // planContentDataGridView
     //
     this.planContentDataGridView.AutoGenerateColumns         = false;
     this.planContentDataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.planContentDataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
         this.dataGridViewTextBoxColumn2,
         this.dataGridViewTextBoxColumn3,
         this.dataGridViewTextBoxColumn4,
         this.dataGridViewTextBoxColumn5,
         this.dataGridViewTextBoxColumn6,
         this.dataGridViewTextBoxColumn1
     });
     this.planContentDataGridView.DataSource = this.planContentBindingSource;
     this.planContentDataGridView.Location   = new System.Drawing.Point(12, 28);
     this.planContentDataGridView.Name       = "planContentDataGridView";
     this.planContentDataGridView.Size       = new System.Drawing.Size(553, 305);
     this.planContentDataGridView.TabIndex   = 2;
     this.planContentDataGridView.DataError += new System.Windows.Forms.DataGridViewDataErrorEventHandler(this.PlanContentDataGridView_DataError);
     //
     // plansBindingSource1
     //
     this.plansBindingSource1.DataMember = "Plans";
     this.plansBindingSource1.DataSource = this.educationalDepartmentDataSet;
     //
     // subjectsBindingSource
     //
     this.subjectsBindingSource.DataMember = "Subjects";
     this.subjectsBindingSource.DataSource = this.educationalDepartmentDataSet;
     //
     // plansDataGridView
     //
     this.plansDataGridView.AutoGenerateColumns         = false;
     this.plansDataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.plansDataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
         this.dataGridViewTextBoxColumn8,
         this.dataGridViewTextBoxColumn9,
         this.dataGridViewTextBoxColumn7
     });
     this.plansDataGridView.DataSource = this.plansBindingSource;
     this.plansDataGridView.Location   = new System.Drawing.Point(571, 28);
     this.plansDataGridView.Name       = "plansDataGridView";
     this.plansDataGridView.Size       = new System.Drawing.Size(289, 305);
     this.plansDataGridView.TabIndex   = 4;
     //
     // dataGridViewTextBoxColumn8
     //
     this.dataGridViewTextBoxColumn8.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this.dataGridViewTextBoxColumn8.DataPropertyName = "Speciality";
     this.dataGridViewTextBoxColumn8.HeaderText       = "Специальность";
     this.dataGridViewTextBoxColumn8.Name             = "dataGridViewTextBoxColumn8";
     this.dataGridViewTextBoxColumn8.ReadOnly         = true;
     //
     // dataGridViewTextBoxColumn9
     //
     this.dataGridViewTextBoxColumn9.DataPropertyName = "Year";
     this.dataGridViewTextBoxColumn9.HeaderText       = "Год";
     this.dataGridViewTextBoxColumn9.Name             = "dataGridViewTextBoxColumn9";
     this.dataGridViewTextBoxColumn9.ReadOnly         = true;
     this.dataGridViewTextBoxColumn9.Width            = 75;
     //
     // dataGridViewTextBoxColumn7
     //
     this.dataGridViewTextBoxColumn7.DataPropertyName = "Id";
     this.dataGridViewTextBoxColumn7.HeaderText       = "Id";
     this.dataGridViewTextBoxColumn7.Name             = "dataGridViewTextBoxColumn7";
     this.dataGridViewTextBoxColumn7.ReadOnly         = true;
     this.dataGridViewTextBoxColumn7.Visible          = false;
     //
     // dataGridViewTextBoxColumn2
     //
     this.dataGridViewTextBoxColumn2.DataPropertyName = "PlanId";
     this.dataGridViewTextBoxColumn2.DataSource       = this.plansBindingSource1;
     this.dataGridViewTextBoxColumn2.DisplayMember    = "Speciality";
     this.dataGridViewTextBoxColumn2.HeaderText       = "Специальность";
     this.dataGridViewTextBoxColumn2.Name             = "dataGridViewTextBoxColumn2";
     this.dataGridViewTextBoxColumn2.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridViewTextBoxColumn2.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     this.dataGridViewTextBoxColumn2.ValueMember      = "Id";
     this.dataGridViewTextBoxColumn2.Visible          = false;
     this.dataGridViewTextBoxColumn2.Width            = 200;
     //
     // dataGridViewTextBoxColumn3
     //
     this.dataGridViewTextBoxColumn3.DataPropertyName = "SubjectId";
     this.dataGridViewTextBoxColumn3.DataSource       = this.subjectsBindingSource;
     this.dataGridViewTextBoxColumn3.DisplayMember    = "Name";
     this.dataGridViewTextBoxColumn3.HeaderText       = "Дисциплина";
     this.dataGridViewTextBoxColumn3.Name             = "dataGridViewTextBoxColumn3";
     this.dataGridViewTextBoxColumn3.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridViewTextBoxColumn3.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     this.dataGridViewTextBoxColumn3.ValueMember      = "Id";
     this.dataGridViewTextBoxColumn3.Width            = 200;
     //
     // dataGridViewTextBoxColumn4
     //
     this.dataGridViewTextBoxColumn4.DataPropertyName = "LectureDuration";
     this.dataGridViewTextBoxColumn4.HeaderText       = "Лекции (ч)";
     this.dataGridViewTextBoxColumn4.Name             = "dataGridViewTextBoxColumn4";
     this.dataGridViewTextBoxColumn4.Width            = 85;
     //
     // dataGridViewTextBoxColumn5
     //
     this.dataGridViewTextBoxColumn5.DataPropertyName = "LabDuration";
     this.dataGridViewTextBoxColumn5.HeaderText       = "Лабораторные (ч)";
     this.dataGridViewTextBoxColumn5.Name             = "dataGridViewTextBoxColumn5";
     this.dataGridViewTextBoxColumn5.Width            = 125;
     //
     // dataGridViewTextBoxColumn6
     //
     this.dataGridViewTextBoxColumn6.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this.dataGridViewTextBoxColumn6.DataPropertyName = "CourseDuration";
     this.dataGridViewTextBoxColumn6.HeaderText       = "Курсовые (ч)";
     this.dataGridViewTextBoxColumn6.Name             = "dataGridViewTextBoxColumn6";
     //
     // dataGridViewTextBoxColumn1
     //
     this.dataGridViewTextBoxColumn1.DataPropertyName = "Id";
     this.dataGridViewTextBoxColumn1.HeaderText       = "Id";
     this.dataGridViewTextBoxColumn1.Name             = "dataGridViewTextBoxColumn1";
     this.dataGridViewTextBoxColumn1.ReadOnly         = true;
     this.dataGridViewTextBoxColumn1.Visible          = false;
     //
     // PlanContentForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(869, 348);
     this.Controls.Add(this.plansDataGridView);
     this.Controls.Add(this.planContentDataGridView);
     this.Controls.Add(this.plansBindingNavigator);
     this.Name  = "PlanContentForm";
     this.Text  = "План";
     this.Load += new System.EventHandler(this.PlanContentForm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.educationalDepartmentDataSet)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.plansBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.plansBindingNavigator)).EndInit();
     this.plansBindingNavigator.ResumeLayout(false);
     this.plansBindingNavigator.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.planContentBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.planContentDataGridView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.plansBindingSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.subjectsBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.plansDataGridView)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Beispiel #45
0
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmPanelComprobantes));
     this.toolStrip1        = new System.Windows.Forms.ToolStrip();
     this.toolStrip2        = new System.Windows.Forms.ToolStrip();
     this.toolStripLabel1   = new System.Windows.Forms.ToolStripLabel();
     this.cboBuscarPor      = new System.Windows.Forms.ToolStripComboBox();
     this.toolStripTextBox1 = new System.Windows.Forms.ToolStripTextBox();
     this.btnBuscar         = new System.Windows.Forms.ToolStripButton();
     this.btnNuevo          = new System.Windows.Forms.ToolStripButton();
     this.btnModificar      = new System.Windows.Forms.ToolStripButton();
     this.btnEliminar       = new System.Windows.Forms.ToolStripButton();
     this.btnCerrar         = new System.Windows.Forms.ToolStripButton();
     this.splitContainer1   = new System.Windows.Forms.SplitContainer();
     this.dgvComprobantes   = new System.Windows.Forms.DataGridView();
     this.dataGridView2     = new System.Windows.Forms.DataGridView();
     this.toolStrip2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgvComprobantes)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView2)).BeginInit();
     this.SuspendLayout();
     //
     // toolStrip1
     //
     this.toolStrip1.Location = new System.Drawing.Point(0, 0);
     this.toolStrip1.Name     = "toolStrip1";
     this.toolStrip1.Size     = new System.Drawing.Size(100, 25);
     this.toolStrip1.TabIndex = 0;
     //
     // toolStrip2
     //
     this.toolStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toolStripLabel1,
         this.cboBuscarPor,
         this.toolStripTextBox1,
         this.btnBuscar,
         this.btnNuevo,
         this.btnModificar,
         this.btnEliminar,
         this.btnCerrar
     });
     this.toolStrip2.Location = new System.Drawing.Point(0, 0);
     this.toolStrip2.Name     = "toolStrip2";
     this.toolStrip2.Size     = new System.Drawing.Size(968, 25);
     this.toolStrip2.TabIndex = 1;
     this.toolStrip2.Text     = "toolStrip2";
     //
     // toolStripLabel1
     //
     this.toolStripLabel1.Name = "toolStripLabel1";
     this.toolStripLabel1.Size = new System.Drawing.Size(45, 22);
     this.toolStripLabel1.Text = "Buscar:";
     //
     // cboBuscarPor
     //
     this.cboBuscarPor.Name = "cboBuscarPor";
     this.cboBuscarPor.Size = new System.Drawing.Size(121, 25);
     //
     // toolStripTextBox1
     //
     this.toolStripTextBox1.Name = "toolStripTextBox1";
     this.toolStripTextBox1.Size = new System.Drawing.Size(300, 25);
     //
     // btnBuscar
     //
     this.btnBuscar.Image = ((System.Drawing.Image)(resources.GetObject("btnBuscar.Image")));
     this.btnBuscar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnBuscar.Name = "btnBuscar";
     this.btnBuscar.Size = new System.Drawing.Size(62, 22);
     this.btnBuscar.Text = "Buscar";
     //
     // btnNuevo
     //
     this.btnNuevo.Image = ((System.Drawing.Image)(resources.GetObject("btnNuevo.Image")));
     this.btnNuevo.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnNuevo.Name   = "btnNuevo";
     this.btnNuevo.Size   = new System.Drawing.Size(62, 22);
     this.btnNuevo.Text   = "Nuevo";
     this.btnNuevo.Click += new System.EventHandler(this.BtnNuevoClick);
     //
     // btnModificar
     //
     this.btnModificar.Image = ((System.Drawing.Image)(resources.GetObject("btnModificar.Image")));
     this.btnModificar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnModificar.Name = "btnModificar";
     this.btnModificar.Size = new System.Drawing.Size(78, 22);
     this.btnModificar.Text = "Modificar";
     //
     // btnEliminar
     //
     this.btnEliminar.Image = ((System.Drawing.Image)(resources.GetObject("btnEliminar.Image")));
     this.btnEliminar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnEliminar.Name = "btnEliminar";
     this.btnEliminar.Size = new System.Drawing.Size(70, 22);
     this.btnEliminar.Text = "Eliminar";
     //
     // btnCerrar
     //
     this.btnCerrar.Image = ((System.Drawing.Image)(resources.GetObject("btnCerrar.Image")));
     this.btnCerrar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnCerrar.Name   = "btnCerrar";
     this.btnCerrar.Size   = new System.Drawing.Size(59, 22);
     this.btnCerrar.Text   = "Cerrar";
     this.btnCerrar.Click += new System.EventHandler(this.BtnCerrarClick);
     //
     // splitContainer1
     //
     this.splitContainer1.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.Location    = new System.Drawing.Point(0, 25);
     this.splitContainer1.Name        = "splitContainer1";
     this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.dgvComprobantes);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.dataGridView2);
     this.splitContainer1.Size             = new System.Drawing.Size(968, 297);
     this.splitContainer1.SplitterDistance = 207;
     this.splitContainer1.TabIndex         = 2;
     //
     // dgvComprobantes
     //
     this.dgvComprobantes.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgvComprobantes.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.dgvComprobantes.Location = new System.Drawing.Point(0, 0);
     this.dgvComprobantes.Name     = "dgvComprobantes";
     this.dgvComprobantes.Size     = new System.Drawing.Size(968, 207);
     this.dgvComprobantes.TabIndex = 0;
     //
     // dataGridView2
     //
     this.dataGridView2.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridView2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.dataGridView2.Location = new System.Drawing.Point(0, 0);
     this.dataGridView2.Name     = "dataGridView2";
     this.dataGridView2.Size     = new System.Drawing.Size(968, 86);
     this.dataGridView2.TabIndex = 0;
     //
     // FrmPanelComprobantes
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(968, 322);
     this.Controls.Add(this.splitContainer1);
     this.Controls.Add(this.toolStrip2);
     this.Name  = "FrmPanelComprobantes";
     this.Text  = "Listado de Comprobantes";
     this.Load += new System.EventHandler(this.FrmPanelComprobantesLoad);
     this.toolStrip2.ResumeLayout(false);
     this.toolStrip2.PerformLayout();
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
     this.splitContainer1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dgvComprobantes)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView2)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <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(ProvinciaFrm));
     this.metroLabel1 = new MetroFramework.Controls.MetroLabel();
     this.bindingSourceProvincias = new System.Windows.Forms.BindingSource(this.components);
     this.bindingNavigatorMoveFirstItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMovePreviousItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorPositionItem = new System.Windows.Forms.ToolStripTextBox();
     this.bindingNavigatorCountItem = new System.Windows.Forms.ToolStripLabel();
     this.bindingNavigatorSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorMoveNextItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMoveLastItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorAddNewItem = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorDeleteItem = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripTextBoxFiltroLocalidad = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorProvincia = new System.Windows.Forms.BindingNavigator(this.components);
     this.metroTextBoxProvincia = new MetroFramework.Controls.MetroTextBox();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSourceProvincias)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingNavigatorProvincia)).BeginInit();
     this.bindingNavigatorProvincia.SuspendLayout();
     this.SuspendLayout();
     //
     // metroLabel1
     //
     this.metroLabel1.AutoSize = true;
     this.metroLabel1.Location = new System.Drawing.Point(23, 60);
     this.metroLabel1.Name = "metroLabel1";
     this.metroLabel1.Size = new System.Drawing.Size(67, 19);
     this.metroLabel1.TabIndex = 6;
     this.metroLabel1.Text = "Provincias";
     //
     // bindingNavigatorMoveFirstItem
     //
     this.bindingNavigatorMoveFirstItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveFirstItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveFirstItem.Image")));
     this.bindingNavigatorMoveFirstItem.Name = "bindingNavigatorMoveFirstItem";
     this.bindingNavigatorMoveFirstItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveFirstItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveFirstItem.Text = "Mover primero";
     //
     // bindingNavigatorMovePreviousItem
     //
     this.bindingNavigatorMovePreviousItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMovePreviousItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMovePreviousItem.Image")));
     this.bindingNavigatorMovePreviousItem.Name = "bindingNavigatorMovePreviousItem";
     this.bindingNavigatorMovePreviousItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMovePreviousItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMovePreviousItem.Text = "Mover anterior";
     //
     // bindingNavigatorSeparator
     //
     this.bindingNavigatorSeparator.Name = "bindingNavigatorSeparator";
     this.bindingNavigatorSeparator.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorPositionItem
     //
     this.bindingNavigatorPositionItem.AccessibleName = "Posición";
     this.bindingNavigatorPositionItem.AutoSize = false;
     this.bindingNavigatorPositionItem.Name = "bindingNavigatorPositionItem";
     this.bindingNavigatorPositionItem.Size = new System.Drawing.Size(50, 23);
     this.bindingNavigatorPositionItem.Text = "0";
     this.bindingNavigatorPositionItem.ToolTipText = "Posición actual";
     //
     // bindingNavigatorCountItem
     //
     this.bindingNavigatorCountItem.Name = "bindingNavigatorCountItem";
     this.bindingNavigatorCountItem.Size = new System.Drawing.Size(37, 22);
     this.bindingNavigatorCountItem.Text = "de {0}";
     this.bindingNavigatorCountItem.ToolTipText = "Número total de elementos";
     //
     // bindingNavigatorSeparator1
     //
     this.bindingNavigatorSeparator1.Name = "bindingNavigatorSeparator1";
     this.bindingNavigatorSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorMoveNextItem
     //
     this.bindingNavigatorMoveNextItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveNextItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveNextItem.Image")));
     this.bindingNavigatorMoveNextItem.Name = "bindingNavigatorMoveNextItem";
     this.bindingNavigatorMoveNextItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveNextItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveNextItem.Text = "Mover siguiente";
     //
     // bindingNavigatorMoveLastItem
     //
     this.bindingNavigatorMoveLastItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveLastItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveLastItem.Image")));
     this.bindingNavigatorMoveLastItem.Name = "bindingNavigatorMoveLastItem";
     this.bindingNavigatorMoveLastItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveLastItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveLastItem.Text = "Mover último";
     //
     // bindingNavigatorSeparator2
     //
     this.bindingNavigatorSeparator2.Name = "bindingNavigatorSeparator2";
     this.bindingNavigatorSeparator2.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorAddNewItem
     //
     this.bindingNavigatorAddNewItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorAddNewItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorAddNewItem.Image")));
     this.bindingNavigatorAddNewItem.Name = "bindingNavigatorAddNewItem";
     this.bindingNavigatorAddNewItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorAddNewItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorAddNewItem.Text = "Agregar nuevo";
     //
     // toolStripButton1
     //
     this.toolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton1.Image = global::ErpGestion.Properties.Resources.if_floppy_285657;
     this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton1.Name = "toolStripButton1";
     this.toolStripButton1.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton1.Text = "toolStripButton1";
     this.toolStripButton1.Click += new System.EventHandler(this.toolStripButton1_Click);
     //
     // bindingNavigatorDeleteItem
     //
     this.bindingNavigatorDeleteItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorDeleteItem.Image = global::ErpGestion.Properties.Resources.if_minus_16459951;
     this.bindingNavigatorDeleteItem.Name = "bindingNavigatorDeleteItem";
     this.bindingNavigatorDeleteItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorDeleteItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorDeleteItem.Text = "Eliminar";
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripTextBoxFiltroLocalidad
     //
     this.toolStripTextBoxFiltroLocalidad.Name = "toolStripTextBoxFiltroLocalidad";
     this.toolStripTextBoxFiltroLocalidad.Size = new System.Drawing.Size(100, 25);
     this.toolStripTextBoxFiltroLocalidad.TextChanged += new System.EventHandler(this.toolStripTextBoxFiltroLocalidad_TextChanged);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorProvincia
     //
     this.bindingNavigatorProvincia.AddNewItem = this.bindingNavigatorAddNewItem;
     this.bindingNavigatorProvincia.BindingSource = this.bindingSourceProvincias;
     this.bindingNavigatorProvincia.CountItem = this.bindingNavigatorCountItem;
     this.bindingNavigatorProvincia.DeleteItem = this.bindingNavigatorDeleteItem;
     this.bindingNavigatorProvincia.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.bindingNavigatorProvincia.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.bindingNavigatorMoveFirstItem,
     this.bindingNavigatorMovePreviousItem,
     this.bindingNavigatorSeparator,
     this.bindingNavigatorPositionItem,
     this.bindingNavigatorCountItem,
     this.bindingNavigatorSeparator1,
     this.bindingNavigatorMoveNextItem,
     this.bindingNavigatorMoveLastItem,
     this.bindingNavigatorSeparator2,
     this.bindingNavigatorAddNewItem,
     this.toolStripButton1,
     this.bindingNavigatorDeleteItem,
     this.toolStripSeparator1,
     this.toolStripTextBoxFiltroLocalidad,
     this.toolStripSeparator2});
     this.bindingNavigatorProvincia.Location = new System.Drawing.Point(20, 248);
     this.bindingNavigatorProvincia.MoveFirstItem = this.bindingNavigatorMoveFirstItem;
     this.bindingNavigatorProvincia.MoveLastItem = this.bindingNavigatorMoveLastItem;
     this.bindingNavigatorProvincia.MoveNextItem = this.bindingNavigatorMoveNextItem;
     this.bindingNavigatorProvincia.MovePreviousItem = this.bindingNavigatorMovePreviousItem;
     this.bindingNavigatorProvincia.Name = "bindingNavigatorProvincia";
     this.bindingNavigatorProvincia.PositionItem = this.bindingNavigatorPositionItem;
     this.bindingNavigatorProvincia.Size = new System.Drawing.Size(467, 25);
     this.bindingNavigatorProvincia.TabIndex = 7;
     this.bindingNavigatorProvincia.Text = "bindingNavigator1";
     //
     // metroTextBoxProvincia
     //
     //
     //
     //
     this.metroTextBoxProvincia.CustomButton.Image = null;
     this.metroTextBoxProvincia.CustomButton.Location = new System.Drawing.Point(189, 1);
     this.metroTextBoxProvincia.CustomButton.Name = "";
     this.metroTextBoxProvincia.CustomButton.Size = new System.Drawing.Size(21, 21);
     this.metroTextBoxProvincia.CustomButton.Style = MetroFramework.MetroColorStyle.Blue;
     this.metroTextBoxProvincia.CustomButton.TabIndex = 1;
     this.metroTextBoxProvincia.CustomButton.Theme = MetroFramework.MetroThemeStyle.Light;
     this.metroTextBoxProvincia.CustomButton.UseSelectable = true;
     this.metroTextBoxProvincia.CustomButton.Visible = false;
     this.metroTextBoxProvincia.Lines = new string[0];
     this.metroTextBoxProvincia.Location = new System.Drawing.Point(23, 82);
     this.metroTextBoxProvincia.MaxLength = 32767;
     this.metroTextBoxProvincia.Name = "metroTextBoxProvincia";
     this.metroTextBoxProvincia.PasswordChar = '\0';
     this.metroTextBoxProvincia.ScrollBars = System.Windows.Forms.ScrollBars.None;
     this.metroTextBoxProvincia.SelectedText = "";
     this.metroTextBoxProvincia.SelectionLength = 0;
     this.metroTextBoxProvincia.SelectionStart = 0;
     this.metroTextBoxProvincia.ShortcutsEnabled = true;
     this.metroTextBoxProvincia.Size = new System.Drawing.Size(211, 23);
     this.metroTextBoxProvincia.TabIndex = 5;
     this.metroTextBoxProvincia.UseSelectable = true;
     this.metroTextBoxProvincia.WaterMarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109)))));
     this.metroTextBoxProvincia.WaterMarkFont = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Pixel);
     //
     // ProvinciaFrm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(507, 293);
     this.Controls.Add(this.bindingNavigatorProvincia);
     this.Controls.Add(this.metroLabel1);
     this.Controls.Add(this.metroTextBoxProvincia);
     this.Name = "ProvinciaFrm";
     this.Style = MetroFramework.MetroColorStyle.Orange;
     this.Text = "Provincias";
     this.Load += new System.EventHandler(this.ProvinciaFrm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.bindingSourceProvincias)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingNavigatorProvincia)).EndInit();
     this.bindingNavigatorProvincia.ResumeLayout(false);
     this.bindingNavigatorProvincia.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <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(Form1));
     menuStrip1                               = new System.Windows.Forms.MenuStrip();
     fileToolStripMenuItem                    = new System.Windows.Forms.ToolStripMenuItem();
     openToolStripMenuItem                    = new System.Windows.Forms.ToolStripMenuItem();
     closeToolStripMenuItem                   = new System.Windows.Forms.ToolStripMenuItem();
     toolStripSeparator1                      = new System.Windows.Forms.ToolStripSeparator();
     exitToolStripMenuItem                    = new System.Windows.Forms.ToolStripMenuItem();
     editToolStripMenuItem                    = new System.Windows.Forms.ToolStripMenuItem();
     memoryToolStripMenuItem                  = new System.Windows.Forms.ToolStripMenuItem();
     mapsAndPackageToolStripMenuItem          = new System.Windows.Forms.ToolStripMenuItem();
     generatePluginsToolStripMenuItem         = new System.Windows.Forms.ToolStripMenuItem();
     toolStripSeparator6                      = new System.Windows.Forms.ToolStripSeparator();
     patchesToolStripMenuItem                 = new System.Windows.Forms.ToolStripMenuItem();
     createPatchToolStripMenuItem             = new System.Windows.Forms.ToolStripMenuItem();
     applyPatchToolStripMenuItem              = new System.Windows.Forms.ToolStripMenuItem();
     pokePatchToolStripMenuItem               = new System.Windows.Forms.ToolStripMenuItem();
     xDKToolStripMenuItem                     = new System.Windows.Forms.ToolStripMenuItem();
     screenshotToolStripMenuItem              = new System.Windows.Forms.ToolStripMenuItem();
     toolStripSeparator4                      = new System.Windows.Forms.ToolStripSeparator();
     preBetaToolStripMenuItem                 = new System.Windows.Forms.ToolStripMenuItem();
     loadMapToolStripMenuItem                 = new System.Windows.Forms.ToolStripMenuItem();
     swordslayerToolStripMenuItem             = new System.Windows.Forms.ToolStripMenuItem();
     settlementToolStripMenuItem              = new System.Windows.Forms.ToolStripMenuItem();
     boneyardToolStripMenuItem                = new System.Windows.Forms.ToolStripMenuItem();
     ff10prototypeToolStripMenuItem           = new System.Windows.Forms.ToolStripMenuItem();
     toolStripSeparator3                      = new System.Windows.Forms.ToolStripSeparator();
     publicBetaToolStripMenuItem              = new System.Windows.Forms.ToolStripMenuItem();
     loadBetaMapToolStripMenuItem             = new System.Windows.Forms.ToolStripMenuItem();
     swordslayerToolStripMenuItem1            = new System.Windows.Forms.ToolStripMenuItem();
     settlementToolStripMenuItem1             = new System.Windows.Forms.ToolStripMenuItem();
     boneyardToolStripMenuItem1               = new System.Windows.Forms.ToolStripMenuItem();
     ff10prototypeToolStripMenuItem1          = new System.Windows.Forms.ToolStripMenuItem();
     printCamDebugInfoToolStripMenuItem       = new System.Windows.Forms.ToolStripMenuItem();
     toolStripSeparator5                      = new System.Windows.Forms.ToolStripSeparator();
     finalToolStripMenuItem                   = new System.Windows.Forms.ToolStripMenuItem();
     slidersToolStripMenuItem                 = new System.Windows.Forms.ToolStripMenuItem();
     sceneryToolStripMenuItem                 = new System.Windows.Forms.ToolStripMenuItem();
     vehiclesToolStripMenuItem                = new System.Windows.Forms.ToolStripMenuItem();
     hudToolStripMenuItem                     = new System.Windows.Forms.ToolStripMenuItem();
     toolStripSeparator8                      = new System.Windows.Forms.ToolStripSeparator();
     toolStripSeparator7                      = new System.Windows.Forms.ToolStripSeparator();
     gamertagToolStripMenuItem                = new System.Windows.Forms.ToolStripMenuItem();
     toolStripTextBoxGamertagPoke             = new System.Windows.Forms.ToolStripTextBox();
     pokeToolStripMenuItem                    = new System.Windows.Forms.ToolStripMenuItem();
     openTrayToolStripMenuItem                = new System.Windows.Forms.ToolStripMenuItem();
     closeTrayToolStripMenuItem               = new System.Windows.Forms.ToolStripMenuItem();
     consoleIDToolStripMenuItem               = new System.Windows.Forms.ToolStripMenuItem();
     toolStripSeparator2                      = new System.Windows.Forms.ToolStripSeparator();
     settingsToolStripMenuItem                = new System.Windows.Forms.ToolStripMenuItem();
     viewToolStripMenuItem                    = new System.Windows.Forms.ToolStripMenuItem();
     tagComparerToolStripMenuItem             = new System.Windows.Forms.ToolStripMenuItem();
     finderToolStripMenuItem                  = new System.Windows.Forms.ToolStripMenuItem();
     tagListMergerToolStripMenuItem           = new System.Windows.Forms.ToolStripMenuItem();
     advancedXeXPokerToolStripMenuItem1       = new System.Windows.Forms.ToolStripMenuItem();
     playerInformationToolStripMenuItem       = new System.Windows.Forms.ToolStripMenuItem();
     anniversaryMemoryOffsetToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     windowToolStripMenuItem                  = new System.Windows.Forms.ToolStripMenuItem();
     tileVerticallyToolStripMenuItem          = new System.Windows.Forms.ToolStripMenuItem();
     tileHorizontallyToolStripMenuItem        = new System.Windows.Forms.ToolStripMenuItem();
     cascadeToolStripMenuItem                 = new System.Windows.Forms.ToolStripMenuItem();
     helpToolStripMenuItem                    = new System.Windows.Forms.ToolStripMenuItem();
     buildLogsToolStripMenuItem               = new System.Windows.Forms.ToolStripMenuItem();
     aboutToolStripMenuItem                   = new System.Windows.Forms.ToolStripMenuItem();
     menuStrip1.SuspendLayout();
     SuspendLayout();
     //
     // menuStrip1
     //
     menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         fileToolStripMenuItem,
         editToolStripMenuItem,
         viewToolStripMenuItem,
         windowToolStripMenuItem,
         helpToolStripMenuItem
     });
     menuStrip1.Location          = new System.Drawing.Point(0, 0);
     menuStrip1.MdiWindowListItem = windowToolStripMenuItem;
     menuStrip1.Name     = "menuStrip1";
     menuStrip1.Size     = new System.Drawing.Size(831, 24);
     menuStrip1.TabIndex = 1;
     menuStrip1.Text     = "menuStrip1";
     //
     // fileToolStripMenuItem
     //
     fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         openToolStripMenuItem,
         closeToolStripMenuItem,
         toolStripSeparator1,
         exitToolStripMenuItem
     });
     fileToolStripMenuItem.Name = "fileToolStripMenuItem";
     fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
     fileToolStripMenuItem.Text = "File";
     //
     // openToolStripMenuItem
     //
     openToolStripMenuItem.Name         = "openToolStripMenuItem";
     openToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O)));
     openToolStripMenuItem.Size         = new System.Drawing.Size(146, 22);
     openToolStripMenuItem.Text         = "Open";
     openToolStripMenuItem.Click       += new System.EventHandler(openToolStripMenuItem_Click);
     //
     // closeToolStripMenuItem
     //
     closeToolStripMenuItem.Name   = "closeToolStripMenuItem";
     closeToolStripMenuItem.Size   = new System.Drawing.Size(146, 22);
     closeToolStripMenuItem.Text   = "Close";
     closeToolStripMenuItem.Click += new System.EventHandler(closeToolStripMenuItem_Click);
     //
     // toolStripSeparator1
     //
     toolStripSeparator1.Name = "toolStripSeparator1";
     toolStripSeparator1.Size = new System.Drawing.Size(143, 6);
     //
     // exitToolStripMenuItem
     //
     exitToolStripMenuItem.Name         = "exitToolStripMenuItem";
     exitToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.E)));
     exitToolStripMenuItem.Size         = new System.Drawing.Size(146, 22);
     exitToolStripMenuItem.Text         = "Exit";
     exitToolStripMenuItem.Click       += new System.EventHandler(exitToolStripMenuItem_Click);
     //
     // editToolStripMenuItem
     //
     editToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         memoryToolStripMenuItem,
         mapsAndPackageToolStripMenuItem,
         xDKToolStripMenuItem,
         toolStripSeparator2,
         settingsToolStripMenuItem
     });
     editToolStripMenuItem.Name = "editToolStripMenuItem";
     editToolStripMenuItem.Size = new System.Drawing.Size(39, 20);
     editToolStripMenuItem.Text = "Edit";
     //
     // memoryToolStripMenuItem
     //
     memoryToolStripMenuItem.Name    = "memoryToolStripMenuItem";
     memoryToolStripMenuItem.Size    = new System.Drawing.Size(173, 22);
     memoryToolStripMenuItem.Text    = "Memory Writer";
     memoryToolStripMenuItem.Visible = false;
     memoryToolStripMenuItem.Click  += new System.EventHandler(memoryToolStripMenuItem_Click);
     //
     // mapsAndPackageToolStripMenuItem
     //
     mapsAndPackageToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         generatePluginsToolStripMenuItem,
         toolStripSeparator6,
         patchesToolStripMenuItem
     });
     mapsAndPackageToolStripMenuItem.Name = "mapsAndPackageToolStripMenuItem";
     mapsAndPackageToolStripMenuItem.Size = new System.Drawing.Size(173, 22);
     mapsAndPackageToolStripMenuItem.Text = "Maps and Package";
     //
     // generatePluginsToolStripMenuItem
     //
     generatePluginsToolStripMenuItem.Name   = "generatePluginsToolStripMenuItem";
     generatePluginsToolStripMenuItem.Size   = new System.Drawing.Size(163, 22);
     generatePluginsToolStripMenuItem.Text   = "Generate Plugins";
     generatePluginsToolStripMenuItem.Click += new System.EventHandler(generatePluginsToolStripMenuItem_Click);
     //
     // toolStripSeparator6
     //
     toolStripSeparator6.Name = "toolStripSeparator6";
     toolStripSeparator6.Size = new System.Drawing.Size(160, 6);
     //
     // patchesToolStripMenuItem
     //
     patchesToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         createPatchToolStripMenuItem,
         applyPatchToolStripMenuItem,
         pokePatchToolStripMenuItem
     });
     patchesToolStripMenuItem.Name = "patchesToolStripMenuItem";
     patchesToolStripMenuItem.Size = new System.Drawing.Size(163, 22);
     patchesToolStripMenuItem.Text = "Patches";
     //
     // createPatchToolStripMenuItem
     //
     createPatchToolStripMenuItem.Name   = "createPatchToolStripMenuItem";
     createPatchToolStripMenuItem.Size   = new System.Drawing.Size(141, 22);
     createPatchToolStripMenuItem.Text   = "Create Patch";
     createPatchToolStripMenuItem.Click += new System.EventHandler(createPatchToolStripMenuItem_Click);
     //
     // applyPatchToolStripMenuItem
     //
     applyPatchToolStripMenuItem.Name   = "applyPatchToolStripMenuItem";
     applyPatchToolStripMenuItem.Size   = new System.Drawing.Size(141, 22);
     applyPatchToolStripMenuItem.Text   = "Apply Patch";
     applyPatchToolStripMenuItem.Click += new System.EventHandler(applyPatchToolStripMenuItem_Click);
     //
     // pokePatchToolStripMenuItem
     //
     pokePatchToolStripMenuItem.Name   = "pokePatchToolStripMenuItem";
     pokePatchToolStripMenuItem.Size   = new System.Drawing.Size(141, 22);
     pokePatchToolStripMenuItem.Text   = "Poke Patch";
     pokePatchToolStripMenuItem.Click += new System.EventHandler(pokePatchToolStripMenuItem_Click);
     //
     // xDKToolStripMenuItem
     //
     xDKToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         screenshotToolStripMenuItem,
         toolStripSeparator4,
         preBetaToolStripMenuItem,
         toolStripSeparator3,
         publicBetaToolStripMenuItem,
         toolStripSeparator5,
         finalToolStripMenuItem,
         toolStripSeparator7,
         gamertagToolStripMenuItem,
         openTrayToolStripMenuItem,
         closeTrayToolStripMenuItem,
         consoleIDToolStripMenuItem
     });
     xDKToolStripMenuItem.Name = "xDKToolStripMenuItem";
     xDKToolStripMenuItem.Size = new System.Drawing.Size(173, 22);
     xDKToolStripMenuItem.Text = "Xbox Poking";
     //
     // screenshotToolStripMenuItem
     //
     screenshotToolStripMenuItem.Name         = "screenshotToolStripMenuItem";
     screenshotToolStripMenuItem.ShortcutKeys = System.Windows.Forms.Keys.F1;
     screenshotToolStripMenuItem.Size         = new System.Drawing.Size(151, 22);
     screenshotToolStripMenuItem.Text         = "Screenshot";
     screenshotToolStripMenuItem.Click       += new System.EventHandler(screenshotToolStripMenuItem_Click);
     //
     // toolStripSeparator4
     //
     toolStripSeparator4.Name = "toolStripSeparator4";
     toolStripSeparator4.Size = new System.Drawing.Size(148, 6);
     //
     // preBetaToolStripMenuItem
     //
     preBetaToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         loadMapToolStripMenuItem
     });
     preBetaToolStripMenuItem.Name = "preBetaToolStripMenuItem";
     preBetaToolStripMenuItem.Size = new System.Drawing.Size(151, 22);
     preBetaToolStripMenuItem.Text = "Pre-Beta";
     //
     // loadMapToolStripMenuItem
     //
     loadMapToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         swordslayerToolStripMenuItem,
         settlementToolStripMenuItem,
         boneyardToolStripMenuItem,
         ff10prototypeToolStripMenuItem
     });
     loadMapToolStripMenuItem.Name = "loadMapToolStripMenuItem";
     loadMapToolStripMenuItem.Size = new System.Drawing.Size(127, 22);
     loadMapToolStripMenuItem.Text = "Load Map";
     //
     // swordslayerToolStripMenuItem
     //
     swordslayerToolStripMenuItem.Name         = "swordslayerToolStripMenuItem";
     swordslayerToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.D1)));
     swordslayerToolStripMenuItem.Size         = new System.Drawing.Size(198, 22);
     swordslayerToolStripMenuItem.Text         = "20_sword_slayer";
     swordslayerToolStripMenuItem.Click       += new System.EventHandler(swordslayerToolStripMenuItem_Click);
     //
     // settlementToolStripMenuItem
     //
     settlementToolStripMenuItem.Name         = "settlementToolStripMenuItem";
     settlementToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.D2)));
     settlementToolStripMenuItem.Size         = new System.Drawing.Size(198, 22);
     settlementToolStripMenuItem.Text         = "30_settlement";
     settlementToolStripMenuItem.Click       += new System.EventHandler(settlementToolStripMenuItem_Click);
     //
     // boneyardToolStripMenuItem
     //
     boneyardToolStripMenuItem.Name         = "boneyardToolStripMenuItem";
     boneyardToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.D3)));
     boneyardToolStripMenuItem.Size         = new System.Drawing.Size(198, 22);
     boneyardToolStripMenuItem.Text         = "70_boneyard";
     boneyardToolStripMenuItem.Click       += new System.EventHandler(boneyardToolStripMenuItem_Click);
     //
     // ff10prototypeToolStripMenuItem
     //
     ff10prototypeToolStripMenuItem.Name         = "ff10prototypeToolStripMenuItem";
     ff10prototypeToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.D4)));
     ff10prototypeToolStripMenuItem.Size         = new System.Drawing.Size(198, 22);
     ff10prototypeToolStripMenuItem.Text         = "ff10_prototype";
     ff10prototypeToolStripMenuItem.Click       += new System.EventHandler(ff10prototypeToolStripMenuItem_Click);
     //
     // toolStripSeparator3
     //
     toolStripSeparator3.Name = "toolStripSeparator3";
     toolStripSeparator3.Size = new System.Drawing.Size(148, 6);
     //
     // publicBetaToolStripMenuItem
     //
     publicBetaToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         loadBetaMapToolStripMenuItem,
         printCamDebugInfoToolStripMenuItem
     });
     publicBetaToolStripMenuItem.Name = "publicBetaToolStripMenuItem";
     publicBetaToolStripMenuItem.Size = new System.Drawing.Size(151, 22);
     publicBetaToolStripMenuItem.Text = "Public Beta";
     //
     // loadBetaMapToolStripMenuItem
     //
     loadBetaMapToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         swordslayerToolStripMenuItem1,
         settlementToolStripMenuItem1,
         boneyardToolStripMenuItem1,
         ff10prototypeToolStripMenuItem1
     });
     loadBetaMapToolStripMenuItem.Name = "loadBetaMapToolStripMenuItem";
     loadBetaMapToolStripMenuItem.Size = new System.Drawing.Size(263, 22);
     loadBetaMapToolStripMenuItem.Text = "Load Map";
     //
     // swordslayerToolStripMenuItem1
     //
     swordslayerToolStripMenuItem1.Name         = "swordslayerToolStripMenuItem1";
     swordslayerToolStripMenuItem1.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift)
                                                                                | System.Windows.Forms.Keys.D1)));
     swordslayerToolStripMenuItem1.Size   = new System.Drawing.Size(230, 22);
     swordslayerToolStripMenuItem1.Text   = "20_sword_slayer";
     swordslayerToolStripMenuItem1.Click += new System.EventHandler(swordslayerToolStripMenuItem1_Click);
     //
     // settlementToolStripMenuItem1
     //
     settlementToolStripMenuItem1.Name         = "settlementToolStripMenuItem1";
     settlementToolStripMenuItem1.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift)
                                                                               | System.Windows.Forms.Keys.D2)));
     settlementToolStripMenuItem1.Size   = new System.Drawing.Size(230, 22);
     settlementToolStripMenuItem1.Text   = "30_settlement";
     settlementToolStripMenuItem1.Click += new System.EventHandler(settlementToolStripMenuItem1_Click);
     //
     // boneyardToolStripMenuItem1
     //
     boneyardToolStripMenuItem1.Name         = "boneyardToolStripMenuItem1";
     boneyardToolStripMenuItem1.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift)
                                                                             | System.Windows.Forms.Keys.D3)));
     boneyardToolStripMenuItem1.Size   = new System.Drawing.Size(230, 22);
     boneyardToolStripMenuItem1.Text   = "70_boneyard";
     boneyardToolStripMenuItem1.Click += new System.EventHandler(boneyardToolStripMenuItem1_Click);
     //
     // ff10prototypeToolStripMenuItem1
     //
     ff10prototypeToolStripMenuItem1.Name         = "ff10prototypeToolStripMenuItem1";
     ff10prototypeToolStripMenuItem1.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift)
                                                                                  | System.Windows.Forms.Keys.D4)));
     ff10prototypeToolStripMenuItem1.Size   = new System.Drawing.Size(230, 22);
     ff10prototypeToolStripMenuItem1.Text   = "ff10_prototype";
     ff10prototypeToolStripMenuItem1.Click += new System.EventHandler(ff10prototypeToolStripMenuItem1_Click);
     //
     // printCamDebugInfoToolStripMenuItem
     //
     printCamDebugInfoToolStripMenuItem.Name         = "printCamDebugInfoToolStripMenuItem";
     printCamDebugInfoToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift)
                                                                                     | System.Windows.Forms.Keys.C)));
     printCamDebugInfoToolStripMenuItem.Size   = new System.Drawing.Size(263, 22);
     printCamDebugInfoToolStripMenuItem.Text   = "Print Cam Debug Info";
     printCamDebugInfoToolStripMenuItem.Click += new System.EventHandler(printCamDebugInfoToolStripMenuItem_Click);
     //
     // toolStripSeparator5
     //
     toolStripSeparator5.Name = "toolStripSeparator5";
     toolStripSeparator5.Size = new System.Drawing.Size(148, 6);
     //
     // finalToolStripMenuItem
     //
     finalToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         slidersToolStripMenuItem,
         toolStripSeparator8
     });
     finalToolStripMenuItem.Name = "finalToolStripMenuItem";
     finalToolStripMenuItem.Size = new System.Drawing.Size(151, 22);
     finalToolStripMenuItem.Text = "Final";
     //
     // slidersToolStripMenuItem
     //
     slidersToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         sceneryToolStripMenuItem,
         vehiclesToolStripMenuItem,
         hudToolStripMenuItem
     });
     slidersToolStripMenuItem.Name = "slidersToolStripMenuItem";
     slidersToolStripMenuItem.Size = new System.Drawing.Size(108, 22);
     slidersToolStripMenuItem.Text = "Sliders";
     //
     // sceneryToolStripMenuItem
     //
     sceneryToolStripMenuItem.Name   = "sceneryToolStripMenuItem";
     sceneryToolStripMenuItem.Size   = new System.Drawing.Size(116, 22);
     sceneryToolStripMenuItem.Text   = "Scenery";
     sceneryToolStripMenuItem.Click += new System.EventHandler(sceneryToolStripMenuItem_Click);
     //
     // vehiclesToolStripMenuItem
     //
     vehiclesToolStripMenuItem.Name   = "vehiclesToolStripMenuItem";
     vehiclesToolStripMenuItem.Size   = new System.Drawing.Size(116, 22);
     vehiclesToolStripMenuItem.Text   = "Vehicles";
     vehiclesToolStripMenuItem.Click += new System.EventHandler(vehiclesToolStripMenuItem_Click);
     //
     // hudToolStripMenuItem
     //
     hudToolStripMenuItem.Name   = "hudToolStripMenuItem";
     hudToolStripMenuItem.Size   = new System.Drawing.Size(116, 22);
     hudToolStripMenuItem.Text   = "Hud";
     hudToolStripMenuItem.Click += new System.EventHandler(hudToolStripMenuItem_Click);
     //
     // toolStripSeparator8
     //
     toolStripSeparator8.Name = "toolStripSeparator8";
     toolStripSeparator8.Size = new System.Drawing.Size(105, 6);
     //
     // toolStripSeparator7
     //
     toolStripSeparator7.Name    = "toolStripSeparator7";
     toolStripSeparator7.Size    = new System.Drawing.Size(148, 6);
     toolStripSeparator7.Visible = false;
     //
     // gamertagToolStripMenuItem
     //
     gamertagToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         toolStripTextBoxGamertagPoke,
         pokeToolStripMenuItem
     });
     gamertagToolStripMenuItem.Name    = "gamertagToolStripMenuItem";
     gamertagToolStripMenuItem.Size    = new System.Drawing.Size(151, 22);
     gamertagToolStripMenuItem.Text    = "Gamertag";
     gamertagToolStripMenuItem.Visible = false;
     //
     // toolStripTextBoxGamertagPoke
     //
     toolStripTextBoxGamertagPoke.BackColor   = System.Drawing.SystemColors.ScrollBar;
     toolStripTextBoxGamertagPoke.Name        = "toolStripTextBoxGamertagPoke";
     toolStripTextBoxGamertagPoke.RightToLeft = System.Windows.Forms.RightToLeft.No;
     toolStripTextBoxGamertagPoke.Size        = new System.Drawing.Size(100, 23);
     //
     // pokeToolStripMenuItem
     //
     pokeToolStripMenuItem.Name   = "pokeToolStripMenuItem";
     pokeToolStripMenuItem.Size   = new System.Drawing.Size(160, 22);
     pokeToolStripMenuItem.Text   = "Poke";
     pokeToolStripMenuItem.Click += new System.EventHandler(pokeToolStripMenuItem_Click);
     //
     // openTrayToolStripMenuItem
     //
     openTrayToolStripMenuItem.Name    = "openTrayToolStripMenuItem";
     openTrayToolStripMenuItem.Size    = new System.Drawing.Size(151, 22);
     openTrayToolStripMenuItem.Text    = "Open Tray";
     openTrayToolStripMenuItem.Visible = false;
     openTrayToolStripMenuItem.Click  += new System.EventHandler(openTrayToolStripMenuItem_Click);
     //
     // closeTrayToolStripMenuItem
     //
     closeTrayToolStripMenuItem.Name    = "closeTrayToolStripMenuItem";
     closeTrayToolStripMenuItem.Size    = new System.Drawing.Size(151, 22);
     closeTrayToolStripMenuItem.Text    = "Close Tray";
     closeTrayToolStripMenuItem.Visible = false;
     closeTrayToolStripMenuItem.Click  += new System.EventHandler(closeTrayToolStripMenuItem_Click);
     //
     // consoleIDToolStripMenuItem
     //
     consoleIDToolStripMenuItem.Name    = "consoleIDToolStripMenuItem";
     consoleIDToolStripMenuItem.Size    = new System.Drawing.Size(151, 22);
     consoleIDToolStripMenuItem.Text    = "Console ID";
     consoleIDToolStripMenuItem.Visible = false;
     consoleIDToolStripMenuItem.Click  += new System.EventHandler(consoleIDToolStripMenuItem_Click);
     //
     // toolStripSeparator2
     //
     toolStripSeparator2.Name = "toolStripSeparator2";
     toolStripSeparator2.Size = new System.Drawing.Size(170, 6);
     //
     // settingsToolStripMenuItem
     //
     settingsToolStripMenuItem.Name         = "settingsToolStripMenuItem";
     settingsToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S)));
     settingsToolStripMenuItem.Size         = new System.Drawing.Size(173, 22);
     settingsToolStripMenuItem.Text         = "Settings";
     settingsToolStripMenuItem.Click       += new System.EventHandler(settingsToolStripMenuItem_Click);
     //
     // viewToolStripMenuItem
     //
     viewToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         tagComparerToolStripMenuItem,
         finderToolStripMenuItem,
         tagListMergerToolStripMenuItem,
         advancedXeXPokerToolStripMenuItem1,
         playerInformationToolStripMenuItem,
         anniversaryMemoryOffsetToolStripMenuItem
     });
     viewToolStripMenuItem.Name = "viewToolStripMenuItem";
     viewToolStripMenuItem.Size = new System.Drawing.Size(47, 20);
     viewToolStripMenuItem.Text = "Tools";
     //
     // tagComparerToolStripMenuItem
     //
     tagComparerToolStripMenuItem.Name   = "tagComparerToolStripMenuItem";
     tagComparerToolStripMenuItem.Size   = new System.Drawing.Size(219, 22);
     tagComparerToolStripMenuItem.Text   = "Tag Comparer";
     tagComparerToolStripMenuItem.Click += new System.EventHandler(tagComparerToolStripMenuItem_Click);
     //
     // finderToolStripMenuItem
     //
     finderToolStripMenuItem.Name    = "finderToolStripMenuItem";
     finderToolStripMenuItem.Size    = new System.Drawing.Size(219, 22);
     finderToolStripMenuItem.Text    = "Finder";
     finderToolStripMenuItem.Visible = false;
     finderToolStripMenuItem.Click  += new System.EventHandler(finderToolStripMenuItem_Click);
     //
     // tagListMergerToolStripMenuItem
     //
     tagListMergerToolStripMenuItem.Name   = "tagListMergerToolStripMenuItem";
     tagListMergerToolStripMenuItem.Size   = new System.Drawing.Size(219, 22);
     tagListMergerToolStripMenuItem.Text   = "TagList Merger";
     tagListMergerToolStripMenuItem.Click += new System.EventHandler(tagListMergerToolStripMenuItem_Click);
     //
     // advancedXeXPokerToolStripMenuItem1
     //
     advancedXeXPokerToolStripMenuItem1.Name   = "advancedXeXPokerToolStripMenuItem1";
     advancedXeXPokerToolStripMenuItem1.Size   = new System.Drawing.Size(219, 22);
     advancedXeXPokerToolStripMenuItem1.Text   = "Advanced Poker";
     advancedXeXPokerToolStripMenuItem1.Click += new System.EventHandler(advancedXeXPokerToolStripMenuItem1_Click);
     //
     // playerInformationToolStripMenuItem
     //
     playerInformationToolStripMenuItem.Name   = "playerInformationToolStripMenuItem";
     playerInformationToolStripMenuItem.Size   = new System.Drawing.Size(219, 22);
     playerInformationToolStripMenuItem.Text   = "Player Information";
     playerInformationToolStripMenuItem.Click += new System.EventHandler(playerInformationToolStripMenuItem_Click);
     //
     // anniversaryMemoryOffsetToolStripMenuItem
     //
     anniversaryMemoryOffsetToolStripMenuItem.Name   = "anniversaryMemoryOffsetToolStripMenuItem";
     anniversaryMemoryOffsetToolStripMenuItem.Size   = new System.Drawing.Size(219, 22);
     anniversaryMemoryOffsetToolStripMenuItem.Text   = "Anniversary Memory Offset";
     anniversaryMemoryOffsetToolStripMenuItem.Click += new System.EventHandler(anniversaryMemoryOffsetToolStripMenuItem_Click);
     //
     // windowToolStripMenuItem
     //
     windowToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         tileVerticallyToolStripMenuItem,
         tileHorizontallyToolStripMenuItem,
         cascadeToolStripMenuItem
     });
     windowToolStripMenuItem.Name = "windowToolStripMenuItem";
     windowToolStripMenuItem.Size = new System.Drawing.Size(63, 20);
     windowToolStripMenuItem.Text = "Window";
     //
     // tileVerticallyToolStripMenuItem
     //
     tileVerticallyToolStripMenuItem.Name   = "tileVerticallyToolStripMenuItem";
     tileVerticallyToolStripMenuItem.Size   = new System.Drawing.Size(160, 22);
     tileVerticallyToolStripMenuItem.Text   = "Tile Vertically";
     tileVerticallyToolStripMenuItem.Click += new System.EventHandler(tileVerticallyToolStripMenuItem_Click);
     //
     // tileHorizontallyToolStripMenuItem
     //
     tileHorizontallyToolStripMenuItem.Name   = "tileHorizontallyToolStripMenuItem";
     tileHorizontallyToolStripMenuItem.Size   = new System.Drawing.Size(160, 22);
     tileHorizontallyToolStripMenuItem.Text   = "Tile Horizontally";
     tileHorizontallyToolStripMenuItem.Click += new System.EventHandler(tileHorizontallyToolStripMenuItem_Click);
     //
     // cascadeToolStripMenuItem
     //
     cascadeToolStripMenuItem.Name   = "cascadeToolStripMenuItem";
     cascadeToolStripMenuItem.Size   = new System.Drawing.Size(160, 22);
     cascadeToolStripMenuItem.Text   = "Cascade";
     cascadeToolStripMenuItem.Click += new System.EventHandler(cascadeToolStripMenuItem_Click);
     //
     // helpToolStripMenuItem
     //
     helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         buildLogsToolStripMenuItem,
         aboutToolStripMenuItem
     });
     helpToolStripMenuItem.Name = "helpToolStripMenuItem";
     helpToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
     helpToolStripMenuItem.Text = "Help";
     //
     // buildLogsToolStripMenuItem
     //
     buildLogsToolStripMenuItem.Name         = "buildLogsToolStripMenuItem";
     buildLogsToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.L)));
     buildLogsToolStripMenuItem.Size         = new System.Drawing.Size(181, 22);
     buildLogsToolStripMenuItem.Text         = "Build Logs";
     buildLogsToolStripMenuItem.Click       += new System.EventHandler(buildLogsToolStripMenuItem_Click);
     //
     // aboutToolStripMenuItem
     //
     aboutToolStripMenuItem.Name         = "aboutToolStripMenuItem";
     aboutToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift)
                                                                         | System.Windows.Forms.Keys.A)));
     aboutToolStripMenuItem.Size   = new System.Drawing.Size(181, 22);
     aboutToolStripMenuItem.Text   = "About";
     aboutToolStripMenuItem.Click += new System.EventHandler(aboutToolStripMenuItem_Click);
     //
     // Form1
     //
     AutoScaleDimensions   = new System.Drawing.SizeF(6F, 13F);
     AutoScaleMode         = System.Windows.Forms.AutoScaleMode.Font;
     BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     ClientSize            = new System.Drawing.Size(831, 570);
     Controls.Add(menuStrip1);
     Icon           = ((System.Drawing.Icon)(resources.GetObject("$Icon")));
     IsMdiContainer = true;
     KeyPreview     = true;
     MainMenuStrip  = menuStrip1;
     Name           = "Form1";
     ShowIcon       = false;
     Text           = "Ascension";
     WindowState    = System.Windows.Forms.FormWindowState.Maximized;
     FormClosing   += new System.Windows.Forms.FormClosingEventHandler(Form1_FormClosing);
     FormClosed    += new System.Windows.Forms.FormClosedEventHandler(Form1_FormClosed);
     Load          += new System.EventHandler(Form1_Load);
     menuStrip1.ResumeLayout(false);
     menuStrip1.PerformLayout();
     ResumeLayout(false);
     PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.statusStrip1 = new System.Windows.Forms.StatusStrip();
     this.toolStripStatus_Themmoi = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatus_Ghilai = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel3 = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripDropDownButton1 = new System.Windows.Forms.ToolStripDropDownButton();
     this.thiêtLâpThôngSôToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.xoaChưngTưHiênThơiToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.huyĐơnĐătHangHiênThơiToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.saoChepChưngTưTưToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.saoChepChưngTưSangNhâpHangToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.saoChepChưngTưToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripStatusLabel4 = new System.Windows.Forms.ToolStripStatusLabel();
     this.panel = new System.Windows.Forms.Panel();
     this.lblTaikhoan = new System.Windows.Forms.Label();
     this.cbxMaTaiKhoan = new System.Windows.Forms.ComboBox();
     this.lblDiengiai = new System.Windows.Forms.Label();
     this.txtDiengiai = new System.Windows.Forms.TextBox();
     this.cbxKhoban = new System.Windows.Forms.ComboBox();
     this.lblKhohang = new System.Windows.Forms.Label();
     this.lblDinhdangngay = new System.Windows.Forms.LinkLabel();
     this.makNgaychungtu = new System.Windows.Forms.MaskedTextBox();
     this.lblNgaychungtu = new System.Windows.Forms.Label();
     this.txtSochungtu = new System.Windows.Forms.TextBox();
     this.lblSochungtu = new System.Windows.Forms.Label();
     this.grbDataGridview = new System.Windows.Forms.GroupBox();
     this.dgvInsertOrder = new System.Windows.Forms.DataGridView();
     this.palThem = new System.Windows.Forms.Panel();
     this.toolStrip_Insert = new System.Windows.Forms.ToolStrip();
     this.toolStrip_txtTracuu = new System.Windows.Forms.ToolStripTextBox();
     this.toolStrip_txtTenhang = new System.Windows.Forms.ToolStripTextBox();
     this.toolStrip_txtTonkho = new System.Windows.Forms.ToolStripTextBox();
     this.toolStrip_txtTonThucTe = new System.Windows.Forms.ToolStripTextBox();
     this.toolStrip_txtLyDo = new System.Windows.Forms.ToolStripTextBox();
     this.toolStrip_btnThem = new System.Windows.Forms.ToolStripButton();
     this.txtPhantrang = new System.Windows.Forms.TextBox();
     this.lblGiamgia_Tienhang = new System.Windows.Forms.Label();
     this.txtTienhang = new System.Windows.Forms.TextBox();
     this.palXem = new System.Windows.Forms.Panel();
     this.statusStrip1.SuspendLayout();
     this.panel.SuspendLayout();
     this.grbDataGridview.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgvInsertOrder)).BeginInit();
     this.palThem.SuspendLayout();
     this.toolStrip_Insert.SuspendLayout();
     this.palXem.SuspendLayout();
     this.SuspendLayout();
     //
     // statusStrip1
     //
     this.statusStrip1.BackColor = System.Drawing.Color.LightSteelBlue;
     this.statusStrip1.Font = new System.Drawing.Font("Times New Roman", 14F);
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripStatus_Themmoi,
     this.toolStripStatus_Ghilai,
     this.toolStripStatusLabel3,
     this.toolStripDropDownButton1,
     this.toolStripStatusLabel4});
     this.statusStrip1.Location = new System.Drawing.Point(0, 371);
     this.statusStrip1.Name = "statusStrip1";
     this.statusStrip1.Size = new System.Drawing.Size(758, 27);
     this.statusStrip1.TabIndex = 0;
     this.statusStrip1.Text = "statusStrip1";
     //
     // toolStripStatus_Themmoi
     //
     this.toolStripStatus_Themmoi.Image = global::GUI.Properties.Resources.Them;
     this.toolStripStatus_Themmoi.Name = "toolStripStatus_Themmoi";
     this.toolStripStatus_Themmoi.Size = new System.Drawing.Size(158, 22);
     this.toolStripStatus_Themmoi.Spring = true;
     this.toolStripStatus_Themmoi.Text = "Thêm";
     this.toolStripStatus_Themmoi.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.toolStripStatus_Themmoi.Click += new System.EventHandler(this.toolStripStatus_Themmoi_Click);
     this.toolStripStatus_Themmoi.MouseLeave += new System.EventHandler(this.MouseLeave);
     this.toolStripStatus_Themmoi.MouseMove += new System.Windows.Forms.MouseEventHandler(this.MouseMove);
     //
     // toolStripStatus_Ghilai
     //
     this.toolStripStatus_Ghilai.Image = global::GUI.Properties.Resources.Luu;
     this.toolStripStatus_Ghilai.Name = "toolStripStatus_Ghilai";
     this.toolStripStatus_Ghilai.Size = new System.Drawing.Size(158, 22);
     this.toolStripStatus_Ghilai.Spring = true;
     this.toolStripStatus_Ghilai.Text = "Sửa";
     this.toolStripStatus_Ghilai.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.toolStripStatus_Ghilai.Click += new System.EventHandler(this.toolStripStatus_Ghilai_Click);
     this.toolStripStatus_Ghilai.MouseLeave += new System.EventHandler(this.MouseLeave);
     this.toolStripStatus_Ghilai.MouseMove += new System.Windows.Forms.MouseEventHandler(this.MouseMove);
     //
     // toolStripStatusLabel3
     //
     this.toolStripStatusLabel3.Image = global::GUI.Properties.Resources.In;
     this.toolStripStatusLabel3.Name = "toolStripStatusLabel3";
     this.toolStripStatusLabel3.Size = new System.Drawing.Size(158, 22);
     this.toolStripStatusLabel3.Spring = true;
     this.toolStripStatusLabel3.Text = "In";
     this.toolStripStatusLabel3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.toolStripStatusLabel3.Click += new System.EventHandler(this.toolStripStatusLabel3_Click);
     this.toolStripStatusLabel3.MouseLeave += new System.EventHandler(this.MouseLeave);
     this.toolStripStatusLabel3.MouseMove += new System.Windows.Forms.MouseEventHandler(this.MouseMove);
     //
     // toolStripDropDownButton1
     //
     this.toolStripDropDownButton1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.thiêtLâpThôngSôToolStripMenuItem,
     this.xoaChưngTưHiênThơiToolStripMenuItem,
     this.huyĐơnĐătHangHiênThơiToolStripMenuItem,
     this.saoChepChưngTưTưToolStripMenuItem,
     this.saoChepChưngTưSangNhâpHangToolStripMenuItem,
     this.saoChepChưngTưToolStripMenuItem});
     this.toolStripDropDownButton1.Image = global::GUI.Properties.Resources.khac1;
     this.toolStripDropDownButton1.Name = "toolStripDropDownButton1";
     this.toolStripDropDownButton1.Size = new System.Drawing.Size(78, 25);
     this.toolStripDropDownButton1.Text = "Khác";
     this.toolStripDropDownButton1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.toolStripDropDownButton1.MouseLeave += new System.EventHandler(this.MouseLeave);
     this.toolStripDropDownButton1.MouseMove += new System.Windows.Forms.MouseEventHandler(this.MouseMove);
     //
     // thiêtLâpThôngSôToolStripMenuItem
     //
     this.thiêtLâpThôngSôToolStripMenuItem.Name = "thiêtLâpThôngSôToolStripMenuItem";
     this.thiêtLâpThôngSôToolStripMenuItem.Size = new System.Drawing.Size(374, 26);
     this.thiêtLâpThôngSôToolStripMenuItem.Text = "Thiết lập thông số";
     this.thiêtLâpThôngSôToolStripMenuItem.Click += new System.EventHandler(this.thiêtLâpThôngSôToolStripMenuItem_Click);
     //
     // xoaChưngTưHiênThơiToolStripMenuItem
     //
     this.xoaChưngTưHiênThơiToolStripMenuItem.Name = "xoaChưngTưHiênThơiToolStripMenuItem";
     this.xoaChưngTưHiênThơiToolStripMenuItem.Size = new System.Drawing.Size(374, 26);
     this.xoaChưngTưHiênThơiToolStripMenuItem.Text = "Xóa chứng từ hiện thời";
     //
     // huyĐơnĐătHangHiênThơiToolStripMenuItem
     //
     this.huyĐơnĐătHangHiênThơiToolStripMenuItem.Name = "huyĐơnĐătHangHiênThơiToolStripMenuItem";
     this.huyĐơnĐătHangHiênThơiToolStripMenuItem.Size = new System.Drawing.Size(374, 26);
     this.huyĐơnĐătHangHiênThơiToolStripMenuItem.Text = "Hủy đơn đặt hàng hiện thời";
     //
     // saoChepChưngTưTưToolStripMenuItem
     //
     this.saoChepChưngTưTưToolStripMenuItem.Name = "saoChepChưngTưTưToolStripMenuItem";
     this.saoChepChưngTưTưToolStripMenuItem.Size = new System.Drawing.Size(374, 26);
     this.saoChepChưngTưTưToolStripMenuItem.Text = "Sao chép từ chứng từ...";
     //
     // saoChepChưngTưSangNhâpHangToolStripMenuItem
     //
     this.saoChepChưngTưSangNhâpHangToolStripMenuItem.Name = "saoChepChưngTưSangNhâpHangToolStripMenuItem";
     this.saoChepChưngTưSangNhâpHangToolStripMenuItem.Size = new System.Drawing.Size(374, 26);
     this.saoChepChưngTưSangNhâpHangToolStripMenuItem.Text = "Sao chép chứng từ sang nhập hàng";
     //
     // saoChepChưngTưToolStripMenuItem
     //
     this.saoChepChưngTưToolStripMenuItem.Name = "saoChepChưngTưToolStripMenuItem";
     this.saoChepChưngTưToolStripMenuItem.Size = new System.Drawing.Size(374, 26);
     this.saoChepChưngTưToolStripMenuItem.Text = "Sao chép chứng từ thành Chứng từ mới";
     //
     // toolStripStatusLabel4
     //
     this.toolStripStatusLabel4.Image = global::GUI.Properties.Resources.Xoa;
     this.toolStripStatusLabel4.Name = "toolStripStatusLabel4";
     this.toolStripStatusLabel4.Size = new System.Drawing.Size(158, 22);
     this.toolStripStatusLabel4.Spring = true;
     this.toolStripStatusLabel4.Text = "Trở về";
     this.toolStripStatusLabel4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.toolStripStatusLabel4.Click += new System.EventHandler(this.toolStripStatusLabel4_Click);
     this.toolStripStatusLabel4.MouseLeave += new System.EventHandler(this.MouseLeave);
     this.toolStripStatusLabel4.MouseMove += new System.Windows.Forms.MouseEventHandler(this.MouseMove);
     //
     // panel
     //
     this.panel.Controls.Add(this.lblTaikhoan);
     this.panel.Controls.Add(this.cbxMaTaiKhoan);
     this.panel.Controls.Add(this.lblDiengiai);
     this.panel.Controls.Add(this.txtDiengiai);
     this.panel.Controls.Add(this.cbxKhoban);
     this.panel.Controls.Add(this.lblKhohang);
     this.panel.Controls.Add(this.lblDinhdangngay);
     this.panel.Controls.Add(this.makNgaychungtu);
     this.panel.Controls.Add(this.lblNgaychungtu);
     this.panel.Controls.Add(this.txtSochungtu);
     this.panel.Controls.Add(this.lblSochungtu);
     this.panel.Dock = System.Windows.Forms.DockStyle.Top;
     this.panel.Location = new System.Drawing.Point(0, 0);
     this.panel.Name = "panel";
     this.panel.Size = new System.Drawing.Size(758, 122);
     this.panel.TabIndex = 1;
     //
     // lblTaikhoan
     //
     this.lblTaikhoan.AutoSize = true;
     this.lblTaikhoan.Location = new System.Drawing.Point(425, 42);
     this.lblTaikhoan.Name = "lblTaikhoan";
     this.lblTaikhoan.Size = new System.Drawing.Size(112, 13);
     this.lblTaikhoan.TabIndex = 43;
     this.lblTaikhoan.Text = "Tài khoản ngân hàng:";
     //
     // cbxMaTaiKhoan
     //
     this.cbxMaTaiKhoan.BackColor = System.Drawing.Color.White;
     this.cbxMaTaiKhoan.Cursor = System.Windows.Forms.Cursors.Default;
     this.cbxMaTaiKhoan.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbxMaTaiKhoan.Location = new System.Drawing.Point(543, 39);
     this.cbxMaTaiKhoan.Name = "cbxMaTaiKhoan";
     this.cbxMaTaiKhoan.Size = new System.Drawing.Size(198, 21);
     this.cbxMaTaiKhoan.TabIndex = 42;
     //
     // lblDiengiai
     //
     this.lblDiengiai.AutoSize = true;
     this.lblDiengiai.Location = new System.Drawing.Point(17, 68);
     this.lblDiengiai.Name = "lblDiengiai";
     this.lblDiengiai.Size = new System.Drawing.Size(51, 13);
     this.lblDiengiai.TabIndex = 30;
     this.lblDiengiai.Text = "Diễn giải:";
     //
     // txtDiengiai
     //
     this.txtDiengiai.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtDiengiai.Location = new System.Drawing.Point(96, 66);
     this.txtDiengiai.Multiline = true;
     this.txtDiengiai.Name = "txtDiengiai";
     this.txtDiengiai.Size = new System.Drawing.Size(645, 50);
     this.txtDiengiai.TabIndex = 29;
     //
     // cbxKhoban
     //
     this.cbxKhoban.BackColor = System.Drawing.Color.White;
     this.cbxKhoban.Cursor = System.Windows.Forms.Cursors.Default;
     this.cbxKhoban.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbxKhoban.Location = new System.Drawing.Point(96, 39);
     this.cbxKhoban.Name = "cbxKhoban";
     this.cbxKhoban.Size = new System.Drawing.Size(323, 21);
     this.cbxKhoban.TabIndex = 13;
     //
     // lblKhohang
     //
     this.lblKhohang.AutoSize = true;
     this.lblKhohang.Location = new System.Drawing.Point(17, 42);
     this.lblKhohang.Name = "lblKhohang";
     this.lblKhohang.Size = new System.Drawing.Size(56, 13);
     this.lblKhohang.TabIndex = 12;
     this.lblKhohang.Text = "Kho hàng:";
     //
     // lblDinhdangngay
     //
     this.lblDinhdangngay.AutoSize = true;
     this.lblDinhdangngay.LinkBehavior = System.Windows.Forms.LinkBehavior.NeverUnderline;
     this.lblDinhdangngay.Location = new System.Drawing.Point(446, 16);
     this.lblDinhdangngay.Name = "lblDinhdangngay";
     this.lblDinhdangngay.Size = new System.Drawing.Size(71, 13);
     this.lblDinhdangngay.TabIndex = 7;
     this.lblDinhdangngay.TabStop = true;
     this.lblDinhdangngay.Text = "(dd/mm/yyyy)";
     //
     // makNgaychungtu
     //
     this.makNgaychungtu.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.makNgaychungtu.Location = new System.Drawing.Point(343, 13);
     this.makNgaychungtu.Mask = "00/00/0000";
     this.makNgaychungtu.Name = "makNgaychungtu";
     this.makNgaychungtu.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.makNgaychungtu.Size = new System.Drawing.Size(100, 20);
     this.makNgaychungtu.TabIndex = 6;
     this.makNgaychungtu.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // lblNgaychungtu
     //
     this.lblNgaychungtu.AutoSize = true;
     this.lblNgaychungtu.Location = new System.Drawing.Point(251, 16);
     this.lblNgaychungtu.Name = "lblNgaychungtu";
     this.lblNgaychungtu.Size = new System.Drawing.Size(80, 13);
     this.lblNgaychungtu.TabIndex = 5;
     this.lblNgaychungtu.Text = "Ngày chứng từ:";
     //
     // txtSochungtu
     //
     this.txtSochungtu.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.txtSochungtu.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtSochungtu.Location = new System.Drawing.Point(96, 12);
     this.txtSochungtu.Name = "txtSochungtu";
     this.txtSochungtu.ReadOnly = true;
     this.txtSochungtu.Size = new System.Drawing.Size(136, 20);
     this.txtSochungtu.TabIndex = 2;
     //
     // lblSochungtu
     //
     this.lblSochungtu.AutoSize = true;
     this.lblSochungtu.Location = new System.Drawing.Point(13, 15);
     this.lblSochungtu.Name = "lblSochungtu";
     this.lblSochungtu.Size = new System.Drawing.Size(65, 13);
     this.lblSochungtu.TabIndex = 0;
     this.lblSochungtu.Text = "Mã kiểm kê:";
     //
     // grbDataGridview
     //
     this.grbDataGridview.Controls.Add(this.dgvInsertOrder);
     this.grbDataGridview.Controls.Add(this.palThem);
     this.grbDataGridview.Dock = System.Windows.Forms.DockStyle.Top;
     this.grbDataGridview.Location = new System.Drawing.Point(0, 0);
     this.grbDataGridview.Name = "grbDataGridview";
     this.grbDataGridview.Size = new System.Drawing.Size(758, 218);
     this.grbDataGridview.TabIndex = 0;
     this.grbDataGridview.TabStop = false;
     //
     // dgvInsertOrder
     //
     this.dgvInsertOrder.AllowUserToAddRows = false;
     this.dgvInsertOrder.AllowUserToDeleteRows = false;
     this.dgvInsertOrder.BackgroundColor = System.Drawing.Color.White;
     this.dgvInsertOrder.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgvInsertOrder.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dgvInsertOrder.Location = new System.Drawing.Point(3, 42);
     this.dgvInsertOrder.Name = "dgvInsertOrder";
     this.dgvInsertOrder.ReadOnly = true;
     this.dgvInsertOrder.Size = new System.Drawing.Size(752, 173);
     this.dgvInsertOrder.TabIndex = 0;
     //
     // palThem
     //
     this.palThem.Controls.Add(this.toolStrip_Insert);
     this.palThem.Dock = System.Windows.Forms.DockStyle.Top;
     this.palThem.Location = new System.Drawing.Point(3, 16);
     this.palThem.Name = "palThem";
     this.palThem.Size = new System.Drawing.Size(752, 26);
     this.palThem.TabIndex = 3;
     //
     // toolStrip_Insert
     //
     this.toolStrip_Insert.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.toolStrip_Insert.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStrip_txtTracuu,
     this.toolStrip_txtTenhang,
     this.toolStrip_txtTonkho,
     this.toolStrip_txtTonThucTe,
     this.toolStrip_txtLyDo,
     this.toolStrip_btnThem});
     this.toolStrip_Insert.Location = new System.Drawing.Point(0, 0);
     this.toolStrip_Insert.Name = "toolStrip_Insert";
     this.toolStrip_Insert.Size = new System.Drawing.Size(752, 25);
     this.toolStrip_Insert.TabIndex = 2;
     this.toolStrip_Insert.Text = "toolStrip1";
     //
     // toolStrip_txtTracuu
     //
     this.toolStrip_txtTracuu.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.toolStrip_txtTracuu.Name = "toolStrip_txtTracuu";
     this.toolStrip_txtTracuu.Size = new System.Drawing.Size(100, 25);
     this.toolStrip_txtTracuu.Text = "<F4 - Tra cứu>";
     this.toolStrip_txtTracuu.KeyDown += new System.Windows.Forms.KeyEventHandler(this.toolStrip_txtTracuu_KeyDown);
     //
     // toolStrip_txtTenhang
     //
     this.toolStrip_txtTenhang.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.toolStrip_txtTenhang.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.toolStrip_txtTenhang.Name = "toolStrip_txtTenhang";
     this.toolStrip_txtTenhang.ReadOnly = true;
     this.toolStrip_txtTenhang.Size = new System.Drawing.Size(200, 25);
     //
     // toolStrip_txtTonkho
     //
     this.toolStrip_txtTonkho.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.toolStrip_txtTonkho.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.toolStrip_txtTonkho.Name = "toolStrip_txtTonkho";
     this.toolStrip_txtTonkho.ReadOnly = true;
     this.toolStrip_txtTonkho.Size = new System.Drawing.Size(80, 25);
     this.toolStrip_txtTonkho.Text = "0";
     this.toolStrip_txtTonkho.TextBoxTextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // toolStrip_txtTonThucTe
     //
     this.toolStrip_txtTonThucTe.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.toolStrip_txtTonThucTe.Name = "toolStrip_txtTonThucTe";
     this.toolStrip_txtTonThucTe.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.toolStrip_txtTonThucTe.Size = new System.Drawing.Size(60, 25);
     this.toolStrip_txtTonThucTe.Text = "1";
     this.toolStrip_txtTonThucTe.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.toolStrip_txtTonThucTe_KeyPress);
     //
     // toolStrip_txtLyDo
     //
     this.toolStrip_txtLyDo.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.toolStrip_txtLyDo.Name = "toolStrip_txtLyDo";
     this.toolStrip_txtLyDo.Size = new System.Drawing.Size(160, 25);
     this.toolStrip_txtLyDo.Text = "Chưa có lý do";
     //
     // toolStrip_btnThem
     //
     this.toolStrip_btnThem.Image = global::GUI.Properties.Resources.Them;
     this.toolStrip_btnThem.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStrip_btnThem.Name = "toolStrip_btnThem";
     this.toolStrip_btnThem.Size = new System.Drawing.Size(58, 22);
     this.toolStrip_btnThem.Text = "Thêm";
     this.toolStrip_btnThem.Click += new System.EventHandler(this.toolStrip_btnThem_Click);
     //
     // txtPhantrang
     //
     this.txtPhantrang.BackColor = System.Drawing.Color.White;
     this.txtPhantrang.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtPhantrang.ForeColor = System.Drawing.Color.Red;
     this.txtPhantrang.Location = new System.Drawing.Point(3, 225);
     this.txtPhantrang.Name = "txtPhantrang";
     this.txtPhantrang.ReadOnly = true;
     this.txtPhantrang.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.txtPhantrang.Size = new System.Drawing.Size(49, 20);
     this.txtPhantrang.TabIndex = 1;
     this.txtPhantrang.Text = "0/0";
     this.txtPhantrang.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // lblGiamgia_Tienhang
     //
     this.lblGiamgia_Tienhang.AutoSize = true;
     this.lblGiamgia_Tienhang.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblGiamgia_Tienhang.Location = new System.Drawing.Point(461, 231);
     this.lblGiamgia_Tienhang.Name = "lblGiamgia_Tienhang";
     this.lblGiamgia_Tienhang.Size = new System.Drawing.Size(76, 13);
     this.lblGiamgia_Tienhang.TabIndex = 2;
     this.lblGiamgia_Tienhang.Text = "Tổng giá trị:";
     //
     // txtTienhang
     //
     this.txtTienhang.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.txtTienhang.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtTienhang.Location = new System.Drawing.Point(543, 224);
     this.txtTienhang.Name = "txtTienhang";
     this.txtTienhang.ReadOnly = true;
     this.txtTienhang.Size = new System.Drawing.Size(206, 20);
     this.txtTienhang.TabIndex = 4;
     this.txtTienhang.Text = "0";
     this.txtTienhang.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // palXem
     //
     this.palXem.Controls.Add(this.txtTienhang);
     this.palXem.Controls.Add(this.lblGiamgia_Tienhang);
     this.palXem.Controls.Add(this.txtPhantrang);
     this.palXem.Controls.Add(this.grbDataGridview);
     this.palXem.Dock = System.Windows.Forms.DockStyle.Fill;
     this.palXem.Location = new System.Drawing.Point(0, 122);
     this.palXem.Name = "palXem";
     this.palXem.Size = new System.Drawing.Size(758, 249);
     this.palXem.TabIndex = 2;
     //
     // frmXuLy_KiemKeKho
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(758, 398);
     this.ControlBox = false;
     this.Controls.Add(this.palXem);
     this.Controls.Add(this.panel);
     this.Controls.Add(this.statusStrip1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Name = "frmXuLy_KiemKeKho";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "Kiểm kê kho";
     this.Load += new System.EventHandler(this.frmXuLy_KiemKeKho_Load);
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     this.panel.ResumeLayout(false);
     this.panel.PerformLayout();
     this.grbDataGridview.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dgvInsertOrder)).EndInit();
     this.palThem.ResumeLayout(false);
     this.palThem.PerformLayout();
     this.toolStrip_Insert.ResumeLayout(false);
     this.toolStrip_Insert.PerformLayout();
     this.palXem.ResumeLayout(false);
     this.palXem.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Beispiel #49
0
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
     this.menuStrip1 = new System.Windows.Forms.MenuStrip();
     this.mnuFile = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuOpen = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuQuit = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuExtras = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuHeaderInfo = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuWZCompare = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuSaveXML = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuLoadXML = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuExtract = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem3 = new System.Windows.Forms.ToolStripSeparator();
     this.findToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripTextBox1 = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripSeparator();
     this.mnuSettings = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuAbout = new System.Windows.Forms.ToolStripMenuItem();
     this.licenseToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuCloseRender = new System.Windows.Forms.ToolStripMenuItem();
     this.treeView1 = new System.Windows.Forms.TreeView();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.button8 = new System.Windows.Forms.Button();
     this.button7 = new System.Windows.Forms.Button();
     this.button6 = new System.Windows.Forms.Button();
     this.pnlSound = new System.Windows.Forms.Panel();
     this.checkBox1 = new System.Windows.Forms.CheckBox();
     this.trackBar1 = new System.Windows.Forms.TrackBar();
     this.label4 = new System.Windows.Forms.Label();
     this.textBox1 = new System.Windows.Forms.TextBox();
     this.label3 = new System.Windows.Forms.Label();
     this.button5 = new System.Windows.Forms.Button();
     this.button4 = new System.Windows.Forms.Button();
     this.button3 = new System.Windows.Forms.Button();
     this.btnSaveMp3 = new System.Windows.Forms.Button();
     this.label1 = new System.Windows.Forms.Label();
     this.button1 = new System.Windows.Forms.Button();
     this.lstRender = new System.Windows.Forms.ListBox();
     this.chkNPC = new System.Windows.Forms.CheckBox();
     this.chkMob = new System.Windows.Forms.CheckBox();
     this.chkReactor = new System.Windows.Forms.CheckBox();
     this.chkPortal = new System.Windows.Forms.CheckBox();
     this.button2 = new System.Windows.Forms.Button();
     this.label9 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.txtType = new System.Windows.Forms.TextBox();
     this.pnlPicture = new System.Windows.Forms.Panel();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.lblUOL = new System.Windows.Forms.LinkLabel();
     this.textBox8 = new System.Windows.Forms.TextBox();
     this.renderContainer = new System.Windows.Forms.SplitContainer();
     this.picRender = new System.Windows.Forms.PictureBox();
     this.cmdCloseRender = new System.Windows.Forms.Button();
     this.cmdSaveRender = new System.Windows.Forms.Button();
     this.cmdRedrawRender = new System.Windows.Forms.Button();
     this.lstRenders = new System.Windows.Forms.ListBox();
     this.chkReactorr = new System.Windows.Forms.CheckBox();
     this.chkPortalr = new System.Windows.Forms.CheckBox();
     this.chkMobr = new System.Windows.Forms.CheckBox();
     this.chkNPCr = new System.Windows.Forms.CheckBox();
     this.statusStrip1 = new System.Windows.Forms.StatusStrip();
     this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel2 = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripProgressBar1 = new System.Windows.Forms.ToolStripProgressBar();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.splitContainer2 = new System.Windows.Forms.SplitContainer();
     this.label2 = new System.Windows.Forms.Label();
     this.treeView2 = new System.Windows.Forms.TreeView();
     this.timer1 = new System.Windows.Forms.Timer(this.components);
     this.fullExtractPanel = new System.Windows.Forms.Panel();
     this.label6 = new System.Windows.Forms.Label();
     this.extractCount = new System.Windows.Forms.Label();
     this.extractBar = new System.Windows.Forms.ProgressBar();
     this.extractCancel = new System.Windows.Forms.Button();
     this.extractStart = new System.Windows.Forms.Button();
     this.button9 = new System.Windows.Forms.Button();
     this.menuStrip1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.pnlSound.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.trackBar1)).BeginInit();
     this.pnlPicture.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.renderContainer.Panel1.SuspendLayout();
     this.renderContainer.Panel2.SuspendLayout();
     this.renderContainer.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.picRender)).BeginInit();
     this.statusStrip1.SuspendLayout();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.splitContainer2.Panel1.SuspendLayout();
     this.splitContainer2.Panel2.SuspendLayout();
     this.splitContainer2.SuspendLayout();
     this.fullExtractPanel.SuspendLayout();
     this.SuspendLayout();
     //
     // menuStrip1
     //
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.mnuFile,
     this.mnuExtras,
     this.mnuAbout,
     this.mnuCloseRender});
     this.menuStrip1.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.HorizontalStackWithOverflow;
     this.menuStrip1.Location = new System.Drawing.Point(0, 0);
     this.menuStrip1.Name = "menuStrip1";
     this.menuStrip1.Size = new System.Drawing.Size(846, 25);
     this.menuStrip1.TabIndex = 1;
     this.menuStrip1.Text = "menuStrip1";
     //
     // mnuFile
     //
     this.mnuFile.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.mnuOpen,
     this.mnuQuit});
     this.mnuFile.Name = "mnuFile";
     this.mnuFile.Size = new System.Drawing.Size(39, 21);
     this.mnuFile.Text = "&File";
     //
     // mnuOpen
     //
     this.mnuOpen.Name = "mnuOpen";
     this.mnuOpen.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O)));
     this.mnuOpen.Size = new System.Drawing.Size(164, 22);
     this.mnuOpen.Text = "&Open...";
     this.mnuOpen.Click += new System.EventHandler(this.OpenToolStripMenuItemClick);
     //
     // mnuQuit
     //
     this.mnuQuit.Name = "mnuQuit";
     this.mnuQuit.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.F4)));
     this.mnuQuit.Size = new System.Drawing.Size(164, 22);
     this.mnuQuit.Text = "&Quit";
     this.mnuQuit.Click += new System.EventHandler(this.QuitToolStripMenuItemClick);
     //
     // mnuExtras
     //
     this.mnuExtras.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.mnuHeaderInfo,
     this.mnuWZCompare,
     this.mnuExtract,
     this.toolStripMenuItem3,
     this.findToolStripMenuItem,
     this.toolStripTextBox1,
     this.toolStripMenuItem2,
     this.mnuSettings});
     this.mnuExtras.Name = "mnuExtras";
     this.mnuExtras.Size = new System.Drawing.Size(55, 21);
     this.mnuExtras.Text = "&Extras";
     //
     // mnuHeaderInfo
     //
     this.mnuHeaderInfo.Enabled = false;
     this.mnuHeaderInfo.Name = "mnuHeaderInfo";
     this.mnuHeaderInfo.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.H)));
     this.mnuHeaderInfo.Size = new System.Drawing.Size(236, 22);
     this.mnuHeaderInfo.Text = "Header information";
     this.mnuHeaderInfo.Click += new System.EventHandler(this.ShowHeaderInformationToolStripMenuItemClick);
     //
     // mnuWZCompare
     //
     this.mnuWZCompare.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.mnuSaveXML,
     this.mnuLoadXML});
     this.mnuWZCompare.Enabled = false;
     this.mnuWZCompare.Name = "mnuWZCompare";
     this.mnuWZCompare.Size = new System.Drawing.Size(236, 22);
     this.mnuWZCompare.Text = "WZ Comparison";
     //
     // mnuSaveXML
     //
     this.mnuSaveXML.Enabled = false;
     this.mnuSaveXML.Name = "mnuSaveXML";
     this.mnuSaveXML.Size = new System.Drawing.Size(208, 22);
     this.mnuSaveXML.Text = "Save XML File...";
     this.mnuSaveXML.Click += new System.EventHandler(this.saveXMLFileToolStripMenuItem_Click);
     //
     // mnuLoadXML
     //
     this.mnuLoadXML.Enabled = false;
     this.mnuLoadXML.Name = "mnuLoadXML";
     this.mnuLoadXML.Size = new System.Drawing.Size(208, 22);
     this.mnuLoadXML.Text = "Compare to XML File...";
     this.mnuLoadXML.Click += new System.EventHandler(this.compareToXMLFileToolStripMenuItem_Click);
     //
     // mnuExtract
     //
     this.mnuExtract.Enabled = false;
     this.mnuExtract.Name = "mnuExtract";
     this.mnuExtract.Size = new System.Drawing.Size(236, 22);
     this.mnuExtract.Text = "Extract everything to disk";
     this.mnuExtract.Click += new System.EventHandler(this.MnuExtractClick);
     //
     // toolStripMenuItem3
     //
     this.toolStripMenuItem3.Name = "toolStripMenuItem3";
     this.toolStripMenuItem3.Size = new System.Drawing.Size(233, 6);
     //
     // findToolStripMenuItem
     //
     this.findToolStripMenuItem.Enabled = false;
     this.findToolStripMenuItem.Name = "findToolStripMenuItem";
     this.findToolStripMenuItem.Size = new System.Drawing.Size(236, 22);
     this.findToolStripMenuItem.Text = "Find in tree:";
     //
     // toolStripTextBox1
     //
     this.toolStripTextBox1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.toolStripTextBox1.Name = "toolStripTextBox1";
     this.toolStripTextBox1.Size = new System.Drawing.Size(100, 23);
     this.toolStripTextBox1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ToolStripTextBox1KeyDown);
     //
     // toolStripMenuItem2
     //
     this.toolStripMenuItem2.Name = "toolStripMenuItem2";
     this.toolStripMenuItem2.Size = new System.Drawing.Size(233, 6);
     //
     // mnuSettings
     //
     this.mnuSettings.Name = "mnuSettings";
     this.mnuSettings.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S)));
     this.mnuSettings.Size = new System.Drawing.Size(236, 22);
     this.mnuSettings.Text = "&Settings...";
     this.mnuSettings.Click += new System.EventHandler(this.PreferencesToolStripMenuItemClick);
     //
     // mnuAbout
     //
     this.mnuAbout.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.licenseToolStripMenuItem,
     this.aboutToolStripMenuItem});
     this.mnuAbout.Name = "mnuAbout";
     this.mnuAbout.Size = new System.Drawing.Size(26, 21);
     this.mnuAbout.Text = "?";
     //
     // licenseToolStripMenuItem
     //
     this.licenseToolStripMenuItem.Name = "licenseToolStripMenuItem";
     this.licenseToolStripMenuItem.Size = new System.Drawing.Size(118, 22);
     this.licenseToolStripMenuItem.Text = "License";
     this.licenseToolStripMenuItem.Click += new System.EventHandler(this.LicenseToolStripMenuItemClick);
     //
     // aboutToolStripMenuItem
     //
     this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
     this.aboutToolStripMenuItem.Size = new System.Drawing.Size(118, 22);
     this.aboutToolStripMenuItem.Text = "About";
     this.aboutToolStripMenuItem.Click += new System.EventHandler(this.AboutToolStripMenuItemClick);
     //
     // mnuCloseRender
     //
     this.mnuCloseRender.Name = "mnuCloseRender";
     this.mnuCloseRender.Size = new System.Drawing.Size(98, 21);
     this.mnuCloseRender.Text = "Close Render";
     this.mnuCloseRender.Visible = false;
     this.mnuCloseRender.Click += new System.EventHandler(this.closeRenderToolStripMenuItem_Click);
     //
     // treeView1
     //
     this.treeView1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.treeView1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.treeView1.HideSelection = false;
     this.treeView1.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.treeView1.Location = new System.Drawing.Point(0, 0);
     this.treeView1.Name = "treeView1";
     this.treeView1.Size = new System.Drawing.Size(164, 242);
     this.treeView1.TabIndex = 2;
     this.treeView1.Tag = "";
     this.treeView1.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.TreeView1AfterSelect);
     //
     // groupBox2
     //
     this.groupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox2.Controls.Add(this.button9);
     this.groupBox2.Controls.Add(this.button8);
     this.groupBox2.Controls.Add(this.button7);
     this.groupBox2.Controls.Add(this.button6);
     this.groupBox2.Controls.Add(this.pnlSound);
     this.groupBox2.Controls.Add(this.label1);
     this.groupBox2.Controls.Add(this.button1);
     this.groupBox2.Controls.Add(this.lstRender);
     this.groupBox2.Controls.Add(this.chkNPC);
     this.groupBox2.Controls.Add(this.chkMob);
     this.groupBox2.Controls.Add(this.chkReactor);
     this.groupBox2.Controls.Add(this.chkPortal);
     this.groupBox2.Controls.Add(this.button2);
     this.groupBox2.Controls.Add(this.label9);
     this.groupBox2.Controls.Add(this.label8);
     this.groupBox2.Controls.Add(this.label7);
     this.groupBox2.Controls.Add(this.txtType);
     this.groupBox2.Controls.Add(this.pnlPicture);
     this.groupBox2.Controls.Add(this.lblUOL);
     this.groupBox2.Controls.Add(this.textBox8);
     this.groupBox2.Location = new System.Drawing.Point(2, 0);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(657, 513);
     this.groupBox2.TabIndex = 3;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Data";
     //
     // button8
     //
     this.button8.Location = new System.Drawing.Point(9, 435);
     this.button8.Name = "button8";
     this.button8.Size = new System.Drawing.Size(52, 23);
     this.button8.TabIndex = 26;
     this.button8.Text = "obj";
     this.button8.UseVisualStyleBackColor = true;
     this.button8.Click += new System.EventHandler(this.button8_Click);
     //
     // button7
     //
     this.button7.Location = new System.Drawing.Point(9, 405);
     this.button7.Name = "button7";
     this.button7.Size = new System.Drawing.Size(52, 23);
     this.button7.TabIndex = 25;
     this.button7.Text = "map";
     this.button7.UseVisualStyleBackColor = true;
     this.button7.Click += new System.EventHandler(this.button7_Click);
     //
     // button6
     //
     this.button6.Location = new System.Drawing.Point(5, 302);
     this.button6.Name = "button6";
     this.button6.Size = new System.Drawing.Size(54, 38);
     this.button6.TabIndex = 24;
     this.button6.Text = "Extract image";
     this.button6.UseVisualStyleBackColor = true;
     this.button6.Visible = false;
     this.button6.Click += new System.EventHandler(this.Button6Click);
     //
     // pnlSound
     //
     this.pnlSound.AutoScroll = true;
     this.pnlSound.AutoSize = true;
     this.pnlSound.Controls.Add(this.checkBox1);
     this.pnlSound.Controls.Add(this.trackBar1);
     this.pnlSound.Controls.Add(this.label4);
     this.pnlSound.Controls.Add(this.textBox1);
     this.pnlSound.Controls.Add(this.label3);
     this.pnlSound.Controls.Add(this.button5);
     this.pnlSound.Controls.Add(this.button4);
     this.pnlSound.Controls.Add(this.button3);
     this.pnlSound.Controls.Add(this.btnSaveMp3);
     this.pnlSound.Location = new System.Drawing.Point(66, 42);
     this.pnlSound.Name = "pnlSound";
     this.pnlSound.Size = new System.Drawing.Size(380, 192);
     this.pnlSound.TabIndex = 23;
     this.pnlSound.Visible = false;
     //
     // checkBox1
     //
     this.checkBox1.Location = new System.Drawing.Point(192, 6);
     this.checkBox1.Name = "checkBox1";
     this.checkBox1.Size = new System.Drawing.Size(58, 19);
     this.checkBox1.TabIndex = 30;
     this.checkBox1.Text = "Loop";
     this.checkBox1.UseVisualStyleBackColor = true;
     //
     // trackBar1
     //
     this.trackBar1.Location = new System.Drawing.Point(4, 31);
     this.trackBar1.Name = "trackBar1";
     this.trackBar1.Size = new System.Drawing.Size(203, 45);
     this.trackBar1.TabIndex = 29;
     this.trackBar1.TickStyle = System.Windows.Forms.TickStyle.None;
     this.trackBar1.Scroll += new System.EventHandler(this.TrackBar1Scroll);
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(213, 32);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(49, 18);
     this.label4.TabIndex = 28;
     this.label4.Text = "00:00 /";
     //
     // textBox1
     //
     this.textBox1.BackColor = System.Drawing.SystemColors.Window;
     this.textBox1.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox1.Location = new System.Drawing.Point(3, 72);
     this.textBox1.Multiline = true;
     this.textBox1.Name = "textBox1";
     this.textBox1.ReadOnly = true;
     this.textBox1.Size = new System.Drawing.Size(293, 117);
     this.textBox1.TabIndex = 27;
     this.textBox1.TabStop = false;
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(259, 32);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(37, 18);
     this.label3.TabIndex = 26;
     this.label3.Text = "00:00";
     //
     // button5
     //
     this.button5.Location = new System.Drawing.Point(125, 3);
     this.button5.Name = "button5";
     this.button5.Size = new System.Drawing.Size(55, 23);
     this.button5.TabIndex = 24;
     this.button5.Text = "Stop";
     this.button5.UseVisualStyleBackColor = true;
     this.button5.Click += new System.EventHandler(this.Button5Click);
     //
     // button4
     //
     this.button4.Location = new System.Drawing.Point(64, 3);
     this.button4.Name = "button4";
     this.button4.Size = new System.Drawing.Size(55, 23);
     this.button4.TabIndex = 23;
     this.button4.Text = "Pause";
     this.button4.UseVisualStyleBackColor = true;
     this.button4.Click += new System.EventHandler(this.Button4Click);
     //
     // button3
     //
     this.button3.Location = new System.Drawing.Point(3, 3);
     this.button3.Name = "button3";
     this.button3.Size = new System.Drawing.Size(55, 23);
     this.button3.TabIndex = 22;
     this.button3.Text = "Play";
     this.button3.UseVisualStyleBackColor = true;
     this.button3.Click += new System.EventHandler(this.Button3Click);
     //
     // btnSaveMp3
     //
     this.btnSaveMp3.Location = new System.Drawing.Point(256, 3);
     this.btnSaveMp3.Name = "btnSaveMp3";
     this.btnSaveMp3.Size = new System.Drawing.Size(40, 23);
     this.btnSaveMp3.TabIndex = 19;
     this.btnSaveMp3.Text = "Save";
     this.btnSaveMp3.UseVisualStyleBackColor = true;
     this.btnSaveMp3.Click += new System.EventHandler(this.BtnSaveMp3Click);
     //
     // label1
     //
     this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(6, 194);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(590, 192);
     this.label1.TabIndex = 5;
     this.label1.Text = resources.GetString("label1.Text");
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(7, 346);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(54, 43);
     this.button1.TabIndex = 21;
     this.button1.Text = "Save image";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Visible = false;
     this.button1.Click += new System.EventHandler(this.Button1Click);
     //
     // lstRender
     //
     this.lstRender.FormattingEnabled = true;
     this.lstRender.ItemHeight = 12;
     this.lstRender.Items.AddRange(new object[] {
     "None",
     "Black",
     "White"});
     this.lstRender.Location = new System.Drawing.Point(6, 258);
     this.lstRender.Name = "lstRender";
     this.lstRender.Size = new System.Drawing.Size(54, 40);
     this.lstRender.TabIndex = 13;
     this.lstRender.Visible = false;
     //
     // chkNPC
     //
     this.chkNPC.Checked = true;
     this.chkNPC.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkNPC.Location = new System.Drawing.Point(5, 238);
     this.chkNPC.Name = "chkNPC";
     this.chkNPC.Size = new System.Drawing.Size(55, 15);
     this.chkNPC.TabIndex = 12;
     this.chkNPC.Text = "NPCs";
     this.chkNPC.UseVisualStyleBackColor = true;
     this.chkNPC.Visible = false;
     this.chkNPC.CheckedChanged += new System.EventHandler(this.ChkNPCCheckedChanged);
     //
     // chkMob
     //
     this.chkMob.Checked = true;
     this.chkMob.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkMob.Location = new System.Drawing.Point(5, 218);
     this.chkMob.Name = "chkMob";
     this.chkMob.Size = new System.Drawing.Size(55, 15);
     this.chkMob.TabIndex = 11;
     this.chkMob.Text = "Mob";
     this.chkMob.UseVisualStyleBackColor = true;
     this.chkMob.Visible = false;
     this.chkMob.CheckedChanged += new System.EventHandler(this.ChkMobCheckedChanged);
     //
     // chkReactor
     //
     this.chkReactor.Checked = true;
     this.chkReactor.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkReactor.Location = new System.Drawing.Point(5, 193);
     this.chkReactor.Name = "chkReactor";
     this.chkReactor.Size = new System.Drawing.Size(55, 19);
     this.chkReactor.TabIndex = 10;
     this.chkReactor.Text = "Reactor";
     this.chkReactor.UseVisualStyleBackColor = true;
     this.chkReactor.Visible = false;
     this.chkReactor.CheckedChanged += new System.EventHandler(this.ChkReactorCheckedChanged);
     //
     // chkPortal
     //
     this.chkPortal.Checked = true;
     this.chkPortal.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkPortal.Location = new System.Drawing.Point(5, 171);
     this.chkPortal.Name = "chkPortal";
     this.chkPortal.Size = new System.Drawing.Size(55, 20);
     this.chkPortal.TabIndex = 9;
     this.chkPortal.Text = "Portal";
     this.chkPortal.UseVisualStyleBackColor = true;
     this.chkPortal.Visible = false;
     this.chkPortal.CheckedChanged += new System.EventHandler(this.ChkPortalCheckedChanged);
     //
     // button2
     //
     this.button2.Location = new System.Drawing.Point(5, 114);
     this.button2.Name = "button2";
     this.button2.Size = new System.Drawing.Size(54, 50);
     this.button2.TabIndex = 8;
     this.button2.Text = "Render this Map!";
     this.button2.UseVisualStyleBackColor = true;
     this.button2.Visible = false;
     this.button2.Click += new System.EventHandler(this.Button2Click);
     //
     // label9
     //
     this.label9.Location = new System.Drawing.Point(6, 64);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(55, 37);
     this.label9.TabIndex = 5;
     this.label9.Text = "Click the picture to save it!";
     this.label9.Visible = false;
     //
     // label8
     //
     this.label8.Location = new System.Drawing.Point(6, 44);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(50, 14);
     this.label8.TabIndex = 3;
     this.label8.Text = "Content:";
     //
     // label7
     //
     this.label7.Location = new System.Drawing.Point(6, 18);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(42, 17);
     this.label7.TabIndex = 1;
     this.label7.Text = "Type:";
     //
     // txtType
     //
     this.txtType.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.txtType.BackColor = System.Drawing.SystemColors.Window;
     this.txtType.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtType.Location = new System.Drawing.Point(67, 18);
     this.txtType.Multiline = true;
     this.txtType.Name = "txtType";
     this.txtType.ReadOnly = true;
     this.txtType.Size = new System.Drawing.Size(584, 19);
     this.txtType.TabIndex = 0;
     //
     // pnlPicture
     //
     this.pnlPicture.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.pnlPicture.AutoScroll = true;
     this.pnlPicture.BackColor = System.Drawing.SystemColors.Control;
     this.pnlPicture.Controls.Add(this.pictureBox1);
     this.pnlPicture.Location = new System.Drawing.Point(67, 42);
     this.pnlPicture.Name = "pnlPicture";
     this.pnlPicture.Size = new System.Drawing.Size(584, 466);
     this.pnlPicture.TabIndex = 17;
     this.pnlPicture.Visible = false;
     //
     // pictureBox1
     //
     this.pictureBox1.BackColor = System.Drawing.SystemColors.Control;
     this.pictureBox1.Location = new System.Drawing.Point(3, 3);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(553, 338);
     this.pictureBox1.TabIndex = 4;
     this.pictureBox1.TabStop = false;
     this.pictureBox1.Visible = false;
     this.pictureBox1.Click += new System.EventHandler(this.PictureBox1Click);
     //
     // lblUOL
     //
     this.lblUOL.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.lblUOL.BackColor = System.Drawing.SystemColors.Control;
     this.lblUOL.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblUOL.LinkBehavior = System.Windows.Forms.LinkBehavior.NeverUnderline;
     this.lblUOL.Location = new System.Drawing.Point(67, 42);
     this.lblUOL.Name = "lblUOL";
     this.lblUOL.Size = new System.Drawing.Size(408, 30);
     this.lblUOL.TabIndex = 20;
     this.lblUOL.Visible = false;
     this.lblUOL.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
     //
     // textBox8
     //
     this.textBox8.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.textBox8.BackColor = System.Drawing.SystemColors.Window;
     this.textBox8.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox8.Location = new System.Drawing.Point(67, 42);
     this.textBox8.Multiline = true;
     this.textBox8.Name = "textBox8";
     this.textBox8.ReadOnly = true;
     this.textBox8.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.textBox8.Size = new System.Drawing.Size(584, 466);
     this.textBox8.TabIndex = 2;
     this.textBox8.Visible = false;
     //
     // renderContainer
     //
     this.renderContainer.FixedPanel = System.Windows.Forms.FixedPanel.Panel2;
     this.renderContainer.IsSplitterFixed = true;
     this.renderContainer.Location = new System.Drawing.Point(606, 0);
     this.renderContainer.Name = "renderContainer";
     this.renderContainer.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // renderContainer.Panel1
     //
     this.renderContainer.Panel1.AutoScroll = true;
     this.renderContainer.Panel1.Controls.Add(this.picRender);
     //
     // renderContainer.Panel2
     //
     this.renderContainer.Panel2.Controls.Add(this.cmdCloseRender);
     this.renderContainer.Panel2.Controls.Add(this.cmdSaveRender);
     this.renderContainer.Panel2.Controls.Add(this.cmdRedrawRender);
     this.renderContainer.Panel2.Controls.Add(this.lstRenders);
     this.renderContainer.Panel2.Controls.Add(this.chkReactorr);
     this.renderContainer.Panel2.Controls.Add(this.chkPortalr);
     this.renderContainer.Panel2.Controls.Add(this.chkMobr);
     this.renderContainer.Panel2.Controls.Add(this.chkNPCr);
     this.renderContainer.Size = new System.Drawing.Size(240, 207);
     this.renderContainer.SplitterDistance = 131;
     this.renderContainer.TabIndex = 0;
     this.renderContainer.TabStop = false;
     this.renderContainer.Visible = false;
     //
     // picRender
     //
     this.picRender.Location = new System.Drawing.Point(0, 0);
     this.picRender.Name = "picRender";
     this.picRender.Size = new System.Drawing.Size(279, 128);
     this.picRender.TabIndex = 0;
     this.picRender.TabStop = false;
     //
     // cmdCloseRender
     //
     this.cmdCloseRender.Location = new System.Drawing.Point(399, 34);
     this.cmdCloseRender.Name = "cmdCloseRender";
     this.cmdCloseRender.Size = new System.Drawing.Size(43, 21);
     this.cmdCloseRender.TabIndex = 7;
     this.cmdCloseRender.Text = "Close";
     this.cmdCloseRender.UseVisualStyleBackColor = true;
     this.cmdCloseRender.Click += new System.EventHandler(this.CmdCloseRenderClick);
     //
     // cmdSaveRender
     //
     this.cmdSaveRender.Location = new System.Drawing.Point(269, 34);
     this.cmdSaveRender.Name = "cmdSaveRender";
     this.cmdSaveRender.Size = new System.Drawing.Size(124, 21);
     this.cmdSaveRender.TabIndex = 6;
     this.cmdSaveRender.Text = "Save";
     this.cmdSaveRender.UseVisualStyleBackColor = true;
     this.cmdSaveRender.Click += new System.EventHandler(this.CmdSaveRenderClick);
     //
     // cmdRedrawRender
     //
     this.cmdRedrawRender.Location = new System.Drawing.Point(269, 8);
     this.cmdRedrawRender.Name = "cmdRedrawRender";
     this.cmdRedrawRender.Size = new System.Drawing.Size(173, 20);
     this.cmdRedrawRender.TabIndex = 5;
     this.cmdRedrawRender.Text = "Render with new settings";
     this.cmdRedrawRender.UseVisualStyleBackColor = true;
     this.cmdRedrawRender.Click += new System.EventHandler(this.CmdRedrawRenderClick);
     //
     // lstRenders
     //
     this.lstRenders.FormattingEnabled = true;
     this.lstRenders.ItemHeight = 12;
     this.lstRenders.Items.AddRange(new object[] {
     "None",
     "Black",
     "White"});
     this.lstRenders.Location = new System.Drawing.Point(157, 8);
     this.lstRenders.Name = "lstRenders";
     this.lstRenders.Size = new System.Drawing.Size(106, 52);
     this.lstRenders.TabIndex = 4;
     //
     // chkReactorr
     //
     this.chkReactorr.Checked = true;
     this.chkReactorr.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkReactorr.Location = new System.Drawing.Point(77, 8);
     this.chkReactorr.Name = "chkReactorr";
     this.chkReactorr.Size = new System.Drawing.Size(74, 20);
     this.chkReactorr.TabIndex = 3;
     this.chkReactorr.Text = "Reactors";
     this.chkReactorr.UseVisualStyleBackColor = true;
     this.chkReactorr.CheckedChanged += new System.EventHandler(this.ChkReactorrCheckedChanged);
     //
     // chkPortalr
     //
     this.chkPortalr.Checked = true;
     this.chkPortalr.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkPortalr.Location = new System.Drawing.Point(9, 10);
     this.chkPortalr.Name = "chkPortalr";
     this.chkPortalr.Size = new System.Drawing.Size(62, 18);
     this.chkPortalr.TabIndex = 2;
     this.chkPortalr.Text = "Portals";
     this.chkPortalr.UseVisualStyleBackColor = true;
     this.chkPortalr.CheckedChanged += new System.EventHandler(this.ChkPortalrCheckedChanged);
     //
     // chkMobr
     //
     this.chkMobr.Checked = true;
     this.chkMobr.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkMobr.Location = new System.Drawing.Point(9, 30);
     this.chkMobr.Name = "chkMobr";
     this.chkMobr.Size = new System.Drawing.Size(51, 18);
     this.chkMobr.TabIndex = 1;
     this.chkMobr.Text = "Mob";
     this.chkMobr.UseVisualStyleBackColor = true;
     this.chkMobr.CheckedChanged += new System.EventHandler(this.ChkMobrCheckedChanged);
     //
     // chkNPCr
     //
     this.chkNPCr.Checked = true;
     this.chkNPCr.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkNPCr.Location = new System.Drawing.Point(77, 30);
     this.chkNPCr.Name = "chkNPCr";
     this.chkNPCr.Size = new System.Drawing.Size(68, 18);
     this.chkNPCr.TabIndex = 0;
     this.chkNPCr.Text = "NPCs";
     this.chkNPCr.UseVisualStyleBackColor = true;
     this.chkNPCr.CheckedChanged += new System.EventHandler(this.ChkNPCrCheckedChanged);
     //
     // statusStrip1
     //
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripStatusLabel1,
     this.toolStripStatusLabel2,
     this.toolStripProgressBar1});
     this.statusStrip1.Location = new System.Drawing.Point(0, 542);
     this.statusStrip1.Name = "statusStrip1";
     this.statusStrip1.Size = new System.Drawing.Size(846, 22);
     this.statusStrip1.TabIndex = 4;
     this.statusStrip1.Text = "statusStrip1";
     //
     // toolStripStatusLabel1
     //
     this.toolStripStatusLabel1.AutoSize = false;
     this.toolStripStatusLabel1.BorderSides = ((System.Windows.Forms.ToolStripStatusLabelBorderSides)((((System.Windows.Forms.ToolStripStatusLabelBorderSides.Left | System.Windows.Forms.ToolStripStatusLabelBorderSides.Top)
     | System.Windows.Forms.ToolStripStatusLabelBorderSides.Right)
     | System.Windows.Forms.ToolStripStatusLabelBorderSides.Bottom)));
     this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
     this.toolStripStatusLabel1.Size = new System.Drawing.Size(300, 17);
     //
     // toolStripStatusLabel2
     //
     this.toolStripStatusLabel2.AutoSize = false;
     this.toolStripStatusLabel2.BorderSides = ((System.Windows.Forms.ToolStripStatusLabelBorderSides)((((System.Windows.Forms.ToolStripStatusLabelBorderSides.Left | System.Windows.Forms.ToolStripStatusLabelBorderSides.Top)
     | System.Windows.Forms.ToolStripStatusLabelBorderSides.Right)
     | System.Windows.Forms.ToolStripStatusLabelBorderSides.Bottom)));
     this.toolStripStatusLabel2.Name = "toolStripStatusLabel2";
     this.toolStripStatusLabel2.Size = new System.Drawing.Size(200, 17);
     //
     // toolStripProgressBar1
     //
     this.toolStripProgressBar1.Name = "toolStripProgressBar1";
     this.toolStripProgressBar1.Size = new System.Drawing.Size(100, 16);
     this.toolStripProgressBar1.Visible = false;
     //
     // splitContainer1
     //
     this.splitContainer1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.splitContainer1.BackColor = System.Drawing.SystemColors.Control;
     this.splitContainer1.ForeColor = System.Drawing.SystemColors.ControlText;
     this.splitContainer1.Location = new System.Drawing.Point(0, 25);
     this.splitContainer1.Name = "splitContainer1";
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.splitContainer2);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.groupBox2);
     this.splitContainer1.Size = new System.Drawing.Size(846, 516);
     this.splitContainer1.SplitterDistance = 171;
     this.splitContainer1.TabIndex = 5;
     //
     // splitContainer2
     //
     this.splitContainer2.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.splitContainer2.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.splitContainer2.Location = new System.Drawing.Point(7, 3);
     this.splitContainer2.Name = "splitContainer2";
     this.splitContainer2.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer2.Panel1
     //
     this.splitContainer2.Panel1.Controls.Add(this.treeView1);
     //
     // splitContainer2.Panel2
     //
     this.splitContainer2.Panel2.Controls.Add(this.label2);
     this.splitContainer2.Panel2.Controls.Add(this.treeView2);
     this.splitContainer2.Size = new System.Drawing.Size(164, 505);
     this.splitContainer2.SplitterDistance = 245;
     this.splitContainer2.TabIndex = 4;
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(5, 0);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(100, 16);
     this.label2.TabIndex = 4;
     this.label2.Text = "Image file content:";
     //
     // treeView2
     //
     this.treeView2.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.treeView2.HideSelection = false;
     this.treeView2.Location = new System.Drawing.Point(0, 18);
     this.treeView2.Name = "treeView2";
     this.treeView2.Size = new System.Drawing.Size(164, 235);
     this.treeView2.TabIndex = 3;
     this.treeView2.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.TreeView2AfterSelect);
     //
     // timer1
     //
     this.timer1.Tick += new System.EventHandler(this.Timer1Tick);
     //
     // fullExtractPanel
     //
     this.fullExtractPanel.Controls.Add(this.label6);
     this.fullExtractPanel.Controls.Add(this.extractCount);
     this.fullExtractPanel.Controls.Add(this.extractBar);
     this.fullExtractPanel.Controls.Add(this.extractCancel);
     this.fullExtractPanel.Controls.Add(this.extractStart);
     this.fullExtractPanel.Location = new System.Drawing.Point(307, 0);
     this.fullExtractPanel.Name = "fullExtractPanel";
     this.fullExtractPanel.Size = new System.Drawing.Size(281, 145);
     this.fullExtractPanel.TabIndex = 6;
     this.fullExtractPanel.Visible = false;
     //
     // label6
     //
     this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.Location = new System.Drawing.Point(29, 9);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(203, 34);
     this.label6.TabIndex = 4;
     this.label6.Text = "Full Extract Control Panel";
     //
     // extractCount
     //
     this.extractCount.Location = new System.Drawing.Point(29, 72);
     this.extractCount.Name = "extractCount";
     this.extractCount.Size = new System.Drawing.Size(203, 20);
     this.extractCount.TabIndex = 3;
     this.extractCount.Text = "progress";
     //
     // extractBar
     //
     this.extractBar.Location = new System.Drawing.Point(32, 46);
     this.extractBar.Name = "extractBar";
     this.extractBar.Size = new System.Drawing.Size(200, 18);
     this.extractBar.TabIndex = 2;
     //
     // extractCancel
     //
     this.extractCancel.Location = new System.Drawing.Point(184, 97);
     this.extractCancel.Name = "extractCancel";
     this.extractCancel.Size = new System.Drawing.Size(48, 24);
     this.extractCancel.TabIndex = 1;
     this.extractCancel.Text = "Cancel";
     this.extractCancel.UseVisualStyleBackColor = true;
     this.extractCancel.Click += new System.EventHandler(this.ExtractCancelClick);
     //
     // extractStart
     //
     this.extractStart.Location = new System.Drawing.Point(32, 97);
     this.extractStart.Name = "extractStart";
     this.extractStart.Size = new System.Drawing.Size(146, 24);
     this.extractStart.TabIndex = 0;
     this.extractStart.Text = "Start";
     this.extractStart.UseVisualStyleBackColor = true;
     this.extractStart.Click += new System.EventHandler(this.ExtractStartClick);
     //
     // button9
     //
     this.button9.Location = new System.Drawing.Point(9, 470);
     this.button9.Name = "button9";
     this.button9.Size = new System.Drawing.Size(52, 23);
     this.button9.TabIndex = 27;
     this.button9.Text = "tile";
     this.button9.UseVisualStyleBackColor = true;
     this.button9.Click += new System.EventHandler(this.button9_Click);
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(846, 564);
     this.Controls.Add(this.fullExtractPanel);
     this.Controls.Add(this.renderContainer);
     this.Controls.Add(this.splitContainer1);
     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 = "MainForm";
     this.Text = "WZextract";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.MainForm_Load);
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     this.pnlSound.ResumeLayout(false);
     this.pnlSound.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.trackBar1)).EndInit();
     this.pnlPicture.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.renderContainer.Panel1.ResumeLayout(false);
     this.renderContainer.Panel2.ResumeLayout(false);
     this.renderContainer.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.picRender)).EndInit();
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     this.splitContainer1.ResumeLayout(false);
     this.splitContainer2.Panel1.ResumeLayout(false);
     this.splitContainer2.Panel2.ResumeLayout(false);
     this.splitContainer2.ResumeLayout(false);
     this.fullExtractPanel.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <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.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     this.dgvData = new System.Windows.Forms.DataGridView();
     this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.btnRowAdd = new System.Windows.Forms.Button();
     this.btnColumnAdd = new System.Windows.Forms.Button();
     this.btnDataFileLoad = new System.Windows.Forms.Button();
     this.grpDataType = new System.Windows.Forms.GroupBox();
     this.radDataTypeOrd = new System.Windows.Forms.RadioButton();
     this.radDataTypeInt = new System.Windows.Forms.RadioButton();
     this.radDataTypeFre = new System.Windows.Forms.RadioButton();
     this.btnRun = new System.Windows.Forms.Button();
     this.groupBox5 = new System.Windows.Forms.GroupBox();
     this.dgvStatMeasure = new System.Windows.Forms.DataGridView();
     this.colStatMeasure = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colOrder = new System.Windows.Forms.DataGridViewComboBoxColumn();
     this.colUse = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.smiDeleteSelCol = new System.Windows.Forms.ToolStripMenuItem();
     this.smiDeleteSelRow = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.cmsDataCells = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.smiRenameHeader = new System.Windows.Forms.ToolStripMenuItem();
     this.txtRenameHeader = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.smiRenameColumn = new System.Windows.Forms.ToolStripMenuItem();
     this.smiRenameRow = new System.Windows.Forms.ToolStripMenuItem();
     this.smiRenameTopLeftCell = new System.Windows.Forms.ToolStripMenuItem();
     this.menInputAndSelection = new System.Windows.Forms.MenuStrip();
     this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.openToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.viewHelpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
     this.aboutStatisticalAnalyzerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     ((System.ComponentModel.ISupportInitialize)(this.dgvData)).BeginInit();
     this.groupBox1.SuspendLayout();
     this.grpDataType.SuspendLayout();
     this.groupBox5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgvStatMeasure)).BeginInit();
     this.cmsDataCells.SuspendLayout();
     this.menInputAndSelection.SuspendLayout();
     this.SuspendLayout();
     //
     // dgvData
     //
     this.dgvData.AllowUserToResizeColumns = false;
     this.dgvData.AllowUserToResizeRows = false;
     this.dgvData.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells;
     this.dgvData.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgvData.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.Column1});
     this.dgvData.Location = new System.Drawing.Point(0, 90);
     this.dgvData.Name = "dgvData";
     this.dgvData.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.AutoSizeToAllHeaders;
     this.dgvData.Size = new System.Drawing.Size(596, 365);
     this.dgvData.TabIndex = 0;
     this.dgvData.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvData_CellEndEdit);
     this.dgvData.CellMouseClick += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dgvData_CellMouseClick);
     this.dgvData.CellMouseUp += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dgvData_CellMouseUp);
     this.dgvData.ColumnAdded += new System.Windows.Forms.DataGridViewColumnEventHandler(this.dgvData_ColumnAdded);
     this.dgvData.ColumnHeaderMouseClick += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dataGridView1_ColumnHeaderMouseClick);
     this.dgvData.ColumnHeaderMouseDoubleClick += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dataGridView1_ColumnHeaderMouseDoubleClick);
     this.dgvData.DefaultValuesNeeded += new System.Windows.Forms.DataGridViewRowEventHandler(this.dgvData_DefaultValuesNeeded);
     //
     // Column1
     //
     this.Column1.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
     this.Column1.HeaderText = "Column1";
     this.Column1.Name = "Column1";
     this.Column1.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.Column1.Width = 54;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.btnRowAdd);
     this.groupBox1.Controls.Add(this.btnColumnAdd);
     this.groupBox1.Controls.Add(this.btnDataFileLoad);
     this.groupBox1.Controls.Add(this.dgvData);
     this.groupBox1.Location = new System.Drawing.Point(12, 26);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(596, 461);
     this.groupBox1.TabIndex = 1;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Input and Select Data";
     //
     // btnRowAdd
     //
     this.btnRowAdd.Location = new System.Drawing.Point(91, 67);
     this.btnRowAdd.Name = "btnRowAdd";
     this.btnRowAdd.Size = new System.Drawing.Size(79, 21);
     this.btnRowAdd.TabIndex = 9;
     this.btnRowAdd.Text = "Add Ro&w";
     this.btnRowAdd.UseVisualStyleBackColor = true;
     this.btnRowAdd.Click += new System.EventHandler(this.btnRowAdd_Click);
     //
     // btnColumnAdd
     //
     this.btnColumnAdd.Location = new System.Drawing.Point(6, 67);
     this.btnColumnAdd.Name = "btnColumnAdd";
     this.btnColumnAdd.Size = new System.Drawing.Size(79, 21);
     this.btnColumnAdd.TabIndex = 2;
     this.btnColumnAdd.Text = "Add &Column";
     this.btnColumnAdd.UseVisualStyleBackColor = true;
     this.btnColumnAdd.Click += new System.EventHandler(this.btnColumnAdd_Click);
     //
     // btnDataFileLoad
     //
     this.btnDataFileLoad.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnDataFileLoad.Location = new System.Drawing.Point(6, 19);
     this.btnDataFileLoad.Name = "btnDataFileLoad";
     this.btnDataFileLoad.Size = new System.Drawing.Size(115, 32);
     this.btnDataFileLoad.TabIndex = 1;
     this.btnDataFileLoad.Text = "&Load Data File";
     this.btnDataFileLoad.UseVisualStyleBackColor = true;
     this.btnDataFileLoad.Click += new System.EventHandler(this.btnDataFileLoad_Click);
     //
     // grpDataType
     //
     this.grpDataType.Controls.Add(this.radDataTypeOrd);
     this.grpDataType.Controls.Add(this.radDataTypeInt);
     this.grpDataType.Controls.Add(this.radDataTypeFre);
     this.grpDataType.Location = new System.Drawing.Point(521, 26);
     this.grpDataType.Name = "grpDataType";
     this.grpDataType.Size = new System.Drawing.Size(87, 88);
     this.grpDataType.TabIndex = 2;
     this.grpDataType.TabStop = false;
     this.grpDataType.Text = "Data Type";
     //
     // radDataTypeOrd
     //
     this.radDataTypeOrd.AutoSize = true;
     this.radDataTypeOrd.Location = new System.Drawing.Point(6, 67);
     this.radDataTypeOrd.Name = "radDataTypeOrd";
     this.radDataTypeOrd.Size = new System.Drawing.Size(58, 17);
     this.radDataTypeOrd.TabIndex = 2;
     this.radDataTypeOrd.TabStop = true;
     this.radDataTypeOrd.Text = "Or&dinal";
     this.radDataTypeOrd.UseVisualStyleBackColor = true;
     this.radDataTypeOrd.CheckedChanged += new System.EventHandler(this.grpDataType_CheckedChanged);
     //
     // radDataTypeInt
     //
     this.radDataTypeInt.AutoSize = true;
     this.radDataTypeInt.Location = new System.Drawing.Point(6, 43);
     this.radDataTypeInt.Name = "radDataTypeInt";
     this.radDataTypeInt.Size = new System.Drawing.Size(60, 17);
     this.radDataTypeInt.TabIndex = 1;
     this.radDataTypeInt.TabStop = true;
     this.radDataTypeInt.Text = "&Interval";
     this.radDataTypeInt.UseVisualStyleBackColor = true;
     this.radDataTypeInt.CheckedChanged += new System.EventHandler(this.grpDataType_CheckedChanged);
     //
     // radDataTypeFre
     //
     this.radDataTypeFre.AutoSize = true;
     this.radDataTypeFre.Location = new System.Drawing.Point(6, 19);
     this.radDataTypeFre.Name = "radDataTypeFre";
     this.radDataTypeFre.Size = new System.Drawing.Size(75, 17);
     this.radDataTypeFre.TabIndex = 0;
     this.radDataTypeFre.TabStop = true;
     this.radDataTypeFre.Text = "F&requency";
     this.radDataTypeFre.UseVisualStyleBackColor = true;
     this.radDataTypeFre.CheckedChanged += new System.EventHandler(this.grpDataType_CheckedChanged);
     //
     // btnRun
     //
     this.btnRun.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnRun.Location = new System.Drawing.Point(633, 446);
     this.btnRun.Name = "btnRun";
     this.btnRun.Size = new System.Drawing.Size(312, 35);
     this.btnRun.TabIndex = 1;
     this.btnRun.Text = "R&un";
     this.btnRun.UseVisualStyleBackColor = true;
     this.btnRun.Click += new System.EventHandler(this.btnRun_Click);
     //
     // groupBox5
     //
     this.groupBox5.Controls.Add(this.dgvStatMeasure);
     this.groupBox5.Location = new System.Drawing.Point(633, 26);
     this.groupBox5.Name = "groupBox5";
     this.groupBox5.Size = new System.Drawing.Size(312, 410);
     this.groupBox5.TabIndex = 13;
     this.groupBox5.TabStop = false;
     this.groupBox5.Text = "Select Statistical Measure(s)";
     //
     // dgvStatMeasure
     //
     this.dgvStatMeasure.AllowUserToAddRows = false;
     this.dgvStatMeasure.AllowUserToResizeColumns = false;
     this.dgvStatMeasure.AllowUserToResizeRows = false;
     this.dgvStatMeasure.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgvStatMeasure.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.colStatMeasure,
     this.colOrder,
     this.colUse});
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.ControlLight;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.ControlLight;
     dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dgvStatMeasure.DefaultCellStyle = dataGridViewCellStyle2;
     this.dgvStatMeasure.EditMode = System.Windows.Forms.DataGridViewEditMode.EditOnEnter;
     this.dgvStatMeasure.Location = new System.Drawing.Point(0, 19);
     this.dgvStatMeasure.Name = "dgvStatMeasure";
     this.dgvStatMeasure.RowHeadersVisible = false;
     this.dgvStatMeasure.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
     this.dgvStatMeasure.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.dgvStatMeasure.Size = new System.Drawing.Size(312, 391);
     this.dgvStatMeasure.TabIndex = 15;
     this.dgvStatMeasure.CellMouseUp += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dgvStatMeasure_CellMouseUp);
     this.dgvStatMeasure.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvStatMeasure_CellValueChanged);
     //
     // colStatMeasure
     //
     this.colStatMeasure.HeaderText = "Statistical Measure";
     this.colStatMeasure.Name = "colStatMeasure";
     this.colStatMeasure.ReadOnly = true;
     this.colStatMeasure.Resizable = System.Windows.Forms.DataGridViewTriState.False;
     this.colStatMeasure.Width = 172;
     //
     // colOrder
     //
     this.colOrder.HeaderText = "Series Order";
     this.colOrder.Name = "colOrder";
     this.colOrder.Resizable = System.Windows.Forms.DataGridViewTriState.False;
     this.colOrder.Width = 90;
     //
     // colUse
     //
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle1.NullValue = false;
     dataGridViewCellStyle1.Padding = new System.Windows.Forms.Padding(0, 0, 25, 0);
     this.colUse.DefaultCellStyle = dataGridViewCellStyle1;
     this.colUse.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.colUse.HeaderText = "Use";
     this.colUse.Name = "colUse";
     this.colUse.Resizable = System.Windows.Forms.DataGridViewTriState.False;
     this.colUse.Width = 47;
     //
     // smiDeleteSelCol
     //
     this.smiDeleteSelCol.Name = "smiDeleteSelCol";
     this.smiDeleteSelCol.Size = new System.Drawing.Size(180, 22);
     this.smiDeleteSelCol.Text = "Delete Selected Columns";
     this.smiDeleteSelCol.Click += new System.EventHandler(this.smiDeleteSelCol_Click);
     //
     // smiDeleteSelRow
     //
     this.smiDeleteSelRow.Name = "smiDeleteSelRow";
     this.smiDeleteSelRow.Size = new System.Drawing.Size(180, 22);
     this.smiDeleteSelRow.Text = "Delete Selected Rows";
     this.smiDeleteSelRow.Click += new System.EventHandler(this.smiDeleteSelRow_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(177, 6);
     //
     // cmsDataCells
     //
     this.cmsDataCells.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.smiDeleteSelCol,
     this.smiDeleteSelRow,
     this.toolStripSeparator1,
     this.smiRenameHeader});
     this.cmsDataCells.Name = "contextMenuStrip1";
     this.cmsDataCells.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
     this.cmsDataCells.ShowImageMargin = false;
     this.cmsDataCells.Size = new System.Drawing.Size(181, 76);
     this.cmsDataCells.Opening += new System.ComponentModel.CancelEventHandler(this.cmsDataCells_Opening);
     //
     // smiRenameHeader
     //
     this.smiRenameHeader.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.txtRenameHeader,
     this.toolStripSeparator2,
     this.smiRenameColumn,
     this.smiRenameRow,
     this.smiRenameTopLeftCell});
     this.smiRenameHeader.Name = "smiRenameHeader";
     this.smiRenameHeader.Size = new System.Drawing.Size(180, 22);
     this.smiRenameHeader.Text = "Rename Header";
     //
     // txtRenameHeader
     //
     this.txtRenameHeader.Name = "txtRenameHeader";
     this.txtRenameHeader.Size = new System.Drawing.Size(150, 23);
     this.txtRenameHeader.ToolTipText = "Type new name here";
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(220, 6);
     //
     // smiRenameColumn
     //
     this.smiRenameColumn.Name = "smiRenameColumn";
     this.smiRenameColumn.Size = new System.Drawing.Size(223, 22);
     this.smiRenameColumn.Text = "Rename Selected Column(s)";
     this.smiRenameColumn.Click += new System.EventHandler(this.smiRenameColumn_Click);
     //
     // smiRenameRow
     //
     this.smiRenameRow.Name = "smiRenameRow";
     this.smiRenameRow.Size = new System.Drawing.Size(223, 22);
     this.smiRenameRow.Text = "Rename Selected Row(s)";
     this.smiRenameRow.Click += new System.EventHandler(this.smiRenameRow_Click);
     //
     // smiRenameTopLeftCell
     //
     this.smiRenameTopLeftCell.Name = "smiRenameTopLeftCell";
     this.smiRenameTopLeftCell.Size = new System.Drawing.Size(223, 22);
     this.smiRenameTopLeftCell.Text = "Rename Top-left Cell";
     this.smiRenameTopLeftCell.Click += new System.EventHandler(this.smiRenameTopLeftCell_Click);
     //
     // menInputAndSelection
     //
     this.menInputAndSelection.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.fileToolStripMenuItem,
     this.helpToolStripMenuItem});
     this.menInputAndSelection.Location = new System.Drawing.Point(0, 0);
     this.menInputAndSelection.Name = "menInputAndSelection";
     this.menInputAndSelection.Size = new System.Drawing.Size(963, 24);
     this.menInputAndSelection.TabIndex = 14;
     this.menInputAndSelection.Text = "menuStrip1";
     //
     // fileToolStripMenuItem
     //
     this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.openToolStripMenuItem,
     this.toolStripSeparator3,
     this.exitToolStripMenuItem});
     this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
     this.fileToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.F)));
     this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
     this.fileToolStripMenuItem.Text = "&File";
     //
     // openToolStripMenuItem
     //
     this.openToolStripMenuItem.Name = "openToolStripMenuItem";
     this.openToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O)));
     this.openToolStripMenuItem.Size = new System.Drawing.Size(155, 22);
     this.openToolStripMenuItem.Text = "&Open...";
     this.openToolStripMenuItem.Click += new System.EventHandler(this.openToolStripMenuItem_Click);
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(152, 6);
     //
     // exitToolStripMenuItem
     //
     this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
     this.exitToolStripMenuItem.Size = new System.Drawing.Size(155, 22);
     this.exitToolStripMenuItem.Text = "E&xit";
     this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
     //
     // helpToolStripMenuItem
     //
     this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.viewHelpToolStripMenuItem,
     this.toolStripSeparator4,
     this.aboutStatisticalAnalyzerToolStripMenuItem});
     this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
     this.helpToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.H)));
     this.helpToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
     this.helpToolStripMenuItem.Text = "&Help";
     //
     // viewHelpToolStripMenuItem
     //
     this.viewHelpToolStripMenuItem.Name = "viewHelpToolStripMenuItem";
     this.viewHelpToolStripMenuItem.ShortcutKeys = System.Windows.Forms.Keys.F1;
     this.viewHelpToolStripMenuItem.Size = new System.Drawing.Size(217, 22);
     this.viewHelpToolStripMenuItem.Text = "&View Help...";
     this.viewHelpToolStripMenuItem.Click += new System.EventHandler(this.viewHelpToolStripMenuItem_Click);
     //
     // toolStripSeparator4
     //
     this.toolStripSeparator4.Name = "toolStripSeparator4";
     this.toolStripSeparator4.Size = new System.Drawing.Size(214, 6);
     //
     // aboutStatisticalAnalyzerToolStripMenuItem
     //
     this.aboutStatisticalAnalyzerToolStripMenuItem.Name = "aboutStatisticalAnalyzerToolStripMenuItem";
     this.aboutStatisticalAnalyzerToolStripMenuItem.Size = new System.Drawing.Size(217, 22);
     this.aboutStatisticalAnalyzerToolStripMenuItem.Text = "&About Statistical Analyzer...";
     this.aboutStatisticalAnalyzerToolStripMenuItem.Click += new System.EventHandler(this.aboutStatisticalAnalyzerToolStripMenuItem_Click);
     //
     // InputAndSelectionForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(963, 489);
     this.Controls.Add(this.menInputAndSelection);
     this.Controls.Add(this.grpDataType);
     this.Controls.Add(this.btnRun);
     this.Controls.Add(this.groupBox5);
     this.Controls.Add(this.groupBox1);
     this.Cursor = System.Windows.Forms.Cursors.Default;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.MainMenuStrip = this.menInputAndSelection;
     this.MaximizeBox = false;
     this.Name = "InputAndSelectionForm";
     this.Text = "Statistical Analyzer";
     this.Load += new System.EventHandler(this.InputAndSelectionForm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dgvData)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.grpDataType.ResumeLayout(false);
     this.grpDataType.PerformLayout();
     this.groupBox5.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dgvStatMeasure)).EndInit();
     this.cmsDataCells.ResumeLayout(false);
     this.menInputAndSelection.ResumeLayout(false);
     this.menInputAndSelection.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Beispiel #51
0
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.menuStrip1 = new System.Windows.Forms.MenuStrip();
     this.настройкаToolStripMenuItem               = new System.Windows.Forms.ToolStripMenuItem();
     this.фильтрыToolStripMenuItem                 = new System.Windows.Forms.ToolStripMenuItem();
     this.выбратьИсходнуюПапкуToolStripMenuItem    = new System.Windows.Forms.ToolStripMenuItem();
     this.повторноПрименитьФильтрToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.tsMenuUseML           = new System.Windows.Forms.ToolStripMenuItem();
     this.comboFilters          = new System.Windows.Forms.ToolStripComboBox();
     this.tbSearch              = new System.Windows.Forms.ToolStripTextBox();
     this.button1               = new System.Windows.Forms.Button();
     this.folderBrowserDialog1  = new System.Windows.Forms.FolderBrowserDialog();
     this.statusStrip1          = new System.Windows.Forms.StatusStrip();
     this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
     this.statInfo              = new System.Windows.Forms.ToolStripStatusLabel();
     this.contextMenuStrip1     = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.добавитьФайлВИсключениенеПеремещатьToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.удалитьФайлИзИсключенияToolStripMenuItem             = new System.Windows.Forms.ToolStripMenuItem();
     this.отметитьВыбранныеToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.отметитьВсеToolStripMenuItem       = new System.Windows.Forms.ToolStripMenuItem();
     this.снятьВсеОтметкиToolStripMenuItem   = new System.Windows.Forms.ToolStripMenuItem();
     this.bindingSource2 = new System.Windows.Forms.BindingSource(this.components);
     this.checkBox1      = new System.Windows.Forms.CheckBox();
     this.tbLog          = new System.Windows.Forms.TextBox();
     this.dataGridView1  = new SortFaxes.UserDataGridView();
     this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
     this.copyDataGridViewCheckBoxColumn          = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.fileNameDataGridViewTextBoxColumn       = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.destinationDirDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewComboBoxColumn();
     this.Score = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dateEventDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.menuStrip1.SuspendLayout();
     this.statusStrip1.SuspendLayout();
     this.contextMenuStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
     this.SuspendLayout();
     //
     // menuStrip1
     //
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.настройкаToolStripMenuItem,
         this.comboFilters,
         this.tbSearch
     });
     this.menuStrip1.Location = new System.Drawing.Point(0, 0);
     this.menuStrip1.Name     = "menuStrip1";
     this.menuStrip1.Size     = new System.Drawing.Size(1193, 27);
     this.menuStrip1.TabIndex = 2;
     this.menuStrip1.Text     = "menuStrip1";
     //
     // настройкаToolStripMenuItem
     //
     this.настройкаToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.фильтрыToolStripMenuItem,
         this.выбратьИсходнуюПапкуToolStripMenuItem,
         this.повторноПрименитьФильтрToolStripMenuItem,
         this.tsMenuUseML
     });
     this.настройкаToolStripMenuItem.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.настройкаToolStripMenuItem.Name = "настройкаToolStripMenuItem";
     this.настройкаToolStripMenuItem.Size = new System.Drawing.Size(87, 23);
     this.настройкаToolStripMenuItem.Text = "Настройка";
     //
     // фильтрыToolStripMenuItem
     //
     this.фильтрыToolStripMenuItem.Name   = "фильтрыToolStripMenuItem";
     this.фильтрыToolStripMenuItem.Size   = new System.Drawing.Size(265, 22);
     this.фильтрыToolStripMenuItem.Text   = "Фильтры...";
     this.фильтрыToolStripMenuItem.Click += new System.EventHandler(this.ФильтрыToolStripMenuItemClick);
     //
     // выбратьИсходнуюПапкуToolStripMenuItem
     //
     this.выбратьИсходнуюПапкуToolStripMenuItem.Name   = "выбратьИсходнуюПапкуToolStripMenuItem";
     this.выбратьИсходнуюПапкуToolStripMenuItem.Size   = new System.Drawing.Size(265, 22);
     this.выбратьИсходнуюПапкуToolStripMenuItem.Text   = "Выбрать исходную папку...";
     this.выбратьИсходнуюПапкуToolStripMenuItem.Click += new System.EventHandler(this.ВыбратьИсходнуюПапкуToolStripMenuItemClick);
     //
     // повторноПрименитьФильтрToolStripMenuItem
     //
     this.повторноПрименитьФильтрToolStripMenuItem.Name   = "повторноПрименитьФильтрToolStripMenuItem";
     this.повторноПрименитьФильтрToolStripMenuItem.Size   = new System.Drawing.Size(265, 22);
     this.повторноПрименитьФильтрToolStripMenuItem.Text   = "Повторно применить фильтр";
     this.повторноПрименитьФильтрToolStripMenuItem.Click += new System.EventHandler(this.ПовторноПрименитьФильтрToolStripMenuItemClick);
     //
     // tsMenuUseML
     //
     this.tsMenuUseML.Checked      = true;
     this.tsMenuUseML.CheckOnClick = true;
     this.tsMenuUseML.CheckState   = System.Windows.Forms.CheckState.Checked;
     this.tsMenuUseML.Name         = "tsMenuUseML";
     this.tsMenuUseML.Size         = new System.Drawing.Size(265, 22);
     this.tsMenuUseML.Text         = "Использовать нейросеть";
     this.tsMenuUseML.Click       += new System.EventHandler(this.tsMenuUseML_Click);
     //
     // comboFilters
     //
     this.comboFilters.Name   = "comboFilters";
     this.comboFilters.Size   = new System.Drawing.Size(121, 23);
     this.comboFilters.Click += new System.EventHandler(this.comboFilters_Click);
     //
     // tbSearch
     //
     this.tbSearch.BackColor = System.Drawing.Color.Khaki;
     this.tbSearch.Font      = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.tbSearch.ForeColor = System.Drawing.Color.Crimson;
     this.tbSearch.Name      = "tbSearch";
     this.tbSearch.Size      = new System.Drawing.Size(200, 23);
     //
     // button1
     //
     this.button1.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.button1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(128)))));
     this.button1.Cursor    = System.Windows.Forms.Cursors.Hand;
     this.button1.FlatAppearance.BorderColor = System.Drawing.Color.Black;
     this.button1.FlatAppearance.BorderSize  = 2;
     this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.button1.Font      = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.button1.ForeColor = System.Drawing.SystemColors.WindowText;
     this.button1.Location  = new System.Drawing.Point(0, 677);
     this.button1.Name      = "button1";
     this.button1.Size      = new System.Drawing.Size(333, 31);
     this.button1.TabIndex  = 4;
     this.button1.Text      = "Переместить выбранные файлы";
     this.button1.UseVisualStyleBackColor = false;
     this.button1.Click += new System.EventHandler(this.Button1Click);
     //
     // folderBrowserDialog1
     //
     this.folderBrowserDialog1.RootFolder          = System.Environment.SpecialFolder.DesktopDirectory;
     this.folderBrowserDialog1.ShowNewFolderButton = false;
     //
     // statusStrip1
     //
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toolStripStatusLabel1,
         this.statInfo
     });
     this.statusStrip1.Location = new System.Drawing.Point(0, 711);
     this.statusStrip1.Name     = "statusStrip1";
     this.statusStrip1.Size     = new System.Drawing.Size(1193, 22);
     this.statusStrip1.TabIndex = 5;
     this.statusStrip1.Text     = "statusStrip1";
     //
     // toolStripStatusLabel1
     //
     this.toolStripStatusLabel1.Name      = "toolStripStatusLabel1";
     this.toolStripStatusLabel1.Size      = new System.Drawing.Size(38, 17);
     this.toolStripStatusLabel1.Text      = "status";
     this.toolStripStatusLabel1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // statInfo
     //
     this.statInfo.AutoToolTip  = true;
     this.statInfo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.statInfo.ForeColor    = System.Drawing.Color.MidnightBlue;
     this.statInfo.Name         = "statInfo";
     this.statInfo.RightToLeft  = System.Windows.Forms.RightToLeft.No;
     this.statInfo.Size         = new System.Drawing.Size(10, 17);
     this.statInfo.Text         = ".";
     this.statInfo.TextAlign    = System.Drawing.ContentAlignment.MiddleRight;
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.добавитьФайлВИсключениенеПеремещатьToolStripMenuItem,
         this.удалитьФайлИзИсключенияToolStripMenuItem,
         this.отметитьВыбранныеToolStripMenuItem,
         this.отметитьВсеToolStripMenuItem,
         this.снятьВсеОтметкиToolStripMenuItem
     });
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(336, 114);
     //
     // добавитьФайлВИсключениенеПеремещатьToolStripMenuItem
     //
     this.добавитьФайлВИсключениенеПеремещатьToolStripMenuItem.Name   = "добавитьФайлВИсключениенеПеремещатьToolStripMenuItem";
     this.добавитьФайлВИсключениенеПеремещатьToolStripMenuItem.Size   = new System.Drawing.Size(335, 22);
     this.добавитьФайлВИсключениенеПеремещатьToolStripMenuItem.Text   = "Добавить файл в исключение (не перемещать)";
     this.добавитьФайлВИсключениенеПеремещатьToolStripMenuItem.Click += new System.EventHandler(this.ДобавитьФайлВИсключениенеПеремещатьToolStripMenuItemClick);
     //
     // удалитьФайлИзИсключенияToolStripMenuItem
     //
     this.удалитьФайлИзИсключенияToolStripMenuItem.Name   = "удалитьФайлИзИсключенияToolStripMenuItem";
     this.удалитьФайлИзИсключенияToolStripMenuItem.Size   = new System.Drawing.Size(335, 22);
     this.удалитьФайлИзИсключенияToolStripMenuItem.Text   = "Удалить файл из исключения";
     this.удалитьФайлИзИсключенияToolStripMenuItem.Click += new System.EventHandler(this.УдалитьФайлИзИсключенияToolStripMenuItemClick);
     //
     // отметитьВыбранныеToolStripMenuItem
     //
     this.отметитьВыбранныеToolStripMenuItem.BackColor = System.Drawing.Color.MediumAquamarine;
     this.отметитьВыбранныеToolStripMenuItem.Name      = "отметитьВыбранныеToolStripMenuItem";
     this.отметитьВыбранныеToolStripMenuItem.Size      = new System.Drawing.Size(335, 22);
     this.отметитьВыбранныеToolStripMenuItem.Text      = "Отметить выбранные";
     this.отметитьВыбранныеToolStripMenuItem.Click    += new System.EventHandler(this.отметитьВыбранныеToolStripMenuItem_Click);
     //
     // отметитьВсеToolStripMenuItem
     //
     this.отметитьВсеToolStripMenuItem.BackColor = System.Drawing.SystemColors.GradientActiveCaption;
     this.отметитьВсеToolStripMenuItem.Name      = "отметитьВсеToolStripMenuItem";
     this.отметитьВсеToolStripMenuItem.Size      = new System.Drawing.Size(335, 22);
     this.отметитьВсеToolStripMenuItem.Text      = "Отметить все";
     this.отметитьВсеToolStripMenuItem.Click    += new System.EventHandler(this.отметитьВсеToolStripMenuItem_Click);
     //
     // снятьВсеОтметкиToolStripMenuItem
     //
     this.снятьВсеОтметкиToolStripMenuItem.BackColor = System.Drawing.SystemColors.ControlLight;
     this.снятьВсеОтметкиToolStripMenuItem.Name      = "снятьВсеОтметкиToolStripMenuItem";
     this.снятьВсеОтметкиToolStripMenuItem.Size      = new System.Drawing.Size(335, 22);
     this.снятьВсеОтметкиToolStripMenuItem.Text      = "Снять все отметки";
     this.снятьВсеОтметкиToolStripMenuItem.Click    += new System.EventHandler(this.снятьВсеОтметкиToolStripMenuItem_Click);
     //
     // checkBox1
     //
     this.checkBox1.BackColor = System.Drawing.Color.LightCyan;
     this.checkBox1.Font      = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.checkBox1.ForeColor = System.Drawing.Color.Black;
     this.checkBox1.Location  = new System.Drawing.Point(446, 3);
     this.checkBox1.Name      = "checkBox1";
     this.checkBox1.Size      = new System.Drawing.Size(201, 24);
     this.checkBox1.TabIndex  = 6;
     this.checkBox1.Text      = "Скрыть неотмеченные";
     this.checkBox1.UseVisualStyleBackColor = false;
     this.checkBox1.CheckedChanged         += new System.EventHandler(this.CheckBox1CheckedChanged);
     //
     // tbLog
     //
     this.tbLog.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.tbLog.Font       = new System.Drawing.Font("Palatino Linotype", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.tbLog.Location   = new System.Drawing.Point(540, 683);
     this.tbLog.Multiline  = true;
     this.tbLog.Name       = "tbLog";
     this.tbLog.ReadOnly   = true;
     this.tbLog.ScrollBars = System.Windows.Forms.ScrollBars.Both;
     this.tbLog.Size       = new System.Drawing.Size(653, 48);
     this.tbLog.TabIndex   = 7;
     //
     // dataGridView1
     //
     this.dataGridView1.AllowUserToAddRows    = false;
     this.dataGridView1.AllowUserToDeleteRows = false;
     this.dataGridView1.AllowUserToResizeRows = false;
     this.dataGridView1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                        | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.dataGridView1.AutoGenerateColumns         = false;
     this.dataGridView1.CheckedCount                = 0;
     this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
         this.copyDataGridViewCheckBoxColumn,
         this.fileNameDataGridViewTextBoxColumn,
         this.destinationDirDataGridViewTextBoxColumn,
         this.Score,
         this.dateEventDataGridViewTextBoxColumn
     });
     this.dataGridView1.ContextMenuStrip  = this.contextMenuStrip1;
     this.dataGridView1.DataSource        = this.bindingSource1;
     this.dataGridView1.EditMode          = System.Windows.Forms.DataGridViewEditMode.EditOnEnter;
     this.dataGridView1.Location          = new System.Drawing.Point(0, 27);
     this.dataGridView1.Name              = "dataGridView1";
     this.dataGridView1.RowHeadersVisible = false;
     this.dataGridView1.SelectionMode     = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dataGridView1.ShowCellErrors    = false;
     this.dataGridView1.ShowEditingIcon   = false;
     this.dataGridView1.ShowRowErrors     = false;
     this.dataGridView1.Size              = new System.Drawing.Size(1193, 652);
     this.dataGridView1.TabIndex          = 3;
     //
     // bindingSource1
     //
     this.bindingSource1.AllowNew   = false;
     this.bindingSource1.DataSource = typeof(SortFaxes.QFile);
     //
     // copyDataGridViewCheckBoxColumn
     //
     this.copyDataGridViewCheckBoxColumn.DataPropertyName = "Copy";
     this.copyDataGridViewCheckBoxColumn.HeaderText       = "Переместить";
     this.copyDataGridViewCheckBoxColumn.Name             = "copyDataGridViewCheckBoxColumn";
     //
     // fileNameDataGridViewTextBoxColumn
     //
     this.fileNameDataGridViewTextBoxColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
     this.fileNameDataGridViewTextBoxColumn.DataPropertyName = "FileName";
     this.fileNameDataGridViewTextBoxColumn.HeaderText       = "Имя файла";
     this.fileNameDataGridViewTextBoxColumn.MinimumWidth     = 250;
     this.fileNameDataGridViewTextBoxColumn.Name             = "fileNameDataGridViewTextBoxColumn";
     this.fileNameDataGridViewTextBoxColumn.ReadOnly         = true;
     this.fileNameDataGridViewTextBoxColumn.Width            = 250;
     //
     // destinationDirDataGridViewTextBoxColumn
     //
     this.destinationDirDataGridViewTextBoxColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
     this.destinationDirDataGridViewTextBoxColumn.DataPropertyName = "DestinationDir";
     this.destinationDirDataGridViewTextBoxColumn.DropDownWidth    = 20;
     this.destinationDirDataGridViewTextBoxColumn.HeaderText       = "Куда";
     this.destinationDirDataGridViewTextBoxColumn.MaxDropDownItems = 12;
     this.destinationDirDataGridViewTextBoxColumn.Name             = "destinationDirDataGridViewTextBoxColumn";
     this.destinationDirDataGridViewTextBoxColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
     this.destinationDirDataGridViewTextBoxColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     this.destinationDirDataGridViewTextBoxColumn.Width            = 56;
     //
     // Score
     //
     this.Score.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
     this.Score.DataPropertyName = "Score";
     this.Score.HeaderText       = "%";
     this.Score.Name             = "Score";
     this.Score.ToolTipText      = "Вероятность угадывания папки для файла";
     this.Score.Width            = 40;
     //
     // dateEventDataGridViewTextBoxColumn
     //
     this.dateEventDataGridViewTextBoxColumn.DataPropertyName = "DateEvent";
     this.dateEventDataGridViewTextBoxColumn.HeaderText       = "Дата события";
     this.dateEventDataGridViewTextBoxColumn.Name             = "dateEventDataGridViewTextBoxColumn";
     this.dateEventDataGridViewTextBoxColumn.ReadOnly         = true;
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1193, 733);
     this.Controls.Add(this.tbLog);
     this.Controls.Add(this.checkBox1);
     this.Controls.Add(this.statusStrip1);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.dataGridView1);
     this.Controls.Add(this.menuStrip1);
     this.MainMenuStrip     = this.menuStrip1;
     this.Name              = "MainForm";
     this.RightToLeftLayout = true;
     this.Text              = "SortFaxes";
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     this.contextMenuStrip1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Beispiel #52
0
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
     this.toolStrip1                = new System.Windows.Forms.ToolStrip();
     this.handleLabel1              = new System.Windows.Forms.ToolStripLabel();
     this.handleBox1                = new System.Windows.Forms.ToolStripTextBox();
     this.thresholdLabel1           = new System.Windows.Forms.ToolStripLabel();
     this.thresholdBox1             = new System.Windows.Forms.ToolStripComboBox();
     this.memoryLabel1              = new System.Windows.Forms.ToolStripLabel();
     this.memoryBox1                = new System.Windows.Forms.ToolStripComboBox();
     this.messageLabel1             = new System.Windows.Forms.ToolStripLabel();
     this.chatBox1                  = new System.Windows.Forms.ToolStripTextBox();
     this.startButton1              = new System.Windows.Forms.ToolStripSplitButton();
     this.扫描血量内存地址ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.发送文本消息ToolStripMenuItem   = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator1       = new System.Windows.Forms.ToolStripSeparator();
     this.勾魂利爪ToolStripMenuItem     = new System.Windows.Forms.ToolStripMenuItem();
     this.注册药师技能热键ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.keyButton1                = new System.Windows.Forms.ToolStripSplitButton();
     this.f8ToolStripMenuItem       = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStrip2                = new System.Windows.Forms.ToolStrip();
     this.toolStripLabel1           = new System.Windows.Forms.ToolStripLabel();
     this.handleBox2                = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripLabel2           = new System.Windows.Forms.ToolStripLabel();
     this.thresholdBox2             = new System.Windows.Forms.ToolStripComboBox();
     this.toolStripLabel3           = new System.Windows.Forms.ToolStripLabel();
     this.memoryBox2                = new System.Windows.Forms.ToolStripComboBox();
     this.startButton2              = new System.Windows.Forms.ToolStripSplitButton();
     this.toolStripMenuItem1        = new System.Windows.Forms.ToolStripMenuItem();
     this.发送文本消息ToolStripMenuItem1  = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSplitButton1     = new System.Windows.Forms.ToolStripSplitButton();
     this.f2ToolStripMenuItem       = new System.Windows.Forms.ToolStripMenuItem();
     this.f8Item2                 = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStrip3              = new System.Windows.Forms.ToolStrip();
     this.destroyClawsButton      = new System.Windows.Forms.ToolStripButton();
     this.f3F5F4ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStrip1.SuspendLayout();
     this.toolStrip2.SuspendLayout();
     this.toolStrip3.SuspendLayout();
     this.SuspendLayout();
     //
     // toolStrip1
     //
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.handleLabel1,
         this.handleBox1,
         this.thresholdLabel1,
         this.thresholdBox1,
         this.memoryLabel1,
         this.memoryBox1,
         this.messageLabel1,
         this.chatBox1,
         this.startButton1,
         this.keyButton1
     });
     this.toolStrip1.Location = new System.Drawing.Point(0, 0);
     this.toolStrip1.Name     = "toolStrip1";
     this.toolStrip1.Size     = new System.Drawing.Size(767, 25);
     this.toolStrip1.TabIndex = 0;
     this.toolStrip1.Text     = "toolStrip1";
     //
     // handleLabel1
     //
     this.handleLabel1.Name = "handleLabel1";
     this.handleLabel1.Size = new System.Drawing.Size(32, 22);
     this.handleLabel1.Text = "句柄";
     //
     // handleBox1
     //
     this.handleBox1.Name = "handleBox1";
     this.handleBox1.Size = new System.Drawing.Size(100, 25);
     //
     // thresholdLabel1
     //
     this.thresholdLabel1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.thresholdLabel1.Name         = "thresholdLabel1";
     this.thresholdLabel1.Size         = new System.Drawing.Size(32, 22);
     this.thresholdLabel1.Text         = "阙值";
     //
     // thresholdBox1
     //
     this.thresholdBox1.Name = "thresholdBox1";
     this.thresholdBox1.Size = new System.Drawing.Size(121, 25);
     //
     // memoryLabel1
     //
     this.memoryLabel1.Name = "memoryLabel1";
     this.memoryLabel1.Size = new System.Drawing.Size(56, 22);
     this.memoryLabel1.Text = "内存地址";
     //
     // memoryBox1
     //
     this.memoryBox1.Name = "memoryBox1";
     this.memoryBox1.Size = new System.Drawing.Size(121, 25);
     //
     // messageLabel1
     //
     this.messageLabel1.Name = "messageLabel1";
     this.messageLabel1.Size = new System.Drawing.Size(32, 22);
     this.messageLabel1.Text = "消失";
     //
     // chatBox1
     //
     this.chatBox1.Name = "chatBox1";
     this.chatBox1.Size = new System.Drawing.Size(100, 25);
     //
     // startButton1
     //
     this.startButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.startButton1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.扫描血量内存地址ToolStripMenuItem,
         this.发送文本消息ToolStripMenuItem,
         this.toolStripSeparator1,
         this.勾魂利爪ToolStripMenuItem,
         this.注册药师技能热键ToolStripMenuItem
     });
     this.startButton1.Image = ((System.Drawing.Image)(resources.GetObject("startButton1.Image")));
     this.startButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.startButton1.Name         = "startButton1";
     this.startButton1.Size         = new System.Drawing.Size(48, 22);
     this.startButton1.Text         = "启动";
     this.startButton1.ButtonClick += new System.EventHandler(this.StartButton1ButtonClick);
     //
     // 扫描血量内存地址ToolStripMenuItem
     //
     this.扫描血量内存地址ToolStripMenuItem.Name   = "扫描血量内存地址ToolStripMenuItem";
     this.扫描血量内存地址ToolStripMenuItem.Size   = new System.Drawing.Size(172, 22);
     this.扫描血量内存地址ToolStripMenuItem.Text   = "扫描血量内存地址";
     this.扫描血量内存地址ToolStripMenuItem.Click += new System.EventHandler(this.扫描血量内存地址ToolStripMenuItemClick);
     //
     // 发送文本消息ToolStripMenuItem
     //
     this.发送文本消息ToolStripMenuItem.Name   = "发送文本消息ToolStripMenuItem";
     this.发送文本消息ToolStripMenuItem.Size   = new System.Drawing.Size(172, 22);
     this.发送文本消息ToolStripMenuItem.Text   = "发送文本消息";
     this.发送文本消息ToolStripMenuItem.Click += new System.EventHandler(this.发送文本消息ToolStripMenuItemClick);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(169, 6);
     //
     // 勾魂利爪ToolStripMenuItem
     //
     this.勾魂利爪ToolStripMenuItem.Name   = "勾魂利爪ToolStripMenuItem";
     this.勾魂利爪ToolStripMenuItem.Size   = new System.Drawing.Size(172, 22);
     this.勾魂利爪ToolStripMenuItem.Text   = "勾魂利爪";
     this.勾魂利爪ToolStripMenuItem.Click += new System.EventHandler(this.勾魂利爪ToolStripMenuItemClick);
     //
     // 注册药师技能热键ToolStripMenuItem
     //
     this.注册药师技能热键ToolStripMenuItem.Name   = "注册药师技能热键ToolStripMenuItem";
     this.注册药师技能热键ToolStripMenuItem.Size   = new System.Drawing.Size(172, 22);
     this.注册药师技能热键ToolStripMenuItem.Text   = "注册药师技能热键";
     this.注册药师技能热键ToolStripMenuItem.Click += new System.EventHandler(this.注册药师技能热键ToolStripMenuItemClick);
     //
     // keyButton1
     //
     this.keyButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.keyButton1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.f8ToolStripMenuItem
     });
     this.keyButton1.Image = ((System.Drawing.Image)(resources.GetObject("keyButton1.Image")));
     this.keyButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.keyButton1.Name = "keyButton1";
     this.keyButton1.Size = new System.Drawing.Size(48, 22);
     this.keyButton1.Text = "按键";
     //
     // f8ToolStripMenuItem
     //
     this.f8ToolStripMenuItem.Name   = "f8ToolStripMenuItem";
     this.f8ToolStripMenuItem.Size   = new System.Drawing.Size(89, 22);
     this.f8ToolStripMenuItem.Text   = "F8";
     this.f8ToolStripMenuItem.Click += new System.EventHandler(this.F8ToolStripMenuItemClick);
     //
     // toolStrip2
     //
     this.toolStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toolStripLabel1,
         this.handleBox2,
         this.toolStripLabel2,
         this.thresholdBox2,
         this.toolStripLabel3,
         this.memoryBox2,
         this.startButton2,
         this.toolStripSplitButton1
     });
     this.toolStrip2.Location = new System.Drawing.Point(0, 25);
     this.toolStrip2.Name     = "toolStrip2";
     this.toolStrip2.Size     = new System.Drawing.Size(767, 25);
     this.toolStrip2.TabIndex = 1;
     this.toolStrip2.Text     = "toolStrip2";
     //
     // toolStripLabel1
     //
     this.toolStripLabel1.Name = "toolStripLabel1";
     this.toolStripLabel1.Size = new System.Drawing.Size(32, 22);
     this.toolStripLabel1.Text = "句柄";
     //
     // handleBox2
     //
     this.handleBox2.Name = "handleBox2";
     this.handleBox2.Size = new System.Drawing.Size(100, 25);
     //
     // toolStripLabel2
     //
     this.toolStripLabel2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.toolStripLabel2.Name         = "toolStripLabel2";
     this.toolStripLabel2.Size         = new System.Drawing.Size(32, 22);
     this.toolStripLabel2.Text         = "阙值";
     //
     // thresholdBox2
     //
     this.thresholdBox2.Name = "thresholdBox2";
     this.thresholdBox2.Size = new System.Drawing.Size(121, 25);
     //
     // toolStripLabel3
     //
     this.toolStripLabel3.Name = "toolStripLabel3";
     this.toolStripLabel3.Size = new System.Drawing.Size(56, 22);
     this.toolStripLabel3.Text = "内存地址";
     //
     // memoryBox2
     //
     this.memoryBox2.Name = "memoryBox2";
     this.memoryBox2.Size = new System.Drawing.Size(121, 25);
     //
     // startButton2
     //
     this.startButton2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.startButton2.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toolStripMenuItem1,
         this.发送文本消息ToolStripMenuItem1
     });
     this.startButton2.Image = ((System.Drawing.Image)(resources.GetObject("startButton2.Image")));
     this.startButton2.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.startButton2.Name         = "startButton2";
     this.startButton2.Size         = new System.Drawing.Size(48, 22);
     this.startButton2.Text         = "启动";
     this.startButton2.ButtonClick += new System.EventHandler(this.StartButton2ButtonClick);
     //
     // toolStripMenuItem1
     //
     this.toolStripMenuItem1.Name   = "toolStripMenuItem1";
     this.toolStripMenuItem1.Size   = new System.Drawing.Size(172, 22);
     this.toolStripMenuItem1.Text   = "扫描血量内存地址";
     this.toolStripMenuItem1.Click += new System.EventHandler(this.ToolStripMenuItem1Click);
     //
     // 发送文本消息ToolStripMenuItem1
     //
     this.发送文本消息ToolStripMenuItem1.Name   = "发送文本消息ToolStripMenuItem1";
     this.发送文本消息ToolStripMenuItem1.Size   = new System.Drawing.Size(172, 22);
     this.发送文本消息ToolStripMenuItem1.Text   = "发送文本消息";
     this.发送文本消息ToolStripMenuItem1.Click += new System.EventHandler(this.发送文本消息ToolStripMenuItem1Click);
     //
     // toolStripSplitButton1
     //
     this.toolStripSplitButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.toolStripSplitButton1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.f2ToolStripMenuItem,
         this.f8Item2,
         this.f3F5F4ToolStripMenuItem
     });
     this.toolStripSplitButton1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripSplitButton1.Image")));
     this.toolStripSplitButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripSplitButton1.Name = "toolStripSplitButton1";
     this.toolStripSplitButton1.Size = new System.Drawing.Size(48, 22);
     this.toolStripSplitButton1.Text = "按键";
     //
     // f2ToolStripMenuItem
     //
     this.f2ToolStripMenuItem.Name   = "f2ToolStripMenuItem";
     this.f2ToolStripMenuItem.Size   = new System.Drawing.Size(152, 22);
     this.f2ToolStripMenuItem.Text   = "F2";
     this.f2ToolStripMenuItem.Click += new System.EventHandler(this.F8Item2Click);
     //
     // f8Item2
     //
     this.f8Item2.Name   = "f8Item2";
     this.f8Item2.Size   = new System.Drawing.Size(152, 22);
     this.f8Item2.Text   = "F8";
     this.f8Item2.Click += new System.EventHandler(this.F8Item2Click);
     //
     // toolStrip3
     //
     this.toolStrip3.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.destroyClawsButton
     });
     this.toolStrip3.Location = new System.Drawing.Point(0, 50);
     this.toolStrip3.Name     = "toolStrip3";
     this.toolStrip3.Size     = new System.Drawing.Size(767, 25);
     this.toolStrip3.TabIndex = 2;
     this.toolStrip3.Text     = "toolStrip3";
     //
     // destroyClawsButton
     //
     this.destroyClawsButton.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.destroyClawsButton.Image                 = ((System.Drawing.Image)(resources.GetObject("destroyClawsButton.Image")));
     this.destroyClawsButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.destroyClawsButton.Name   = "destroyClawsButton";
     this.destroyClawsButton.Size   = new System.Drawing.Size(23, 22);
     this.destroyClawsButton.Text   = "toolStripButton1";
     this.destroyClawsButton.Click += new System.EventHandler(this.DestroyClawsButtonClick);
     //
     // f3F5F4ToolStripMenuItem
     //
     this.f3F5F4ToolStripMenuItem.Name   = "f3F5F4ToolStripMenuItem";
     this.f3F5F4ToolStripMenuItem.Size   = new System.Drawing.Size(152, 22);
     this.f3F5F4ToolStripMenuItem.Text   = "F3+F5+F4";
     this.f3F5F4ToolStripMenuItem.Click += new System.EventHandler(this.F3F5F4ToolStripMenuItemClick);
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(767, 78);
     this.Controls.Add(this.toolStrip3);
     this.Controls.Add(this.toolStrip2);
     this.Controls.Add(this.toolStrip1);
     this.Name         = "MainForm";
     this.Text         = "FFO";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainFormFormClosing);
     this.Load        += new System.EventHandler(this.MainFormLoad);
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     this.toolStrip2.ResumeLayout(false);
     this.toolStrip2.PerformLayout();
     this.toolStrip3.ResumeLayout(false);
     this.toolStrip3.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Beispiel #53
0
 /// <summary> 
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.labelItemShuoMing = new System.Windows.Forms.Label();
     this.panelBigXY = new System.Windows.Forms.Panel();
     this.buttonBigXYBig = new System.Windows.Forms.Button();
     this.buttonBigXYQuit = new System.Windows.Forms.Button();
     this.pictureBoxBigXY = new System.Windows.Forms.PictureBox();
     this.MenuRightClick = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.toolStripTextBoxX = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripTextBoxY = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.网格显示ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.放大选取框功能ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.坐标自动调整ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.默认坐标范围ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.slide = new NationalInstruments.UI.WindowsForms.Slide();
     this.panel_itemsIN = new System.Windows.Forms.FlowLayoutPanel();
     this.BTN_切换Y轴 = new System.Windows.Forms.Button();
     this.BTN_停止显示 = new System.Windows.Forms.Button();
     this.buttonReXY = new System.Windows.Forms.Button();
     this.buttonModeXY = new System.Windows.Forms.Button();
     this.buttonBigModeXY = new System.Windows.Forms.Button();
     this.buttonLinesShowXY = new System.Windows.Forms.Button();
     this.btn_调整坐标轴 = new System.Windows.Forms.Button();
     this.legend1 = new NationalInstruments.UI.WindowsForms.Legend();
     this.xAxis_Looking = new NationalInstruments.UI.XAxis();
     this.Graph_View = new NationalInstruments.UI.WindowsForms.ScatterGraph();
     this.xyCursorB = new NationalInstruments.UI.XYCursor();
     this.scatterPlot2 = new NationalInstruments.UI.ScatterPlot();
     this.yAxis1 = new NationalInstruments.UI.YAxis();
     this.xyCursorE = new NationalInstruments.UI.XYCursor();
     this.panel_text = new System.Windows.Forms.Panel();
     this.panelBigXY.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBoxBigXY)).BeginInit();
     this.MenuRightClick.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.slide)).BeginInit();
     this.panel_itemsIN.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.legend1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Graph_View)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xyCursorB)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xyCursorE)).BeginInit();
     this.SuspendLayout();
     //
     // labelItemShuoMing
     //
     this.labelItemShuoMing.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelItemShuoMing.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(32)))), ((int)(((byte)(32)))));
     this.labelItemShuoMing.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.labelItemShuoMing.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.labelItemShuoMing.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.labelItemShuoMing.ForeColor = System.Drawing.Color.White;
     this.labelItemShuoMing.Location = new System.Drawing.Point(868, 518);
     this.labelItemShuoMing.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.labelItemShuoMing.Name = "labelItemShuoMing";
     this.labelItemShuoMing.Size = new System.Drawing.Size(149, 47);
     this.labelItemShuoMing.TabIndex = 10;
     this.labelItemShuoMing.Text = "说明";
     this.labelItemShuoMing.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.labelItemShuoMing.Visible = false;
     //
     // panelBigXY
     //
     this.panelBigXY.BackColor = System.Drawing.Color.Transparent;
     this.panelBigXY.Controls.Add(this.buttonBigXYBig);
     this.panelBigXY.Controls.Add(this.buttonBigXYQuit);
     this.panelBigXY.Location = new System.Drawing.Point(650, 327);
     this.panelBigXY.Margin = new System.Windows.Forms.Padding(4);
     this.panelBigXY.Name = "panelBigXY";
     this.panelBigXY.Size = new System.Drawing.Size(171, 48);
     this.panelBigXY.TabIndex = 16;
     this.panelBigXY.Visible = false;
     //
     // buttonBigXYBig
     //
     this.buttonBigXYBig.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonBigXYBig.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.buttonBigXYBig.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.buttonBigXYBig.ForeColor = System.Drawing.Color.Black;
     this.buttonBigXYBig.Location = new System.Drawing.Point(32, 14);
     this.buttonBigXYBig.Margin = new System.Windows.Forms.Padding(0);
     this.buttonBigXYBig.Name = "buttonBigXYBig";
     this.buttonBigXYBig.Size = new System.Drawing.Size(70, 34);
     this.buttonBigXYBig.TabIndex = 13;
     this.buttonBigXYBig.TabStop = false;
     this.buttonBigXYBig.Text = "放大";
     this.buttonBigXYBig.UseVisualStyleBackColor = false;
     this.buttonBigXYBig.Click += new System.EventHandler(this.buttonBigXYBig_Click);
     //
     // buttonBigXYQuit
     //
     this.buttonBigXYQuit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonBigXYQuit.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.buttonBigXYQuit.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.buttonBigXYQuit.ForeColor = System.Drawing.Color.Black;
     this.buttonBigXYQuit.Location = new System.Drawing.Point(104, 14);
     this.buttonBigXYQuit.Margin = new System.Windows.Forms.Padding(0);
     this.buttonBigXYQuit.Name = "buttonBigXYQuit";
     this.buttonBigXYQuit.Size = new System.Drawing.Size(66, 34);
     this.buttonBigXYQuit.TabIndex = 12;
     this.buttonBigXYQuit.TabStop = false;
     this.buttonBigXYQuit.Text = "取消";
     this.buttonBigXYQuit.UseVisualStyleBackColor = false;
     this.buttonBigXYQuit.Click += new System.EventHandler(this.buttonBigXYQuit_Click);
     //
     // pictureBoxBigXY
     //
     this.pictureBoxBigXY.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(50)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.pictureBoxBigXY.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.pictureBoxBigXY.ErrorImage = null;
     this.pictureBoxBigXY.InitialImage = null;
     this.pictureBoxBigXY.Location = new System.Drawing.Point(650, 327);
     this.pictureBoxBigXY.Margin = new System.Windows.Forms.Padding(4);
     this.pictureBoxBigXY.Name = "pictureBoxBigXY";
     this.pictureBoxBigXY.Size = new System.Drawing.Size(170, 47);
     this.pictureBoxBigXY.TabIndex = 15;
     this.pictureBoxBigXY.TabStop = false;
     this.pictureBoxBigXY.Visible = false;
     //
     // MenuRightClick
     //
     this.MenuRightClick.BackColor = System.Drawing.Color.White;
     this.MenuRightClick.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripTextBoxX,
     this.toolStripTextBoxY,
     this.toolStripSeparator1,
     this.网格显示ToolStripMenuItem,
     this.放大选取框功能ToolStripMenuItem,
     this.坐标自动调整ToolStripMenuItem,
     this.默认坐标范围ToolStripMenuItem});
     this.MenuRightClick.Name = "MenuRightClick";
     this.MenuRightClick.Size = new System.Drawing.Size(207, 174);
     //
     // toolStripTextBoxX
     //
     this.toolStripTextBoxX.BackColor = System.Drawing.Color.White;
     this.toolStripTextBoxX.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.toolStripTextBoxX.ForeColor = System.Drawing.Color.Black;
     this.toolStripTextBoxX.Name = "toolStripTextBoxX";
     this.toolStripTextBoxX.ReadOnly = true;
     this.toolStripTextBoxX.Size = new System.Drawing.Size(100, 24);
     this.toolStripTextBoxX.Text = "0";
     //
     // toolStripTextBoxY
     //
     this.toolStripTextBoxY.BackColor = System.Drawing.Color.White;
     this.toolStripTextBoxY.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.toolStripTextBoxY.ForeColor = System.Drawing.Color.Black;
     this.toolStripTextBoxY.Name = "toolStripTextBoxY";
     this.toolStripTextBoxY.ReadOnly = true;
     this.toolStripTextBoxY.Size = new System.Drawing.Size(100, 24);
     this.toolStripTextBoxY.Text = "0";
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(203, 6);
     //
     // 网格显示ToolStripMenuItem
     //
     this.网格显示ToolStripMenuItem.Checked = true;
     this.网格显示ToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
     this.网格显示ToolStripMenuItem.Name = "网格显示ToolStripMenuItem";
     this.网格显示ToolStripMenuItem.Size = new System.Drawing.Size(206, 28);
     this.网格显示ToolStripMenuItem.Text = "网格显示";
     //
     // 放大选取框功能ToolStripMenuItem
     //
     this.放大选取框功能ToolStripMenuItem.Name = "放大选取框功能ToolStripMenuItem";
     this.放大选取框功能ToolStripMenuItem.Size = new System.Drawing.Size(206, 28);
     this.放大选取框功能ToolStripMenuItem.Text = "放大选取框功能";
     //
     // 坐标自动调整ToolStripMenuItem
     //
     this.坐标自动调整ToolStripMenuItem.Checked = true;
     this.坐标自动调整ToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
     this.坐标自动调整ToolStripMenuItem.Name = "坐标自动调整ToolStripMenuItem";
     this.坐标自动调整ToolStripMenuItem.Size = new System.Drawing.Size(206, 28);
     this.坐标自动调整ToolStripMenuItem.Text = "坐标自动调整";
     //
     // 默认坐标范围ToolStripMenuItem
     //
     this.默认坐标范围ToolStripMenuItem.Name = "默认坐标范围ToolStripMenuItem";
     this.默认坐标范围ToolStripMenuItem.Size = new System.Drawing.Size(206, 28);
     this.默认坐标范围ToolStripMenuItem.Text = "默认坐标范围";
     //
     // slide
     //
     this.slide.Border = NationalInstruments.UI.Border.Etched;
     this.slide.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.slide.FillStyle = NationalInstruments.UI.FillStyle.HorizontalGradient;
     this.slide.Location = new System.Drawing.Point(0, 568);
     this.slide.Margin = new System.Windows.Forms.Padding(4);
     this.slide.Name = "slide";
     this.slide.Range = new NationalInstruments.UI.Range(0D, 100D);
     this.slide.ScalePosition = NationalInstruments.UI.NumericScalePosition.Bottom;
     this.slide.Size = new System.Drawing.Size(1082, 54);
     this.slide.SlideStyle = NationalInstruments.UI.SlideStyle.SunkenWithGrip;
     this.slide.TabIndex = 22;
     this.slide.Value = 100D;
     //
     // panel_itemsIN
     //
     this.panel_itemsIN.BackColor = System.Drawing.Color.Transparent;
     this.panel_itemsIN.Controls.Add(this.BTN_切换Y轴);
     this.panel_itemsIN.Controls.Add(this.BTN_停止显示);
     this.panel_itemsIN.Controls.Add(this.buttonReXY);
     this.panel_itemsIN.Controls.Add(this.buttonModeXY);
     this.panel_itemsIN.Controls.Add(this.buttonBigModeXY);
     this.panel_itemsIN.Controls.Add(this.buttonLinesShowXY);
     this.panel_itemsIN.Controls.Add(this.btn_调整坐标轴);
     this.panel_itemsIN.Dock = System.Windows.Forms.DockStyle.Right;
     this.panel_itemsIN.Location = new System.Drawing.Point(1028, 33);
     this.panel_itemsIN.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
     this.panel_itemsIN.Name = "panel_itemsIN";
     this.panel_itemsIN.Size = new System.Drawing.Size(54, 535);
     this.panel_itemsIN.TabIndex = 1;
     //
     // BTN_切换Y轴
     //
     this.BTN_切换Y轴.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.BTN_切换Y轴.BackColor = System.Drawing.Color.Transparent;
     this.BTN_切换Y轴.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.BTN_切换Y轴.Font = new System.Drawing.Font("宋体", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.BTN_切换Y轴.ForeColor = System.Drawing.Color.Transparent;
     this.BTN_切换Y轴.Image = global::控件库.Properties.Resources.AutoCorrect_Icon;
     this.BTN_切换Y轴.Location = new System.Drawing.Point(2, 0);
     this.BTN_切换Y轴.Margin = new System.Windows.Forms.Padding(2, 0, 0, 0);
     this.BTN_切换Y轴.Name = "BTN_切换Y轴";
     this.BTN_切换Y轴.Size = new System.Drawing.Size(48, 48);
     this.BTN_切换Y轴.TabIndex = 13;
     this.BTN_切换Y轴.TabStop = false;
     this.BTN_切换Y轴.UseVisualStyleBackColor = false;
     this.BTN_切换Y轴.Click += new System.EventHandler(this.BTN_切换Y轴_Click);
     this.BTN_切换Y轴.MouseEnter += new System.EventHandler(this.BTN_切换Y轴_MouseEnter);
     this.BTN_切换Y轴.MouseLeave += new System.EventHandler(this.BTN_切换Y轴_MouseLeave);
     //
     // BTN_停止显示
     //
     this.BTN_停止显示.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.BTN_停止显示.BackColor = System.Drawing.Color.Transparent;
     this.BTN_停止显示.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.BTN_停止显示.Font = new System.Drawing.Font("宋体", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.BTN_停止显示.ForeColor = System.Drawing.Color.Transparent;
     this.BTN_停止显示.Image = global::控件库.Properties.Resources.Action_Exit_32x32;
     this.BTN_停止显示.Location = new System.Drawing.Point(2, 48);
     this.BTN_停止显示.Margin = new System.Windows.Forms.Padding(2, 0, 0, 0);
     this.BTN_停止显示.Name = "BTN_停止显示";
     this.BTN_停止显示.Size = new System.Drawing.Size(48, 48);
     this.BTN_停止显示.TabIndex = 13;
     this.BTN_停止显示.TabStop = false;
     this.BTN_停止显示.UseVisualStyleBackColor = false;
     this.BTN_停止显示.Click += new System.EventHandler(this.BTN_停止显示_Click);
     this.BTN_停止显示.MouseEnter += new System.EventHandler(this.BTN_停止显示_MouseEnter);
     this.BTN_停止显示.MouseLeave += new System.EventHandler(this.BTN_停止显示_MouseLeave);
     //
     // buttonReXY
     //
     this.buttonReXY.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonReXY.BackColor = System.Drawing.Color.Transparent;
     this.buttonReXY.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.buttonReXY.Font = new System.Drawing.Font("宋体", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.buttonReXY.ForeColor = System.Drawing.Color.Transparent;
     this.buttonReXY.Image = global::控件库.Properties.Resources.reflash;
     this.buttonReXY.Location = new System.Drawing.Point(2, 96);
     this.buttonReXY.Margin = new System.Windows.Forms.Padding(2, 0, 0, 0);
     this.buttonReXY.Name = "buttonReXY";
     this.buttonReXY.Size = new System.Drawing.Size(48, 48);
     this.buttonReXY.TabIndex = 13;
     this.buttonReXY.TabStop = false;
     this.buttonReXY.UseVisualStyleBackColor = false;
     this.buttonReXY.Click += new System.EventHandler(this.buttonReXY_Click);
     this.buttonReXY.MouseEnter += new System.EventHandler(this.buttonReXY_MouseEnter);
     this.buttonReXY.MouseLeave += new System.EventHandler(this.buttonReXY_MouseLeave);
     //
     // buttonModeXY
     //
     this.buttonModeXY.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonModeXY.BackColor = System.Drawing.Color.Transparent;
     this.buttonModeXY.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.buttonModeXY.Font = new System.Drawing.Font("宋体", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.buttonModeXY.ForeColor = System.Drawing.Color.Transparent;
     this.buttonModeXY.Image = global::控件库.Properties.Resources.CrosshairCursorControl_Icon;
     this.buttonModeXY.Location = new System.Drawing.Point(2, 144);
     this.buttonModeXY.Margin = new System.Windows.Forms.Padding(2, 0, 0, 0);
     this.buttonModeXY.Name = "buttonModeXY";
     this.buttonModeXY.Size = new System.Drawing.Size(48, 48);
     this.buttonModeXY.TabIndex = 12;
     this.buttonModeXY.TabStop = false;
     this.buttonModeXY.UseVisualStyleBackColor = false;
     this.buttonModeXY.Click += new System.EventHandler(this.buttonModeXY_Click);
     this.buttonModeXY.MouseEnter += new System.EventHandler(this.buttonModeXY_MouseEnter);
     this.buttonModeXY.MouseLeave += new System.EventHandler(this.buttonModeXY_MouseLeave);
     //
     // buttonBigModeXY
     //
     this.buttonBigModeXY.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonBigModeXY.BackColor = System.Drawing.Color.Transparent;
     this.buttonBigModeXY.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.buttonBigModeXY.Font = new System.Drawing.Font("宋体", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.buttonBigModeXY.ForeColor = System.Drawing.Color.Transparent;
     this.buttonBigModeXY.Image = global::控件库.Properties.Resources.ChartDemoScrollingAndZooming_Icon;
     this.buttonBigModeXY.Location = new System.Drawing.Point(2, 192);
     this.buttonBigModeXY.Margin = new System.Windows.Forms.Padding(2, 0, 0, 0);
     this.buttonBigModeXY.Name = "buttonBigModeXY";
     this.buttonBigModeXY.Size = new System.Drawing.Size(48, 48);
     this.buttonBigModeXY.TabIndex = 11;
     this.buttonBigModeXY.TabStop = false;
     this.buttonBigModeXY.UseVisualStyleBackColor = false;
     this.buttonBigModeXY.Click += new System.EventHandler(this.buttonBigModeXY_Click);
     this.buttonBigModeXY.MouseEnter += new System.EventHandler(this.buttonBigModeXY_MouseEnter);
     this.buttonBigModeXY.MouseLeave += new System.EventHandler(this.buttonBigModeXY_MouseLeave);
     //
     // buttonLinesShowXY
     //
     this.buttonLinesShowXY.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonLinesShowXY.BackColor = System.Drawing.Color.Transparent;
     this.buttonLinesShowXY.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.buttonLinesShowXY.Font = new System.Drawing.Font("宋体", 15F, System.Drawing.FontStyle.Bold);
     this.buttonLinesShowXY.ForeColor = System.Drawing.Color.Transparent;
     this.buttonLinesShowXY.Image = global::控件库.Properties.Resources.ChartDemoDateTimeGridAlignment_Icon;
     this.buttonLinesShowXY.Location = new System.Drawing.Point(2, 240);
     this.buttonLinesShowXY.Margin = new System.Windows.Forms.Padding(2, 0, 0, 0);
     this.buttonLinesShowXY.Name = "buttonLinesShowXY";
     this.buttonLinesShowXY.Size = new System.Drawing.Size(48, 48);
     this.buttonLinesShowXY.TabIndex = 0;
     this.buttonLinesShowXY.TabStop = false;
     this.buttonLinesShowXY.UseVisualStyleBackColor = false;
     this.buttonLinesShowXY.Click += new System.EventHandler(this.buttonLinesShowXY_Click);
     this.buttonLinesShowXY.MouseEnter += new System.EventHandler(this.buttonLinesShowXY_MouseEnter);
     this.buttonLinesShowXY.MouseLeave += new System.EventHandler(this.buttonLinesShowXY_MouseLeave);
     //
     // btn_调整坐标轴
     //
     this.btn_调整坐标轴.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btn_调整坐标轴.BackColor = System.Drawing.Color.Transparent;
     this.btn_调整坐标轴.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btn_调整坐标轴.Font = new System.Drawing.Font("宋体", 15F, System.Drawing.FontStyle.Bold);
     this.btn_调整坐标轴.ForeColor = System.Drawing.Color.Transparent;
     this.btn_调整坐标轴.Image = global::控件库.Properties.Resources.ChartDemoDateTimeScaleMode_Icon;
     this.btn_调整坐标轴.Location = new System.Drawing.Point(2, 288);
     this.btn_调整坐标轴.Margin = new System.Windows.Forms.Padding(2, 0, 0, 0);
     this.btn_调整坐标轴.Name = "btn_调整坐标轴";
     this.btn_调整坐标轴.Size = new System.Drawing.Size(48, 48);
     this.btn_调整坐标轴.TabIndex = 0;
     this.btn_调整坐标轴.TabStop = false;
     this.btn_调整坐标轴.UseVisualStyleBackColor = false;
     this.btn_调整坐标轴.Click += new System.EventHandler(this.btn_调整坐标轴_Click);
     this.btn_调整坐标轴.MouseEnter += new System.EventHandler(this.btn_调整坐标轴_MouseEnter);
     this.btn_调整坐标轴.MouseLeave += new System.EventHandler(this.btn_调整坐标轴_MouseLeave);
     //
     // legend1
     //
     this.legend1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.legend1.ItemSize = new System.Drawing.Size(30, 15);
     this.legend1.Location = new System.Drawing.Point(0, 530);
     this.legend1.Margin = new System.Windows.Forms.Padding(4);
     this.legend1.Name = "legend1";
     this.legend1.Padding = new System.Windows.Forms.Padding(2, 0, 4, 0);
     this.legend1.Size = new System.Drawing.Size(1028, 38);
     this.legend1.TabIndex = 24;
     //
     // xAxis_Looking
     //
     this.xAxis_Looking.BaseLineVisible = true;
     this.xAxis_Looking.MajorDivisions.LabelFormat = new NationalInstruments.UI.FormatString(NationalInstruments.UI.FormatStringMode.DateTime, "dd HH:mm:ss");
     this.xAxis_Looking.Mode = NationalInstruments.UI.AxisMode.AutoScaleExact;
     this.xAxis_Looking.Range = new NationalInstruments.UI.Range(0D, 10.5D);
     //
     // Graph_View
     //
     this.Graph_View.Border = NationalInstruments.UI.Border.None;
     this.Graph_View.Cursors.AddRange(new NationalInstruments.UI.XYCursor[] {
     this.xyCursorB,
     this.xyCursorE});
     this.Graph_View.Dock = System.Windows.Forms.DockStyle.Fill;
     this.Graph_View.Location = new System.Drawing.Point(0, 33);
     this.Graph_View.Margin = new System.Windows.Forms.Padding(4);
     this.Graph_View.Name = "Graph_View";
     this.Graph_View.Padding = new System.Windows.Forms.Padding(0, 0, 4, 0);
     this.Graph_View.Plots.AddRange(new NationalInstruments.UI.ScatterPlot[] {
     this.scatterPlot2});
     this.Graph_View.Size = new System.Drawing.Size(1028, 497);
     this.Graph_View.TabIndex = 25;
     this.Graph_View.UseColorGenerator = true;
     this.Graph_View.XAxes.AddRange(new NationalInstruments.UI.XAxis[] {
     this.xAxis_Looking});
     this.Graph_View.YAxes.AddRange(new NationalInstruments.UI.YAxis[] {
     this.yAxis1});
     this.Graph_View.AfterDrawPlot += new NationalInstruments.UI.AfterDrawXYPlotEventHandler(this.Graph_View_AfterDrawPlot);
     this.Graph_View.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Graph_View_MouseDown);
     this.Graph_View.MouseLeave += new System.EventHandler(this.Graph_View_MouseLeave);
     this.Graph_View.MouseMove += new System.Windows.Forms.MouseEventHandler(this.Graph_View_MouseMove);
     this.Graph_View.MouseUp += new System.Windows.Forms.MouseEventHandler(this.Graph_View_MouseUp);
     //
     // xyCursorB
     //
     this.xyCursorB.Color = System.Drawing.Color.Gold;
     this.xyCursorB.Plot = this.scatterPlot2;
     this.xyCursorB.SnapMode = NationalInstruments.UI.CursorSnapMode.NearestPoint;
     this.xyCursorB.Visible = false;
     //
     // scatterPlot2
     //
     this.scatterPlot2.Visible = false;
     this.scatterPlot2.XAxis = this.xAxis_Looking;
     this.scatterPlot2.YAxis = this.yAxis1;
     //
     // yAxis1
     //
     this.yAxis1.BaseLineColor = System.Drawing.SystemColors.ControlText;
     this.yAxis1.Caption = "111";
     this.yAxis1.MajorDivisions.LabelFormat = new NationalInstruments.UI.FormatString(NationalInstruments.UI.FormatStringMode.Numeric, "F1");
     //
     // xyCursorE
     //
     this.xyCursorE.Color = System.Drawing.Color.Gold;
     this.xyCursorE.Plot = this.scatterPlot2;
     this.xyCursorE.SnapMode = NationalInstruments.UI.CursorSnapMode.NearestPoint;
     this.xyCursorE.Visible = false;
     //
     // panel_text
     //
     this.panel_text.Dock = System.Windows.Forms.DockStyle.Top;
     this.panel_text.Location = new System.Drawing.Point(0, 0);
     this.panel_text.Margin = new System.Windows.Forms.Padding(4);
     this.panel_text.Name = "panel_text";
     this.panel_text.Size = new System.Drawing.Size(1082, 33);
     this.panel_text.TabIndex = 26;
     this.panel_text.Paint += new System.Windows.Forms.PaintEventHandler(this.panel_text_Paint);
     //
     // XYGraph
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 18F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.Graph_View);
     this.Controls.Add(this.legend1);
     this.Controls.Add(this.panel_itemsIN);
     this.Controls.Add(this.panel_text);
     this.Controls.Add(this.panelBigXY);
     this.Controls.Add(this.labelItemShuoMing);
     this.Controls.Add(this.pictureBoxBigXY);
     this.Controls.Add(this.slide);
     this.Margin = new System.Windows.Forms.Padding(4);
     this.Name = "XYGraph";
     this.Size = new System.Drawing.Size(1082, 622);
     this.panelBigXY.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBoxBigXY)).EndInit();
     this.MenuRightClick.ResumeLayout(false);
     this.MenuRightClick.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.slide)).EndInit();
     this.panel_itemsIN.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.legend1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Graph_View)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xyCursorB)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xyCursorE)).EndInit();
     this.ResumeLayout(false);
 }
 /// <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.Windows.Forms.Label dESCRIPCIONLabel;
     System.Windows.Forms.Label nOMBRELabel;
     System.Windows.Forms.Label label40;
     System.Windows.Forms.Label label41;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Especies_Form));
     this.pn_listado = new System.Windows.Forms.Panel();
     this.ListadoEspecies = new System.Windows.Forms.DataGridView();
     this.nOMCOMUNDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.cODESPDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.nOMCIENTIFICODataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.gRUPOCOMDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewComboBoxColumn();
     this.grupoComercialBSource = new System.Windows.Forms.BindingSource(this.components);
     this.GRUPOECOLOGICO = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.fAMILIADataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.zONAGEOGRAFICADataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.zONADEVIDADataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Editar = new System.Windows.Forms.DataGridViewButtonColumn();
     this.Eliminar = new System.Windows.Forms.DataGridViewButtonColumn();
     this.Detalle = new System.Windows.Forms.DataGridViewButtonColumn();
     this.specieBSource = new System.Windows.Forms.BindingSource(this.components);
     this.paginacionEspecie = new System.Windows.Forms.BindingNavigator(this.components);
     this.cargarArchivo = new System.Windows.Forms.ToolStripButton();
     this.Btn_nuevaEspecie = new System.Windows.Forms.ToolStripButton();
     this.buscarLbl = new System.Windows.Forms.ToolStripLabel();
     this.busquedaTxt = new System.Windows.Forms.ToolStripTextBox();
     this.filtrarLbl = new System.Windows.Forms.ToolStripLabel();
     this.criterioCbx = new System.Windows.Forms.ToolStripComboBox();
     this.GroupComBSource = new System.Windows.Forms.BindingSource(this.components);
     this.groupBox = new System.Windows.Forms.GroupBox();
     this.button1 = new System.Windows.Forms.Button();
     this.cbx_GroupCom = new System.Windows.Forms.ComboBox();
     this.Btn_Guardar = new System.Windows.Forms.Button();
     this.txt_DimCorte = new System.Windows.Forms.TextBox();
     this.label3 = new System.Windows.Forms.Label();
     this.textBox1 = new System.Windows.Forms.TextBox();
     this.label10 = new System.Windows.Forms.Label();
     this.txt_ZonaGeo = new System.Windows.Forms.TextBox();
     this.label11 = new System.Windows.Forms.Label();
     this.textBox2 = new System.Windows.Forms.TextBox();
     this.label12 = new System.Windows.Forms.Label();
     this.label13 = new System.Windows.Forms.Label();
     this.txt_NomCient = new System.Windows.Forms.TextBox();
     this.label14 = new System.Windows.Forms.Label();
     this.txt_NomCom = new System.Windows.Forms.TextBox();
     this.label15 = new System.Windows.Forms.Label();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.button2 = new System.Windows.Forms.Button();
     this.comboBox1 = new System.Windows.Forms.ComboBox();
     this.button3 = new System.Windows.Forms.Button();
     this.textBox3 = new System.Windows.Forms.TextBox();
     this.label16 = new System.Windows.Forms.Label();
     this.textBox4 = new System.Windows.Forms.TextBox();
     this.label17 = new System.Windows.Forms.Label();
     this.textBox5 = new System.Windows.Forms.TextBox();
     this.label18 = new System.Windows.Forms.Label();
     this.textBox6 = new System.Windows.Forms.TextBox();
     this.label19 = new System.Windows.Forms.Label();
     this.label20 = new System.Windows.Forms.Label();
     this.textBox7 = new System.Windows.Forms.TextBox();
     this.label21 = new System.Windows.Forms.Label();
     this.textBox8 = new System.Windows.Forms.TextBox();
     this.label22 = new System.Windows.Forms.Label();
     this.pn_crear = new System.Windows.Forms.Panel();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.grupoEcoCbx = new System.Windows.Forms.ComboBox();
     this.label42 = new System.Windows.Forms.Label();
     this.btn_crearImg = new System.Windows.Forms.Button();
     this.cbox_GrupoComercial = new System.Windows.Forms.ComboBox();
     this.btn_Cancelar = new System.Windows.Forms.Button();
     this.Btn_Crear = new System.Windows.Forms.Button();
     this.txt_ZonaVida = new System.Windows.Forms.TextBox();
     this.txt_ZonaGeografica = new System.Windows.Forms.TextBox();
     this.txt_Familia = new System.Windows.Forms.TextBox();
     this.txt_NombreCientifico = new System.Windows.Forms.TextBox();
     this.txt_NombreComun = new System.Windows.Forms.TextBox();
     this.label6 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.pn_editar = new System.Windows.Forms.Panel();
     this.groupBox6 = new System.Windows.Forms.GroupBox();
     this.UpdateImageBN = new System.Windows.Forms.BindingNavigator(this.components);
     this.imagenesBS = new System.Windows.Forms.BindingSource(this.components);
     this.bindingNavigatorCountItem1 = new System.Windows.Forms.ToolStripLabel();
     this.bindingNavigatorMoveFirstItem1 = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMovePreviousItem1 = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorPositionItem1 = new System.Windows.Forms.ToolStripTextBox();
     this.bindingNavigatorSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorMoveNextItem1 = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMoveLastItem1 = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator4 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripButton2 = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
     this.updImgUbic = new System.Windows.Forms.TextBox();
     this.pB_imgUpdate = new System.Windows.Forms.PictureBox();
     this.label36 = new System.Windows.Forms.Label();
     this.updImgDesc = new System.Windows.Forms.TextBox();
     this.updImgName = new System.Windows.Forms.TextBox();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.updGrupoEcoCbx = new System.Windows.Forms.ComboBox();
     this.label43 = new System.Windows.Forms.Label();
     this.Btn_CancelarUpdate = new System.Windows.Forms.Button();
     this.grupoComercialCbx = new System.Windows.Forms.ComboBox();
     this.Guardar = new System.Windows.Forms.Button();
     this.txt_ZonaVid = new System.Windows.Forms.TextBox();
     this.label24 = new System.Windows.Forms.Label();
     this.txt_ZonaGeogra = new System.Windows.Forms.TextBox();
     this.label25 = new System.Windows.Forms.Label();
     this.txt_Fam = new System.Windows.Forms.TextBox();
     this.label26 = new System.Windows.Forms.Label();
     this.label27 = new System.Windows.Forms.Label();
     this.txt_NomCientifico = new System.Windows.Forms.TextBox();
     this.label28 = new System.Windows.Forms.Label();
     this.txt_NomComun = new System.Windows.Forms.TextBox();
     this.label29 = new System.Windows.Forms.Label();
     this.eP_errors = new System.Windows.Forms.ErrorProvider(this.components);
     this.imagenTxt = new System.Windows.Forms.TextBox();
     this.txt_descripcionImg = new System.Windows.Forms.TextBox();
     this.txt_nombreImg = new System.Windows.Forms.TextBox();
     this.imgFichero = new System.Windows.Forms.OpenFileDialog();
     this.btn_cargarImg = new System.Windows.Forms.Button();
     this.pB_imgCrear = new System.Windows.Forms.PictureBox();
     this.pn_detalle = new System.Windows.Forms.Panel();
     this.groupBox5 = new System.Windows.Forms.GroupBox();
     this.pB_imgDetalle = new System.Windows.Forms.PictureBox();
     this.label39 = new System.Windows.Forms.Label();
     this.rutatxt = new System.Windows.Forms.TextBox();
     this.imagenesBN = new System.Windows.Forms.BindingNavigator(this.components);
     this.bindingNavigatorCountItem = new System.Windows.Forms.ToolStripLabel();
     this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
     this.bindingNavigatorMoveFirstItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMovePreviousItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorPositionItem = new System.Windows.Forms.ToolStripTextBox();
     this.bindingNavigatorSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorMoveNextItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMoveLastItem = new System.Windows.Forms.ToolStripButton();
     this.dESCRIPCIONTextBox = new System.Windows.Forms.TextBox();
     this.nOMBRETextBox = new System.Windows.Forms.TextBox();
     this.ver_detalle = new System.Windows.Forms.GroupBox();
     this.detailGrupoEcoTxt = new System.Windows.Forms.TextBox();
     this.label44 = new System.Windows.Forms.Label();
     this.pictureBox2 = new System.Windows.Forms.PictureBox();
     this.cbxGrupoComercial_det = new System.Windows.Forms.ComboBox();
     this.txt_ZonaVid_det = new System.Windows.Forms.TextBox();
     this.label30 = new System.Windows.Forms.Label();
     this.txt_ZonaGeogra_det = new System.Windows.Forms.TextBox();
     this.label31 = new System.Windows.Forms.Label();
     this.txt_Fam_det = new System.Windows.Forms.TextBox();
     this.label32 = new System.Windows.Forms.Label();
     this.label33 = new System.Windows.Forms.Label();
     this.txt_NomCientifico_det = new System.Windows.Forms.TextBox();
     this.label34 = new System.Windows.Forms.Label();
     this.txt_NomComun_det = new System.Windows.Forms.TextBox();
     this.label35 = new System.Windows.Forms.Label();
     this.btn_cerrar = new System.Windows.Forms.Button();
     this.pn_cargarImg = new System.Windows.Forms.Panel();
     this.groupBox4 = new System.Windows.Forms.GroupBox();
     this.label38 = new System.Windows.Forms.Label();
     this.label37 = new System.Windows.Forms.Label();
     this.btn_ImgCancelar = new System.Windows.Forms.Button();
     this.btn_ImgAceptar = new System.Windows.Forms.Button();
     dESCRIPCIONLabel = new System.Windows.Forms.Label();
     nOMBRELabel = new System.Windows.Forms.Label();
     label40 = new System.Windows.Forms.Label();
     label41 = new System.Windows.Forms.Label();
     this.pn_listado.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ListadoEspecies)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grupoComercialBSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.specieBSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.paginacionEspecie)).BeginInit();
     this.paginacionEspecie.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GroupComBSource)).BeginInit();
     this.groupBox.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.pn_crear.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.groupBox1.SuspendLayout();
     this.pn_editar.SuspendLayout();
     this.groupBox6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.UpdateImageBN)).BeginInit();
     this.UpdateImageBN.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.imagenesBS)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pB_imgUpdate)).BeginInit();
     this.groupBox3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.eP_errors)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pB_imgCrear)).BeginInit();
     this.pn_detalle.SuspendLayout();
     this.groupBox5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pB_imgDetalle)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.imagenesBN)).BeginInit();
     this.imagenesBN.SuspendLayout();
     this.ver_detalle.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
     this.pn_cargarImg.SuspendLayout();
     this.groupBox4.SuspendLayout();
     this.SuspendLayout();
     //
     // dESCRIPCIONLabel
     //
     dESCRIPCIONLabel.AutoSize = true;
     dESCRIPCIONLabel.Location = new System.Drawing.Point(12, 288);
     dESCRIPCIONLabel.Name = "dESCRIPCIONLabel";
     dESCRIPCIONLabel.Size = new System.Drawing.Size(63, 13);
     dESCRIPCIONLabel.TabIndex = 75;
     dESCRIPCIONLabel.Text = "Descripcion";
     //
     // nOMBRELabel
     //
     nOMBRELabel.AutoSize = true;
     nOMBRELabel.Location = new System.Drawing.Point(12, 257);
     nOMBRELabel.Name = "nOMBRELabel";
     nOMBRELabel.Size = new System.Drawing.Size(47, 13);
     nOMBRELabel.TabIndex = 73;
     nOMBRELabel.Text = "Nombre:";
     //
     // label40
     //
     label40.AutoSize = true;
     label40.Location = new System.Drawing.Point(12, 288);
     label40.Name = "label40";
     label40.Size = new System.Drawing.Size(63, 13);
     label40.TabIndex = 75;
     label40.Text = "Descripcion";
     //
     // label41
     //
     label41.AutoSize = true;
     label41.Location = new System.Drawing.Point(12, 257);
     label41.Name = "label41";
     label41.Size = new System.Drawing.Size(47, 13);
     label41.TabIndex = 73;
     label41.Text = "Nombre:";
     //
     // pn_listado
     //
     this.pn_listado.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.pn_listado.Controls.Add(this.ListadoEspecies);
     this.pn_listado.Controls.Add(this.paginacionEspecie);
     this.pn_listado.Location = new System.Drawing.Point(0, 0);
     this.pn_listado.Name = "pn_listado";
     this.pn_listado.Size = new System.Drawing.Size(890, 486);
     this.pn_listado.TabIndex = 0;
     //
     // ListadoEspecies
     //
     this.ListadoEspecies.AllowUserToAddRows = false;
     this.ListadoEspecies.AllowUserToDeleteRows = false;
     this.ListadoEspecies.AllowUserToOrderColumns = true;
     this.ListadoEspecies.AutoGenerateColumns = false;
     this.ListadoEspecies.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.ListadoEspecies.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.ListadoEspecies.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.nOMCOMUNDataGridViewTextBoxColumn,
     this.cODESPDataGridViewTextBoxColumn,
     this.nOMCIENTIFICODataGridViewTextBoxColumn,
     this.gRUPOCOMDataGridViewTextBoxColumn,
     this.GRUPOECOLOGICO,
     this.fAMILIADataGridViewTextBoxColumn,
     this.zONAGEOGRAFICADataGridViewTextBoxColumn,
     this.zONADEVIDADataGridViewTextBoxColumn,
     this.Editar,
     this.Eliminar,
     this.Detalle});
     this.ListadoEspecies.DataSource = this.specieBSource;
     this.ListadoEspecies.Location = new System.Drawing.Point(0, 25);
     this.ListadoEspecies.Name = "ListadoEspecies";
     this.ListadoEspecies.ReadOnly = true;
     this.ListadoEspecies.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.ListadoEspecies.Size = new System.Drawing.Size(886, 457);
     this.ListadoEspecies.TabIndex = 3;
     this.ListadoEspecies.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.ListadoDeEspecies_CellValueChanged);
     this.ListadoEspecies.CellFormatting += new System.Windows.Forms.DataGridViewCellFormattingEventHandler(this.ListadoEspecies_CellFormatting);
     //
     // nOMCOMUNDataGridViewTextBoxColumn
     //
     this.nOMCOMUNDataGridViewTextBoxColumn.DataPropertyName = "NOMCOMUN";
     this.nOMCOMUNDataGridViewTextBoxColumn.HeaderText = "Nombre Común";
     this.nOMCOMUNDataGridViewTextBoxColumn.Name = "nOMCOMUNDataGridViewTextBoxColumn";
     this.nOMCOMUNDataGridViewTextBoxColumn.ReadOnly = true;
     //
     // cODESPDataGridViewTextBoxColumn
     //
     this.cODESPDataGridViewTextBoxColumn.DataPropertyName = "CODESP";
     this.cODESPDataGridViewTextBoxColumn.HeaderText = "CODESP";
     this.cODESPDataGridViewTextBoxColumn.Name = "cODESPDataGridViewTextBoxColumn";
     this.cODESPDataGridViewTextBoxColumn.ReadOnly = true;
     this.cODESPDataGridViewTextBoxColumn.Visible = false;
     //
     // nOMCIENTIFICODataGridViewTextBoxColumn
     //
     this.nOMCIENTIFICODataGridViewTextBoxColumn.DataPropertyName = "NOMCIENTIFICO";
     this.nOMCIENTIFICODataGridViewTextBoxColumn.HeaderText = "Nombre Cientifico";
     this.nOMCIENTIFICODataGridViewTextBoxColumn.Name = "nOMCIENTIFICODataGridViewTextBoxColumn";
     this.nOMCIENTIFICODataGridViewTextBoxColumn.ReadOnly = true;
     //
     // gRUPOCOMDataGridViewTextBoxColumn
     //
     this.gRUPOCOMDataGridViewTextBoxColumn.DataPropertyName = "GRUPOCOM";
     this.gRUPOCOMDataGridViewTextBoxColumn.DataSource = this.grupoComercialBSource;
     this.gRUPOCOMDataGridViewTextBoxColumn.DisplayMember = "DESCRIPGRUPO";
     this.gRUPOCOMDataGridViewTextBoxColumn.HeaderText = "Grupo Comercial";
     this.gRUPOCOMDataGridViewTextBoxColumn.Name = "gRUPOCOMDataGridViewTextBoxColumn";
     this.gRUPOCOMDataGridViewTextBoxColumn.ReadOnly = true;
     this.gRUPOCOMDataGridViewTextBoxColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.gRUPOCOMDataGridViewTextBoxColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     this.gRUPOCOMDataGridViewTextBoxColumn.ValueMember = "GRUPOCOM";
     //
     // grupoComercialBSource
     //
     this.grupoComercialBSource.DataSource = typeof(SIFCA_DAL.GRUPOCOMERCIAL);
     //
     // GRUPOECOLOGICO
     //
     this.GRUPOECOLOGICO.DataPropertyName = "GRUPOECOLOGICO";
     this.GRUPOECOLOGICO.HeaderText = "Grupo eco";
     this.GRUPOECOLOGICO.Name = "GRUPOECOLOGICO";
     this.GRUPOECOLOGICO.ReadOnly = true;
     this.GRUPOECOLOGICO.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     //
     // fAMILIADataGridViewTextBoxColumn
     //
     this.fAMILIADataGridViewTextBoxColumn.DataPropertyName = "FAMILIA";
     this.fAMILIADataGridViewTextBoxColumn.HeaderText = "Familia";
     this.fAMILIADataGridViewTextBoxColumn.Name = "fAMILIADataGridViewTextBoxColumn";
     this.fAMILIADataGridViewTextBoxColumn.ReadOnly = true;
     //
     // zONAGEOGRAFICADataGridViewTextBoxColumn
     //
     this.zONAGEOGRAFICADataGridViewTextBoxColumn.DataPropertyName = "ZONAGEOGRAFICA";
     this.zONAGEOGRAFICADataGridViewTextBoxColumn.HeaderText = "Zona Geografica";
     this.zONAGEOGRAFICADataGridViewTextBoxColumn.Name = "zONAGEOGRAFICADataGridViewTextBoxColumn";
     this.zONAGEOGRAFICADataGridViewTextBoxColumn.ReadOnly = true;
     //
     // zONADEVIDADataGridViewTextBoxColumn
     //
     this.zONADEVIDADataGridViewTextBoxColumn.DataPropertyName = "ZONADEVIDA";
     this.zONADEVIDADataGridViewTextBoxColumn.HeaderText = "Zona De Vida";
     this.zONADEVIDADataGridViewTextBoxColumn.Name = "zONADEVIDADataGridViewTextBoxColumn";
     this.zONADEVIDADataGridViewTextBoxColumn.ReadOnly = true;
     //
     // Editar
     //
     this.Editar.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.Editar.HeaderText = "Editar";
     this.Editar.Name = "Editar";
     this.Editar.ReadOnly = true;
     this.Editar.Text = "Editar";
     this.Editar.UseColumnTextForButtonValue = true;
     this.Editar.Width = 40;
     //
     // Eliminar
     //
     this.Eliminar.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.Eliminar.HeaderText = "Eliminar";
     this.Eliminar.Name = "Eliminar";
     this.Eliminar.ReadOnly = true;
     this.Eliminar.Text = "Eliminar";
     this.Eliminar.UseColumnTextForButtonValue = true;
     this.Eliminar.Width = 49;
     //
     // Detalle
     //
     this.Detalle.HeaderText = "Detalle";
     this.Detalle.Name = "Detalle";
     this.Detalle.ReadOnly = true;
     this.Detalle.Text = "Ver detalle";
     this.Detalle.UseColumnTextForButtonValue = true;
     //
     // specieBSource
     //
     this.specieBSource.DataSource = typeof(SIFCA_DAL.ESPECIE);
     //
     // paginacionEspecie
     //
     this.paginacionEspecie.AddNewItem = null;
     this.paginacionEspecie.CountItem = null;
     this.paginacionEspecie.DeleteItem = null;
     this.paginacionEspecie.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.cargarArchivo,
     this.Btn_nuevaEspecie,
     this.buscarLbl,
     this.busquedaTxt,
     this.filtrarLbl,
     this.criterioCbx});
     this.paginacionEspecie.Location = new System.Drawing.Point(0, 0);
     this.paginacionEspecie.MoveFirstItem = null;
     this.paginacionEspecie.MoveLastItem = null;
     this.paginacionEspecie.MoveNextItem = null;
     this.paginacionEspecie.MovePreviousItem = null;
     this.paginacionEspecie.Name = "paginacionEspecie";
     this.paginacionEspecie.PositionItem = null;
     this.paginacionEspecie.RenderMode = System.Windows.Forms.ToolStripRenderMode.Professional;
     this.paginacionEspecie.Size = new System.Drawing.Size(886, 25);
     this.paginacionEspecie.TabIndex = 2;
     this.paginacionEspecie.Text = "bindingNavigator1";
     //
     // cargarArchivo
     //
     this.cargarArchivo.BackColor = System.Drawing.SystemColors.ControlLight;
     this.cargarArchivo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.cargarArchivo.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.cargarArchivo.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.cargarArchivo.Name = "cargarArchivo";
     this.cargarArchivo.Size = new System.Drawing.Size(88, 22);
     this.cargarArchivo.Text = "Cargar archivo";
     this.cargarArchivo.ToolTipText = "Cargar archivo con especies desde excel";
     this.cargarArchivo.Click += new System.EventHandler(this.cargarArchivo_Click);
     //
     // Btn_nuevaEspecie
     //
     this.Btn_nuevaEspecie.BackColor = System.Drawing.SystemColors.ControlLight;
     this.Btn_nuevaEspecie.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.Btn_nuevaEspecie.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.Btn_nuevaEspecie.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.Btn_nuevaEspecie.Name = "Btn_nuevaEspecie";
     this.Btn_nuevaEspecie.Size = new System.Drawing.Size(87, 22);
     this.Btn_nuevaEspecie.Text = "Nueva Especie";
     this.Btn_nuevaEspecie.Click += new System.EventHandler(this.Btn_nuevaEspecie_Click);
     //
     // buscarLbl
     //
     this.buscarLbl.Name = "buscarLbl";
     this.buscarLbl.Size = new System.Drawing.Size(45, 22);
     this.buscarLbl.Text = "Buscar:";
     //
     // busquedaTxt
     //
     this.busquedaTxt.Name = "busquedaTxt";
     this.busquedaTxt.Size = new System.Drawing.Size(150, 25);
     this.busquedaTxt.TextChanged += new System.EventHandler(this.busquedaTxt_TextChanged);
     //
     // filtrarLbl
     //
     this.filtrarLbl.Name = "filtrarLbl";
     this.filtrarLbl.Size = new System.Drawing.Size(92, 22);
     this.filtrarLbl.Text = "Filtrar busqueda";
     //
     // criterioCbx
     //
     this.criterioCbx.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.criterioCbx.Items.AddRange(new object[] {
     "Grupo Comercial",
     "Nombre Comun",
     "Nombre Cientifico",
     "Familia",
     "Zona Geografica",
     "Zona Vida"});
     this.criterioCbx.Name = "criterioCbx";
     this.criterioCbx.Size = new System.Drawing.Size(121, 25);
     //
     // GroupComBSource
     //
     this.GroupComBSource.DataSource = typeof(SIFCA_DAL.GRUPOCOMERCIAL);
     //
     // groupBox
     //
     this.groupBox.Controls.Add(this.button1);
     this.groupBox.Controls.Add(this.cbx_GroupCom);
     this.groupBox.Controls.Add(this.Btn_Guardar);
     this.groupBox.Controls.Add(this.txt_DimCorte);
     this.groupBox.Controls.Add(this.label3);
     this.groupBox.Controls.Add(this.textBox1);
     this.groupBox.Controls.Add(this.label10);
     this.groupBox.Controls.Add(this.txt_ZonaGeo);
     this.groupBox.Controls.Add(this.label11);
     this.groupBox.Controls.Add(this.textBox2);
     this.groupBox.Controls.Add(this.label12);
     this.groupBox.Controls.Add(this.label13);
     this.groupBox.Controls.Add(this.txt_NomCient);
     this.groupBox.Controls.Add(this.label14);
     this.groupBox.Controls.Add(this.txt_NomCom);
     this.groupBox.Controls.Add(this.label15);
     this.groupBox.Location = new System.Drawing.Point(8, 2);
     this.groupBox.Name = "groupBox";
     this.groupBox.Size = new System.Drawing.Size(319, 283);
     this.groupBox.TabIndex = 5;
     this.groupBox.TabStop = false;
     this.groupBox.Text = "Editar Especie";
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(189, 241);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(75, 23);
     this.button1.TabIndex = 6;
     this.button1.Text = "Cancelar";
     this.button1.UseVisualStyleBackColor = true;
     //
     // cbx_GroupCom
     //
     this.cbx_GroupCom.DisplayMember = "GRUPOCOM";
     this.cbx_GroupCom.FormattingEnabled = true;
     this.cbx_GroupCom.Location = new System.Drawing.Point(144, 84);
     this.cbx_GroupCom.Name = "cbx_GroupCom";
     this.cbx_GroupCom.Size = new System.Drawing.Size(152, 21);
     this.cbx_GroupCom.TabIndex = 18;
     this.cbx_GroupCom.ValueMember = "GRUPOCOM";
     //
     // Btn_Guardar
     //
     this.Btn_Guardar.Location = new System.Drawing.Point(38, 241);
     this.Btn_Guardar.Name = "Btn_Guardar";
     this.Btn_Guardar.Size = new System.Drawing.Size(75, 23);
     this.Btn_Guardar.TabIndex = 5;
     this.Btn_Guardar.Text = "Guardar";
     this.Btn_Guardar.UseVisualStyleBackColor = true;
     //
     // txt_DimCorte
     //
     this.txt_DimCorte.Location = new System.Drawing.Point(144, 203);
     this.txt_DimCorte.Name = "txt_DimCorte";
     this.txt_DimCorte.Size = new System.Drawing.Size(61, 20);
     this.txt_DimCorte.TabIndex = 17;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(24, 203);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(77, 13);
     this.label3.TabIndex = 16;
     this.label3.Text = "Diametro Corte";
     //
     // textBox1
     //
     this.textBox1.Location = new System.Drawing.Point(143, 173);
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new System.Drawing.Size(153, 20);
     this.textBox1.TabIndex = 15;
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Location = new System.Drawing.Point(22, 173);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(73, 13);
     this.label10.TabIndex = 14;
     this.label10.Text = "Zona De Vida";
     //
     // txt_ZonaGeo
     //
     this.txt_ZonaGeo.Location = new System.Drawing.Point(143, 143);
     this.txt_ZonaGeo.Name = "txt_ZonaGeo";
     this.txt_ZonaGeo.Size = new System.Drawing.Size(153, 20);
     this.txt_ZonaGeo.TabIndex = 13;
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Location = new System.Drawing.Point(23, 143);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(87, 13);
     this.label11.TabIndex = 12;
     this.label11.Text = "Zona Geografica";
     //
     // textBox2
     //
     this.textBox2.Location = new System.Drawing.Point(143, 113);
     this.textBox2.Name = "textBox2";
     this.textBox2.Size = new System.Drawing.Size(153, 20);
     this.textBox2.TabIndex = 11;
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Location = new System.Drawing.Point(22, 113);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(39, 13);
     this.label12.TabIndex = 10;
     this.label12.Text = "Familia";
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Location = new System.Drawing.Point(22, 84);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(85, 13);
     this.label13.TabIndex = 8;
     this.label13.Text = "Grupo Comercial";
     //
     // txt_NomCient
     //
     this.txt_NomCient.Location = new System.Drawing.Point(143, 54);
     this.txt_NomCient.Name = "txt_NomCient";
     this.txt_NomCient.Size = new System.Drawing.Size(153, 20);
     this.txt_NomCient.TabIndex = 7;
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.Location = new System.Drawing.Point(23, 54);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(90, 13);
     this.label14.TabIndex = 6;
     this.label14.Text = "Nombre Cientifico";
     //
     // txt_NomCom
     //
     this.txt_NomCom.Location = new System.Drawing.Point(143, 25);
     this.txt_NomCom.Name = "txt_NomCom";
     this.txt_NomCom.Size = new System.Drawing.Size(153, 20);
     this.txt_NomCom.TabIndex = 5;
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.Location = new System.Drawing.Point(22, 25);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(80, 13);
     this.label15.TabIndex = 0;
     this.label15.Text = "Nombre Comun";
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.button2);
     this.groupBox2.Controls.Add(this.comboBox1);
     this.groupBox2.Controls.Add(this.button3);
     this.groupBox2.Controls.Add(this.textBox3);
     this.groupBox2.Controls.Add(this.label16);
     this.groupBox2.Controls.Add(this.textBox4);
     this.groupBox2.Controls.Add(this.label17);
     this.groupBox2.Controls.Add(this.textBox5);
     this.groupBox2.Controls.Add(this.label18);
     this.groupBox2.Controls.Add(this.textBox6);
     this.groupBox2.Controls.Add(this.label19);
     this.groupBox2.Controls.Add(this.label20);
     this.groupBox2.Controls.Add(this.textBox7);
     this.groupBox2.Controls.Add(this.label21);
     this.groupBox2.Controls.Add(this.textBox8);
     this.groupBox2.Controls.Add(this.label22);
     this.groupBox2.Location = new System.Drawing.Point(-43, -22);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(381, 288);
     this.groupBox2.TabIndex = 5;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Editar Especie";
     //
     // button2
     //
     this.button2.Location = new System.Drawing.Point(202, 250);
     this.button2.Name = "button2";
     this.button2.Size = new System.Drawing.Size(75, 23);
     this.button2.TabIndex = 6;
     this.button2.Text = "Cancelar";
     this.button2.UseVisualStyleBackColor = true;
     //
     // comboBox1
     //
     this.comboBox1.DataSource = this.GroupComBSource;
     this.comboBox1.DisplayMember = "DESCRIPGRUPO";
     this.comboBox1.FormattingEnabled = true;
     this.comboBox1.Location = new System.Drawing.Point(157, 93);
     this.comboBox1.Name = "comboBox1";
     this.comboBox1.Size = new System.Drawing.Size(152, 21);
     this.comboBox1.TabIndex = 18;
     this.comboBox1.ValueMember = "GRUPOCOM";
     //
     // button3
     //
     this.button3.Location = new System.Drawing.Point(51, 250);
     this.button3.Name = "button3";
     this.button3.Size = new System.Drawing.Size(75, 23);
     this.button3.TabIndex = 5;
     this.button3.Text = "Guardar";
     this.button3.UseVisualStyleBackColor = true;
     //
     // textBox3
     //
     this.textBox3.Location = new System.Drawing.Point(157, 212);
     this.textBox3.Name = "textBox3";
     this.textBox3.Size = new System.Drawing.Size(61, 20);
     this.textBox3.TabIndex = 17;
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.Location = new System.Drawing.Point(37, 212);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(77, 13);
     this.label16.TabIndex = 16;
     this.label16.Text = "Diametro Corte";
     //
     // textBox4
     //
     this.textBox4.Location = new System.Drawing.Point(156, 182);
     this.textBox4.Name = "textBox4";
     this.textBox4.Size = new System.Drawing.Size(153, 20);
     this.textBox4.TabIndex = 15;
     //
     // label17
     //
     this.label17.AutoSize = true;
     this.label17.Location = new System.Drawing.Point(35, 182);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(73, 13);
     this.label17.TabIndex = 14;
     this.label17.Text = "Zona De Vida";
     //
     // textBox5
     //
     this.textBox5.Location = new System.Drawing.Point(156, 152);
     this.textBox5.Name = "textBox5";
     this.textBox5.Size = new System.Drawing.Size(153, 20);
     this.textBox5.TabIndex = 13;
     //
     // label18
     //
     this.label18.AutoSize = true;
     this.label18.Location = new System.Drawing.Point(36, 152);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(87, 13);
     this.label18.TabIndex = 12;
     this.label18.Text = "Zona Geografica";
     //
     // textBox6
     //
     this.textBox6.Location = new System.Drawing.Point(156, 122);
     this.textBox6.Name = "textBox6";
     this.textBox6.Size = new System.Drawing.Size(153, 20);
     this.textBox6.TabIndex = 11;
     //
     // label19
     //
     this.label19.AutoSize = true;
     this.label19.Location = new System.Drawing.Point(35, 122);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(39, 13);
     this.label19.TabIndex = 10;
     this.label19.Text = "Familia";
     //
     // label20
     //
     this.label20.AutoSize = true;
     this.label20.Location = new System.Drawing.Point(35, 93);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(85, 13);
     this.label20.TabIndex = 8;
     this.label20.Text = "Grupo Comercial";
     //
     // textBox7
     //
     this.textBox7.Location = new System.Drawing.Point(156, 63);
     this.textBox7.Name = "textBox7";
     this.textBox7.Size = new System.Drawing.Size(153, 20);
     this.textBox7.TabIndex = 7;
     //
     // label21
     //
     this.label21.AutoSize = true;
     this.label21.Location = new System.Drawing.Point(36, 63);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(90, 13);
     this.label21.TabIndex = 6;
     this.label21.Text = "Nombre Cientifico";
     //
     // textBox8
     //
     this.textBox8.Location = new System.Drawing.Point(156, 34);
     this.textBox8.Name = "textBox8";
     this.textBox8.Size = new System.Drawing.Size(153, 20);
     this.textBox8.TabIndex = 5;
     //
     // label22
     //
     this.label22.AutoSize = true;
     this.label22.Location = new System.Drawing.Point(35, 34);
     this.label22.Name = "label22";
     this.label22.Size = new System.Drawing.Size(80, 13);
     this.label22.TabIndex = 0;
     this.label22.Text = "Nombre Comun";
     //
     // pn_crear
     //
     this.pn_crear.Controls.Add(this.pictureBox1);
     this.pn_crear.Controls.Add(this.groupBox1);
     this.pn_crear.Location = new System.Drawing.Point(0, 0);
     this.pn_crear.Name = "pn_crear";
     this.pn_crear.Size = new System.Drawing.Size(376, 420);
     this.pn_crear.TabIndex = 1;
     //
     // pictureBox1
     //
     this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Top;
     this.pictureBox1.Image = global::SIFCA.Properties.Resources.nueva_especie;
     this.pictureBox1.Location = new System.Drawing.Point(0, 0);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(376, 71);
     this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox1.TabIndex = 17;
     this.pictureBox1.TabStop = false;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.grupoEcoCbx);
     this.groupBox1.Controls.Add(this.label42);
     this.groupBox1.Controls.Add(this.btn_crearImg);
     this.groupBox1.Controls.Add(this.cbox_GrupoComercial);
     this.groupBox1.Controls.Add(this.btn_Cancelar);
     this.groupBox1.Controls.Add(this.Btn_Crear);
     this.groupBox1.Controls.Add(this.txt_ZonaVida);
     this.groupBox1.Controls.Add(this.txt_ZonaGeografica);
     this.groupBox1.Controls.Add(this.txt_Familia);
     this.groupBox1.Controls.Add(this.txt_NombreCientifico);
     this.groupBox1.Controls.Add(this.txt_NombreComun);
     this.groupBox1.Controls.Add(this.label6);
     this.groupBox1.Controls.Add(this.label5);
     this.groupBox1.Controls.Add(this.label4);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Controls.Add(this.label8);
     this.groupBox1.Controls.Add(this.label9);
     this.groupBox1.Location = new System.Drawing.Point(5, 77);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(344, 304);
     this.groupBox1.TabIndex = 16;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Informacion de la especie";
     //
     // grupoEcoCbx
     //
     this.grupoEcoCbx.DisplayMember = "GRUPOCOM";
     this.grupoEcoCbx.FormattingEnabled = true;
     this.grupoEcoCbx.Items.AddRange(new object[] {
     "Tolerante",
     "No Tolerante"});
     this.grupoEcoCbx.Location = new System.Drawing.Point(136, 217);
     this.grupoEcoCbx.Name = "grupoEcoCbx";
     this.grupoEcoCbx.Size = new System.Drawing.Size(186, 21);
     this.grupoEcoCbx.TabIndex = 10;
     this.grupoEcoCbx.ValueMember = "GRUPOCOM";
     //
     // label42
     //
     this.label42.AutoSize = true;
     this.label42.Location = new System.Drawing.Point(22, 221);
     this.label42.Name = "label42";
     this.label42.Size = new System.Drawing.Size(91, 13);
     this.label42.TabIndex = 11;
     this.label42.Text = "Grupo ecológico :";
     //
     // btn_crearImg
     //
     this.btn_crearImg.Location = new System.Drawing.Point(49, 259);
     this.btn_crearImg.Name = "btn_crearImg";
     this.btn_crearImg.Size = new System.Drawing.Size(87, 23);
     this.btn_crearImg.TabIndex = 7;
     this.btn_crearImg.Text = "Cargar imagen";
     this.btn_crearImg.UseVisualStyleBackColor = true;
     this.btn_crearImg.Visible = false;
     this.btn_crearImg.Click += new System.EventHandler(this.btn_crearImg_Click);
     //
     // cbox_GrupoComercial
     //
     this.cbox_GrupoComercial.DataSource = this.grupoComercialBSource;
     this.cbox_GrupoComercial.DisplayMember = "DESCRIPGRUPO";
     this.cbox_GrupoComercial.FormattingEnabled = true;
     this.cbox_GrupoComercial.Location = new System.Drawing.Point(136, 24);
     this.cbox_GrupoComercial.Name = "cbox_GrupoComercial";
     this.cbox_GrupoComercial.Size = new System.Drawing.Size(186, 21);
     this.cbox_GrupoComercial.TabIndex = 0;
     this.cbox_GrupoComercial.ValueMember = "GRUPOCOM";
     //
     // btn_Cancelar
     //
     this.btn_Cancelar.Location = new System.Drawing.Point(235, 259);
     this.btn_Cancelar.Name = "btn_Cancelar";
     this.btn_Cancelar.Size = new System.Drawing.Size(87, 23);
     this.btn_Cancelar.TabIndex = 9;
     this.btn_Cancelar.Text = "Cancelar";
     this.btn_Cancelar.UseVisualStyleBackColor = true;
     this.btn_Cancelar.Click += new System.EventHandler(this.btn_Cancelar_Click);
     //
     // Btn_Crear
     //
     this.Btn_Crear.Location = new System.Drawing.Point(142, 259);
     this.Btn_Crear.Name = "Btn_Crear";
     this.Btn_Crear.Size = new System.Drawing.Size(86, 23);
     this.Btn_Crear.TabIndex = 8;
     this.Btn_Crear.Text = "Crear";
     this.Btn_Crear.UseVisualStyleBackColor = true;
     this.Btn_Crear.Click += new System.EventHandler(this.Btn_Crear_Click);
     //
     // txt_ZonaVida
     //
     this.txt_ZonaVida.AcceptsTab = true;
     this.txt_ZonaVida.Location = new System.Drawing.Point(136, 185);
     this.txt_ZonaVida.MaxLength = 200;
     this.txt_ZonaVida.Name = "txt_ZonaVida";
     this.txt_ZonaVida.Size = new System.Drawing.Size(186, 20);
     this.txt_ZonaVida.TabIndex = 5;
     this.txt_ZonaVida.Text = "Ninguna zona especificada";
     //
     // txt_ZonaGeografica
     //
     this.txt_ZonaGeografica.AcceptsTab = true;
     this.txt_ZonaGeografica.Location = new System.Drawing.Point(136, 152);
     this.txt_ZonaGeografica.MaxLength = 200;
     this.txt_ZonaGeografica.Name = "txt_ZonaGeografica";
     this.txt_ZonaGeografica.Size = new System.Drawing.Size(186, 20);
     this.txt_ZonaGeografica.TabIndex = 4;
     this.txt_ZonaGeografica.Text = "Ninguna zona especificada";
     //
     // txt_Familia
     //
     this.txt_Familia.AcceptsTab = true;
     this.txt_Familia.Location = new System.Drawing.Point(136, 119);
     this.txt_Familia.MaxLength = 200;
     this.txt_Familia.Name = "txt_Familia";
     this.txt_Familia.Size = new System.Drawing.Size(186, 20);
     this.txt_Familia.TabIndex = 3;
     //
     // txt_NombreCientifico
     //
     this.txt_NombreCientifico.AcceptsTab = true;
     this.txt_NombreCientifico.Location = new System.Drawing.Point(136, 88);
     this.txt_NombreCientifico.MaxLength = 200;
     this.txt_NombreCientifico.Name = "txt_NombreCientifico";
     this.txt_NombreCientifico.Size = new System.Drawing.Size(186, 20);
     this.txt_NombreCientifico.TabIndex = 2;
     //
     // txt_NombreComun
     //
     this.txt_NombreComun.AcceptsTab = true;
     this.txt_NombreComun.Location = new System.Drawing.Point(136, 55);
     this.txt_NombreComun.MaxLength = 200;
     this.txt_NombreComun.Name = "txt_NombreComun";
     this.txt_NombreComun.Size = new System.Drawing.Size(186, 20);
     this.txt_NombreComun.TabIndex = 1;
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(21, 185);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(61, 13);
     this.label6.TabIndex = 5;
     this.label6.Text = "Zona vida :";
     this.label6.TextAlign = System.Drawing.ContentAlignment.TopCenter;
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(21, 155);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(91, 13);
     this.label5.TabIndex = 4;
     this.label5.Text = "Zona geografica :";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(21, 122);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(45, 13);
     this.label4.TabIndex = 3;
     this.label4.Text = "Familia :";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(21, 91);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(97, 13);
     this.label1.TabIndex = 2;
     this.label1.Text = "Nombre científico :";
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Location = new System.Drawing.Point(21, 58);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(85, 13);
     this.label8.TabIndex = 1;
     this.label8.Text = "Nombre común :";
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Location = new System.Drawing.Point(21, 30);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(90, 13);
     this.label9.TabIndex = 0;
     this.label9.Text = "Grupo comercial :";
     //
     // pn_editar
     //
     this.pn_editar.Controls.Add(this.groupBox6);
     this.pn_editar.Controls.Add(this.groupBox3);
     this.pn_editar.Location = new System.Drawing.Point(0, 0);
     this.pn_editar.Name = "pn_editar";
     this.pn_editar.Size = new System.Drawing.Size(723, 445);
     this.pn_editar.TabIndex = 2;
     //
     // groupBox6
     //
     this.groupBox6.AutoSize = true;
     this.groupBox6.Controls.Add(this.UpdateImageBN);
     this.groupBox6.Controls.Add(this.updImgUbic);
     this.groupBox6.Controls.Add(this.pB_imgUpdate);
     this.groupBox6.Controls.Add(this.label36);
     this.groupBox6.Controls.Add(label40);
     this.groupBox6.Controls.Add(this.updImgDesc);
     this.groupBox6.Controls.Add(label41);
     this.groupBox6.Controls.Add(this.updImgName);
     this.groupBox6.Location = new System.Drawing.Point(355, 14);
     this.groupBox6.Name = "groupBox6";
     this.groupBox6.Size = new System.Drawing.Size(357, 393);
     this.groupBox6.TabIndex = 60;
     this.groupBox6.TabStop = false;
     this.groupBox6.Text = "Imagenes";
     //
     // UpdateImageBN
     //
     this.UpdateImageBN.AddNewItem = null;
     this.UpdateImageBN.BindingSource = this.imagenesBS;
     this.UpdateImageBN.CountItem = this.bindingNavigatorCountItem1;
     this.UpdateImageBN.DeleteItem = null;
     this.UpdateImageBN.Enabled = false;
     this.UpdateImageBN.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.bindingNavigatorMoveFirstItem1,
     this.bindingNavigatorMovePreviousItem1,
     this.bindingNavigatorSeparator2,
     this.bindingNavigatorPositionItem1,
     this.bindingNavigatorCountItem1,
     this.bindingNavigatorSeparator3,
     this.bindingNavigatorMoveNextItem1,
     this.bindingNavigatorMoveLastItem1,
     this.bindingNavigatorSeparator4,
     this.toolStripButton2,
     this.toolStripButton1});
     this.UpdateImageBN.Location = new System.Drawing.Point(3, 16);
     this.UpdateImageBN.MoveFirstItem = this.bindingNavigatorMoveFirstItem1;
     this.UpdateImageBN.MoveLastItem = this.bindingNavigatorMoveLastItem1;
     this.UpdateImageBN.MoveNextItem = this.bindingNavigatorMoveNextItem1;
     this.UpdateImageBN.MovePreviousItem = this.bindingNavigatorMovePreviousItem1;
     this.UpdateImageBN.Name = "UpdateImageBN";
     this.UpdateImageBN.PositionItem = this.bindingNavigatorPositionItem1;
     this.UpdateImageBN.Size = new System.Drawing.Size(351, 25);
     this.UpdateImageBN.TabIndex = 0;
     this.UpdateImageBN.Text = "bindingNavigator1";
     //
     // imagenesBS
     //
     this.imagenesBS.DataSource = typeof(SIFCA_DAL.IMAGEN);
     //
     // bindingNavigatorCountItem1
     //
     this.bindingNavigatorCountItem1.Name = "bindingNavigatorCountItem1";
     this.bindingNavigatorCountItem1.Size = new System.Drawing.Size(37, 22);
     this.bindingNavigatorCountItem1.Text = "de {0}";
     this.bindingNavigatorCountItem1.ToolTipText = "Número total de elementos";
     //
     // bindingNavigatorMoveFirstItem1
     //
     this.bindingNavigatorMoveFirstItem1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveFirstItem1.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveFirstItem1.Image")));
     this.bindingNavigatorMoveFirstItem1.Name = "bindingNavigatorMoveFirstItem1";
     this.bindingNavigatorMoveFirstItem1.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveFirstItem1.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveFirstItem1.Text = "Mover primero";
     //
     // bindingNavigatorMovePreviousItem1
     //
     this.bindingNavigatorMovePreviousItem1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMovePreviousItem1.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMovePreviousItem1.Image")));
     this.bindingNavigatorMovePreviousItem1.Name = "bindingNavigatorMovePreviousItem1";
     this.bindingNavigatorMovePreviousItem1.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMovePreviousItem1.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMovePreviousItem1.Text = "Mover anterior";
     //
     // bindingNavigatorSeparator2
     //
     this.bindingNavigatorSeparator2.Name = "bindingNavigatorSeparator2";
     this.bindingNavigatorSeparator2.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorPositionItem1
     //
     this.bindingNavigatorPositionItem1.AccessibleName = "Posición";
     this.bindingNavigatorPositionItem1.AutoSize = false;
     this.bindingNavigatorPositionItem1.Name = "bindingNavigatorPositionItem1";
     this.bindingNavigatorPositionItem1.Size = new System.Drawing.Size(50, 23);
     this.bindingNavigatorPositionItem1.Text = "0";
     this.bindingNavigatorPositionItem1.ToolTipText = "Posición actual";
     //
     // bindingNavigatorSeparator3
     //
     this.bindingNavigatorSeparator3.Name = "bindingNavigatorSeparator3";
     this.bindingNavigatorSeparator3.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorMoveNextItem1
     //
     this.bindingNavigatorMoveNextItem1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveNextItem1.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveNextItem1.Image")));
     this.bindingNavigatorMoveNextItem1.Name = "bindingNavigatorMoveNextItem1";
     this.bindingNavigatorMoveNextItem1.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveNextItem1.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveNextItem1.Text = "Mover siguiente";
     //
     // bindingNavigatorMoveLastItem1
     //
     this.bindingNavigatorMoveLastItem1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveLastItem1.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveLastItem1.Image")));
     this.bindingNavigatorMoveLastItem1.Name = "bindingNavigatorMoveLastItem1";
     this.bindingNavigatorMoveLastItem1.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveLastItem1.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveLastItem1.Text = "Mover último";
     //
     // bindingNavigatorSeparator4
     //
     this.bindingNavigatorSeparator4.Name = "bindingNavigatorSeparator4";
     this.bindingNavigatorSeparator4.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripButton2
     //
     this.toolStripButton2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton2.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton2.Image")));
     this.toolStripButton2.Name = "toolStripButton2";
     this.toolStripButton2.RightToLeftAutoMirrorImage = true;
     this.toolStripButton2.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton2.Text = "Agregar nuevo";
     this.toolStripButton2.Click += new System.EventHandler(this.btn_crearImg_Click);
     //
     // toolStripButton1
     //
     this.toolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton1.Image")));
     this.toolStripButton1.Name = "toolStripButton1";
     this.toolStripButton1.RightToLeftAutoMirrorImage = true;
     this.toolStripButton1.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton1.Text = "Eliminar";
     this.toolStripButton1.Click += new System.EventHandler(this.deleteImage_Click);
     //
     // updImgUbic
     //
     this.updImgUbic.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.imagenesBS, "RUTA", true));
     this.updImgUbic.Location = new System.Drawing.Point(77, 221);
     this.updImgUbic.Name = "updImgUbic";
     this.updImgUbic.Size = new System.Drawing.Size(237, 20);
     this.updImgUbic.TabIndex = 84;
     this.updImgUbic.TabStop = false;
     this.updImgUbic.Text = "Ninguna ruta ha sido especificada";
     this.updImgUbic.TextChanged += new System.EventHandler(this.rutaUpdtxt_TextChanged);
     //
     // pB_imgUpdate
     //
     this.pB_imgUpdate.DataBindings.Add(new System.Windows.Forms.Binding("Image", this.imagenesBS, "RUTA", true));
     this.pB_imgUpdate.DataBindings.Add(new System.Windows.Forms.Binding("Tag", this.imagenesBS, "RUTA", true));
     this.pB_imgUpdate.Image = global::SIFCA.Properties.Resources.ninguna_imagen;
     this.pB_imgUpdate.Location = new System.Drawing.Point(27, 52);
     this.pB_imgUpdate.Name = "pB_imgUpdate";
     this.pB_imgUpdate.Size = new System.Drawing.Size(308, 160);
     this.pB_imgUpdate.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pB_imgUpdate.TabIndex = 83;
     this.pB_imgUpdate.TabStop = false;
     //
     // label36
     //
     this.label36.AutoSize = true;
     this.label36.Location = new System.Drawing.Point(10, 221);
     this.label36.Name = "label36";
     this.label36.Size = new System.Drawing.Size(55, 13);
     this.label36.TabIndex = 82;
     this.label36.Text = "Ubicacion";
     //
     // updImgDesc
     //
     this.updImgDesc.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.imagenesBS, "DESCRIPCION", true));
     this.updImgDesc.Location = new System.Drawing.Point(76, 290);
     this.updImgDesc.Multiline = true;
     this.updImgDesc.Name = "updImgDesc";
     this.updImgDesc.Size = new System.Drawing.Size(238, 84);
     this.updImgDesc.TabIndex = 76;
     this.updImgDesc.TabStop = false;
     this.updImgDesc.Text = "Ninguna";
     //
     // updImgName
     //
     this.updImgName.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.imagenesBS, "NOMBRE", true));
     this.updImgName.Location = new System.Drawing.Point(77, 256);
     this.updImgName.Name = "updImgName";
     this.updImgName.Size = new System.Drawing.Size(238, 20);
     this.updImgName.TabIndex = 74;
     this.updImgName.TabStop = false;
     this.updImgName.Text = "Ninguno";
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.updGrupoEcoCbx);
     this.groupBox3.Controls.Add(this.label43);
     this.groupBox3.Controls.Add(this.Btn_CancelarUpdate);
     this.groupBox3.Controls.Add(this.grupoComercialCbx);
     this.groupBox3.Controls.Add(this.Guardar);
     this.groupBox3.Controls.Add(this.txt_ZonaVid);
     this.groupBox3.Controls.Add(this.label24);
     this.groupBox3.Controls.Add(this.txt_ZonaGeogra);
     this.groupBox3.Controls.Add(this.label25);
     this.groupBox3.Controls.Add(this.txt_Fam);
     this.groupBox3.Controls.Add(this.label26);
     this.groupBox3.Controls.Add(this.label27);
     this.groupBox3.Controls.Add(this.txt_NomCientifico);
     this.groupBox3.Controls.Add(this.label28);
     this.groupBox3.Controls.Add(this.txt_NomComun);
     this.groupBox3.Controls.Add(this.label29);
     this.groupBox3.Location = new System.Drawing.Point(10, 21);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Size = new System.Drawing.Size(327, 378);
     this.groupBox3.TabIndex = 6;
     this.groupBox3.TabStop = false;
     this.groupBox3.Text = "Editar Especie";
     //
     // updGrupoEcoCbx
     //
     this.updGrupoEcoCbx.FormattingEnabled = true;
     this.updGrupoEcoCbx.Items.AddRange(new object[] {
     "Tolerante",
     "No Tolerante"});
     this.updGrupoEcoCbx.Location = new System.Drawing.Point(152, 202);
     this.updGrupoEcoCbx.Name = "updGrupoEcoCbx";
     this.updGrupoEcoCbx.Size = new System.Drawing.Size(153, 21);
     this.updGrupoEcoCbx.TabIndex = 19;
     //
     // label43
     //
     this.label43.AutoSize = true;
     this.label43.Location = new System.Drawing.Point(32, 205);
     this.label43.Name = "label43";
     this.label43.Size = new System.Drawing.Size(85, 13);
     this.label43.TabIndex = 18;
     this.label43.Text = "Grupo ecológico";
     //
     // Btn_CancelarUpdate
     //
     this.Btn_CancelarUpdate.Location = new System.Drawing.Point(230, 351);
     this.Btn_CancelarUpdate.Name = "Btn_CancelarUpdate";
     this.Btn_CancelarUpdate.Size = new System.Drawing.Size(75, 23);
     this.Btn_CancelarUpdate.TabIndex = 8;
     this.Btn_CancelarUpdate.Text = "Cancelar";
     this.Btn_CancelarUpdate.UseVisualStyleBackColor = true;
     this.Btn_CancelarUpdate.Click += new System.EventHandler(this.Btn_CancelarUpdate_Click);
     //
     // grupoComercialCbx
     //
     this.grupoComercialCbx.DataSource = this.GroupComBSource;
     this.grupoComercialCbx.DisplayMember = "DESCRIPGRUPO";
     this.grupoComercialCbx.FormattingEnabled = true;
     this.grupoComercialCbx.Location = new System.Drawing.Point(153, 82);
     this.grupoComercialCbx.Name = "grupoComercialCbx";
     this.grupoComercialCbx.Size = new System.Drawing.Size(152, 21);
     this.grupoComercialCbx.TabIndex = 2;
     this.grupoComercialCbx.ValueMember = "GRUPOCOM";
     //
     // Guardar
     //
     this.Guardar.Location = new System.Drawing.Point(131, 351);
     this.Guardar.Name = "Guardar";
     this.Guardar.Size = new System.Drawing.Size(75, 23);
     this.Guardar.TabIndex = 7;
     this.Guardar.Text = "Guardar";
     this.Guardar.UseVisualStyleBackColor = true;
     this.Guardar.Click += new System.EventHandler(this.Btn_guardar_Click);
     //
     // txt_ZonaVid
     //
     this.txt_ZonaVid.Location = new System.Drawing.Point(152, 171);
     this.txt_ZonaVid.MaxLength = 200;
     this.txt_ZonaVid.Name = "txt_ZonaVid";
     this.txt_ZonaVid.Size = new System.Drawing.Size(153, 20);
     this.txt_ZonaVid.TabIndex = 5;
     //
     // label24
     //
     this.label24.AutoSize = true;
     this.label24.Location = new System.Drawing.Point(31, 171);
     this.label24.Name = "label24";
     this.label24.Size = new System.Drawing.Size(73, 13);
     this.label24.TabIndex = 14;
     this.label24.Text = "Zona De Vida";
     //
     // txt_ZonaGeogra
     //
     this.txt_ZonaGeogra.Location = new System.Drawing.Point(152, 141);
     this.txt_ZonaGeogra.MaxLength = 200;
     this.txt_ZonaGeogra.Name = "txt_ZonaGeogra";
     this.txt_ZonaGeogra.Size = new System.Drawing.Size(153, 20);
     this.txt_ZonaGeogra.TabIndex = 4;
     //
     // label25
     //
     this.label25.AutoSize = true;
     this.label25.Location = new System.Drawing.Point(32, 141);
     this.label25.Name = "label25";
     this.label25.Size = new System.Drawing.Size(87, 13);
     this.label25.TabIndex = 12;
     this.label25.Text = "Zona Geografica";
     //
     // txt_Fam
     //
     this.txt_Fam.Location = new System.Drawing.Point(152, 111);
     this.txt_Fam.MaxLength = 200;
     this.txt_Fam.Name = "txt_Fam";
     this.txt_Fam.Size = new System.Drawing.Size(153, 20);
     this.txt_Fam.TabIndex = 3;
     //
     // label26
     //
     this.label26.AutoSize = true;
     this.label26.Location = new System.Drawing.Point(31, 111);
     this.label26.Name = "label26";
     this.label26.Size = new System.Drawing.Size(39, 13);
     this.label26.TabIndex = 10;
     this.label26.Text = "Familia";
     //
     // label27
     //
     this.label27.AutoSize = true;
     this.label27.Location = new System.Drawing.Point(31, 82);
     this.label27.Name = "label27";
     this.label27.Size = new System.Drawing.Size(85, 13);
     this.label27.TabIndex = 8;
     this.label27.Text = "Grupo Comercial";
     //
     // txt_NomCientifico
     //
     this.txt_NomCientifico.Location = new System.Drawing.Point(152, 52);
     this.txt_NomCientifico.MaxLength = 200;
     this.txt_NomCientifico.Name = "txt_NomCientifico";
     this.txt_NomCientifico.Size = new System.Drawing.Size(153, 20);
     this.txt_NomCientifico.TabIndex = 1;
     //
     // label28
     //
     this.label28.AutoSize = true;
     this.label28.Location = new System.Drawing.Point(32, 52);
     this.label28.Name = "label28";
     this.label28.Size = new System.Drawing.Size(90, 13);
     this.label28.TabIndex = 6;
     this.label28.Text = "Nombre Cientifico";
     //
     // txt_NomComun
     //
     this.txt_NomComun.Location = new System.Drawing.Point(152, 23);
     this.txt_NomComun.MaxLength = 200;
     this.txt_NomComun.Name = "txt_NomComun";
     this.txt_NomComun.Size = new System.Drawing.Size(153, 20);
     this.txt_NomComun.TabIndex = 0;
     //
     // label29
     //
     this.label29.AutoSize = true;
     this.label29.Location = new System.Drawing.Point(31, 23);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(80, 13);
     this.label29.TabIndex = 0;
     this.label29.Text = "Nombre Comun";
     //
     // eP_errors
     //
     this.eP_errors.BlinkStyle = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
     this.eP_errors.ContainerControl = this;
     //
     // imagenTxt
     //
     this.eP_errors.SetError(this.imagenTxt, "Cargue una imagen");
     this.imagenTxt.Location = new System.Drawing.Point(16, 14);
     this.imagenTxt.Name = "imagenTxt";
     this.imagenTxt.ReadOnly = true;
     this.imagenTxt.Size = new System.Drawing.Size(193, 20);
     this.imagenTxt.TabIndex = 24;
     this.imagenTxt.Text = "Seleccione una imagen";
     //
     // txt_descripcionImg
     //
     this.eP_errors.SetError(this.txt_descripcionImg, "Campo requerido");
     this.txt_descripcionImg.Location = new System.Drawing.Point(15, 74);
     this.txt_descripcionImg.Multiline = true;
     this.txt_descripcionImg.Name = "txt_descripcionImg";
     this.txt_descripcionImg.Size = new System.Drawing.Size(292, 128);
     this.txt_descripcionImg.TabIndex = 1;
     //
     // txt_nombreImg
     //
     this.eP_errors.SetError(this.txt_nombreImg, "Campo requerido");
     this.txt_nombreImg.Location = new System.Drawing.Point(96, 25);
     this.txt_nombreImg.Name = "txt_nombreImg";
     this.txt_nombreImg.Size = new System.Drawing.Size(211, 20);
     this.txt_nombreImg.TabIndex = 0;
     //
     // btn_cargarImg
     //
     this.btn_cargarImg.Location = new System.Drawing.Point(226, 12);
     this.btn_cargarImg.Name = "btn_cargarImg";
     this.btn_cargarImg.Size = new System.Drawing.Size(72, 23);
     this.btn_cargarImg.TabIndex = 0;
     this.btn_cargarImg.Text = "Cargar";
     this.btn_cargarImg.UseVisualStyleBackColor = true;
     this.btn_cargarImg.Click += new System.EventHandler(this.btn_cargarImg_Click);
     //
     // pB_imgCrear
     //
     this.pB_imgCrear.Location = new System.Drawing.Point(16, 38);
     this.pB_imgCrear.Name = "pB_imgCrear";
     this.pB_imgCrear.Size = new System.Drawing.Size(282, 220);
     this.pB_imgCrear.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pB_imgCrear.TabIndex = 21;
     this.pB_imgCrear.TabStop = false;
     //
     // pn_detalle
     //
     this.pn_detalle.Controls.Add(this.groupBox5);
     this.pn_detalle.Controls.Add(this.ver_detalle);
     this.pn_detalle.Controls.Add(this.btn_cerrar);
     this.pn_detalle.Location = new System.Drawing.Point(0, 0);
     this.pn_detalle.Name = "pn_detalle";
     this.pn_detalle.Size = new System.Drawing.Size(678, 474);
     this.pn_detalle.TabIndex = 3;
     this.pn_detalle.Visible = false;
     //
     // groupBox5
     //
     this.groupBox5.Controls.Add(this.pB_imgDetalle);
     this.groupBox5.Controls.Add(this.label39);
     this.groupBox5.Controls.Add(this.rutatxt);
     this.groupBox5.Controls.Add(this.imagenesBN);
     this.groupBox5.Controls.Add(dESCRIPCIONLabel);
     this.groupBox5.Controls.Add(this.dESCRIPCIONTextBox);
     this.groupBox5.Controls.Add(nOMBRELabel);
     this.groupBox5.Controls.Add(this.nOMBRETextBox);
     this.groupBox5.Location = new System.Drawing.Point(321, 5);
     this.groupBox5.Name = "groupBox5";
     this.groupBox5.Size = new System.Drawing.Size(336, 396);
     this.groupBox5.TabIndex = 59;
     this.groupBox5.TabStop = false;
     this.groupBox5.Text = "Imagenes";
     //
     // pB_imgDetalle
     //
     this.pB_imgDetalle.DataBindings.Add(new System.Windows.Forms.Binding("Image", this.imagenesBS, "RUTA", true));
     this.pB_imgDetalle.Image = global::SIFCA.Properties.Resources.ninguna_imagen;
     this.pB_imgDetalle.Location = new System.Drawing.Point(56, 55);
     this.pB_imgDetalle.Name = "pB_imgDetalle";
     this.pB_imgDetalle.Size = new System.Drawing.Size(260, 145);
     this.pB_imgDetalle.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pB_imgDetalle.TabIndex = 78;
     this.pB_imgDetalle.TabStop = false;
     //
     // label39
     //
     this.label39.AutoSize = true;
     this.label39.Location = new System.Drawing.Point(10, 221);
     this.label39.Name = "label39";
     this.label39.Size = new System.Drawing.Size(55, 13);
     this.label39.TabIndex = 82;
     this.label39.Text = "Ubicacion";
     //
     // rutatxt
     //
     this.rutatxt.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.imagenesBS, "RUTA", true));
     this.rutatxt.Enabled = false;
     this.rutatxt.Location = new System.Drawing.Point(74, 218);
     this.rutatxt.Name = "rutatxt";
     this.rutatxt.Size = new System.Drawing.Size(238, 20);
     this.rutatxt.TabIndex = 0;
     this.rutatxt.Text = "Ninguna ubicacion especificada";
     this.rutatxt.TextChanged += new System.EventHandler(this.rutatxt_TextChanged);
     //
     // imagenesBN
     //
     this.imagenesBN.AddNewItem = null;
     this.imagenesBN.BindingSource = this.imagenesBS;
     this.imagenesBN.CountItem = this.bindingNavigatorCountItem;
     this.imagenesBN.DeleteItem = null;
     this.imagenesBN.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripLabel1,
     this.bindingNavigatorMoveFirstItem,
     this.bindingNavigatorMovePreviousItem,
     this.bindingNavigatorSeparator,
     this.bindingNavigatorPositionItem,
     this.bindingNavigatorCountItem,
     this.bindingNavigatorSeparator1,
     this.bindingNavigatorMoveNextItem,
     this.bindingNavigatorMoveLastItem});
     this.imagenesBN.Location = new System.Drawing.Point(3, 16);
     this.imagenesBN.MoveFirstItem = this.bindingNavigatorMoveFirstItem;
     this.imagenesBN.MoveLastItem = this.bindingNavigatorMoveLastItem;
     this.imagenesBN.MoveNextItem = this.bindingNavigatorMoveNextItem;
     this.imagenesBN.MovePreviousItem = this.bindingNavigatorMovePreviousItem;
     this.imagenesBN.Name = "imagenesBN";
     this.imagenesBN.PositionItem = this.bindingNavigatorPositionItem;
     this.imagenesBN.Size = new System.Drawing.Size(330, 25);
     this.imagenesBN.TabIndex = 80;
     this.imagenesBN.Text = "bindingNavigator1";
     //
     // bindingNavigatorCountItem
     //
     this.bindingNavigatorCountItem.Name = "bindingNavigatorCountItem";
     this.bindingNavigatorCountItem.Size = new System.Drawing.Size(37, 22);
     this.bindingNavigatorCountItem.Text = "de {0}";
     this.bindingNavigatorCountItem.ToolTipText = "Número total de elementos";
     //
     // toolStripLabel1
     //
     this.toolStripLabel1.Name = "toolStripLabel1";
     this.toolStripLabel1.Size = new System.Drawing.Size(78, 22);
     this.toolStripLabel1.Text = "Ver imagenes";
     //
     // bindingNavigatorMoveFirstItem
     //
     this.bindingNavigatorMoveFirstItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveFirstItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveFirstItem.Image")));
     this.bindingNavigatorMoveFirstItem.Name = "bindingNavigatorMoveFirstItem";
     this.bindingNavigatorMoveFirstItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveFirstItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveFirstItem.Text = "Mover primero";
     //
     // bindingNavigatorMovePreviousItem
     //
     this.bindingNavigatorMovePreviousItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMovePreviousItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMovePreviousItem.Image")));
     this.bindingNavigatorMovePreviousItem.Name = "bindingNavigatorMovePreviousItem";
     this.bindingNavigatorMovePreviousItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMovePreviousItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMovePreviousItem.Text = "Mover anterior";
     //
     // bindingNavigatorSeparator
     //
     this.bindingNavigatorSeparator.Name = "bindingNavigatorSeparator";
     this.bindingNavigatorSeparator.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorPositionItem
     //
     this.bindingNavigatorPositionItem.AccessibleName = "Posición";
     this.bindingNavigatorPositionItem.AutoSize = false;
     this.bindingNavigatorPositionItem.Name = "bindingNavigatorPositionItem";
     this.bindingNavigatorPositionItem.Size = new System.Drawing.Size(50, 23);
     this.bindingNavigatorPositionItem.Text = "0";
     this.bindingNavigatorPositionItem.ToolTipText = "Posición actual";
     //
     // bindingNavigatorSeparator1
     //
     this.bindingNavigatorSeparator1.Name = "bindingNavigatorSeparator1";
     this.bindingNavigatorSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorMoveNextItem
     //
     this.bindingNavigatorMoveNextItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveNextItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveNextItem.Image")));
     this.bindingNavigatorMoveNextItem.Name = "bindingNavigatorMoveNextItem";
     this.bindingNavigatorMoveNextItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveNextItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveNextItem.Text = "Mover siguiente";
     //
     // bindingNavigatorMoveLastItem
     //
     this.bindingNavigatorMoveLastItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveLastItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveLastItem.Image")));
     this.bindingNavigatorMoveLastItem.Name = "bindingNavigatorMoveLastItem";
     this.bindingNavigatorMoveLastItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveLastItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveLastItem.Text = "Mover último";
     //
     // dESCRIPCIONTextBox
     //
     this.dESCRIPCIONTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.imagenesBS, "DESCRIPCION", true));
     this.dESCRIPCIONTextBox.Enabled = false;
     this.dESCRIPCIONTextBox.Location = new System.Drawing.Point(76, 290);
     this.dESCRIPCIONTextBox.Multiline = true;
     this.dESCRIPCIONTextBox.Name = "dESCRIPCIONTextBox";
     this.dESCRIPCIONTextBox.Size = new System.Drawing.Size(238, 84);
     this.dESCRIPCIONTextBox.TabIndex = 2;
     this.dESCRIPCIONTextBox.Text = "Ninguna";
     //
     // nOMBRETextBox
     //
     this.nOMBRETextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.imagenesBS, "NOMBRE", true));
     this.nOMBRETextBox.Enabled = false;
     this.nOMBRETextBox.Location = new System.Drawing.Point(77, 256);
     this.nOMBRETextBox.Name = "nOMBRETextBox";
     this.nOMBRETextBox.Size = new System.Drawing.Size(238, 20);
     this.nOMBRETextBox.TabIndex = 1;
     this.nOMBRETextBox.Text = "Ninguno";
     //
     // ver_detalle
     //
     this.ver_detalle.Controls.Add(this.detailGrupoEcoTxt);
     this.ver_detalle.Controls.Add(this.label44);
     this.ver_detalle.Controls.Add(this.pictureBox2);
     this.ver_detalle.Controls.Add(this.cbxGrupoComercial_det);
     this.ver_detalle.Controls.Add(this.txt_ZonaVid_det);
     this.ver_detalle.Controls.Add(this.label30);
     this.ver_detalle.Controls.Add(this.txt_ZonaGeogra_det);
     this.ver_detalle.Controls.Add(this.label31);
     this.ver_detalle.Controls.Add(this.txt_Fam_det);
     this.ver_detalle.Controls.Add(this.label32);
     this.ver_detalle.Controls.Add(this.label33);
     this.ver_detalle.Controls.Add(this.txt_NomCientifico_det);
     this.ver_detalle.Controls.Add(this.label34);
     this.ver_detalle.Controls.Add(this.txt_NomComun_det);
     this.ver_detalle.Controls.Add(this.label35);
     this.ver_detalle.Location = new System.Drawing.Point(10, 5);
     this.ver_detalle.Name = "ver_detalle";
     this.ver_detalle.Size = new System.Drawing.Size(303, 396);
     this.ver_detalle.TabIndex = 58;
     this.ver_detalle.TabStop = false;
     this.ver_detalle.Text = "Detalle especie";
     //
     // detailGrupoEcoTxt
     //
     this.detailGrupoEcoTxt.Location = new System.Drawing.Point(137, 285);
     this.detailGrupoEcoTxt.Name = "detailGrupoEcoTxt";
     this.detailGrupoEcoTxt.ReadOnly = true;
     this.detailGrupoEcoTxt.Size = new System.Drawing.Size(152, 20);
     this.detailGrupoEcoTxt.TabIndex = 72;
     //
     // label44
     //
     this.label44.AutoSize = true;
     this.label44.Location = new System.Drawing.Point(17, 285);
     this.label44.Name = "label44";
     this.label44.Size = new System.Drawing.Size(85, 13);
     this.label44.TabIndex = 73;
     this.label44.Text = "Grupo ecológico";
     //
     // pictureBox2
     //
     this.pictureBox2.Dock = System.Windows.Forms.DockStyle.Top;
     this.pictureBox2.Image = global::SIFCA.Properties.Resources.nueva_especie;
     this.pictureBox2.Location = new System.Drawing.Point(3, 16);
     this.pictureBox2.Name = "pictureBox2";
     this.pictureBox2.Size = new System.Drawing.Size(297, 53);
     this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox2.TabIndex = 71;
     this.pictureBox2.TabStop = false;
     //
     // cbxGrupoComercial_det
     //
     this.cbxGrupoComercial_det.DataSource = this.GroupComBSource;
     this.cbxGrupoComercial_det.DisplayMember = "DESCRIPGRUPO";
     this.cbxGrupoComercial_det.Enabled = false;
     this.cbxGrupoComercial_det.FormattingEnabled = true;
     this.cbxGrupoComercial_det.Location = new System.Drawing.Point(136, 156);
     this.cbxGrupoComercial_det.Name = "cbxGrupoComercial_det";
     this.cbxGrupoComercial_det.Size = new System.Drawing.Size(152, 21);
     this.cbxGrupoComercial_det.TabIndex = 2;
     this.cbxGrupoComercial_det.ValueMember = "GRUPOCOM";
     //
     // txt_ZonaVid_det
     //
     this.txt_ZonaVid_det.Location = new System.Drawing.Point(136, 250);
     this.txt_ZonaVid_det.Name = "txt_ZonaVid_det";
     this.txt_ZonaVid_det.ReadOnly = true;
     this.txt_ZonaVid_det.Size = new System.Drawing.Size(153, 20);
     this.txt_ZonaVid_det.TabIndex = 5;
     //
     // label30
     //
     this.label30.AutoSize = true;
     this.label30.Location = new System.Drawing.Point(15, 250);
     this.label30.Name = "label30";
     this.label30.Size = new System.Drawing.Size(73, 13);
     this.label30.TabIndex = 66;
     this.label30.Text = "Zona De Vida";
     //
     // txt_ZonaGeogra_det
     //
     this.txt_ZonaGeogra_det.Location = new System.Drawing.Point(136, 220);
     this.txt_ZonaGeogra_det.Name = "txt_ZonaGeogra_det";
     this.txt_ZonaGeogra_det.ReadOnly = true;
     this.txt_ZonaGeogra_det.Size = new System.Drawing.Size(153, 20);
     this.txt_ZonaGeogra_det.TabIndex = 4;
     //
     // label31
     //
     this.label31.AutoSize = true;
     this.label31.Location = new System.Drawing.Point(16, 220);
     this.label31.Name = "label31";
     this.label31.Size = new System.Drawing.Size(87, 13);
     this.label31.TabIndex = 64;
     this.label31.Text = "Zona Geografica";
     //
     // txt_Fam_det
     //
     this.txt_Fam_det.Location = new System.Drawing.Point(135, 185);
     this.txt_Fam_det.Name = "txt_Fam_det";
     this.txt_Fam_det.ReadOnly = true;
     this.txt_Fam_det.Size = new System.Drawing.Size(153, 20);
     this.txt_Fam_det.TabIndex = 3;
     //
     // label32
     //
     this.label32.AutoSize = true;
     this.label32.Location = new System.Drawing.Point(14, 185);
     this.label32.Name = "label32";
     this.label32.Size = new System.Drawing.Size(39, 13);
     this.label32.TabIndex = 62;
     this.label32.Text = "Familia";
     //
     // label33
     //
     this.label33.AutoSize = true;
     this.label33.Location = new System.Drawing.Point(14, 156);
     this.label33.Name = "label33";
     this.label33.Size = new System.Drawing.Size(85, 13);
     this.label33.TabIndex = 61;
     this.label33.Text = "Grupo Comercial";
     //
     // txt_NomCientifico_det
     //
     this.txt_NomCientifico_det.Location = new System.Drawing.Point(135, 123);
     this.txt_NomCientifico_det.Name = "txt_NomCientifico_det";
     this.txt_NomCientifico_det.ReadOnly = true;
     this.txt_NomCientifico_det.Size = new System.Drawing.Size(153, 20);
     this.txt_NomCientifico_det.TabIndex = 1;
     //
     // label34
     //
     this.label34.AutoSize = true;
     this.label34.Location = new System.Drawing.Point(15, 123);
     this.label34.Name = "label34";
     this.label34.Size = new System.Drawing.Size(90, 13);
     this.label34.TabIndex = 59;
     this.label34.Text = "Nombre Cientifico";
     //
     // txt_NomComun_det
     //
     this.txt_NomComun_det.Location = new System.Drawing.Point(135, 94);
     this.txt_NomComun_det.Name = "txt_NomComun_det";
     this.txt_NomComun_det.ReadOnly = true;
     this.txt_NomComun_det.Size = new System.Drawing.Size(153, 20);
     this.txt_NomComun_det.TabIndex = 0;
     //
     // label35
     //
     this.label35.AutoSize = true;
     this.label35.Location = new System.Drawing.Point(14, 94);
     this.label35.Name = "label35";
     this.label35.Size = new System.Drawing.Size(80, 13);
     this.label35.TabIndex = 57;
     this.label35.Text = "Nombre Comun";
     //
     // btn_cerrar
     //
     this.btn_cerrar.Location = new System.Drawing.Point(565, 408);
     this.btn_cerrar.Name = "btn_cerrar";
     this.btn_cerrar.Size = new System.Drawing.Size(92, 23);
     this.btn_cerrar.TabIndex = 0;
     this.btn_cerrar.Text = "Cerrar";
     this.btn_cerrar.UseVisualStyleBackColor = true;
     this.btn_cerrar.Click += new System.EventHandler(this.btn_cerrar_Click);
     //
     // pn_cargarImg
     //
     this.pn_cargarImg.Controls.Add(this.pB_imgCrear);
     this.pn_cargarImg.Controls.Add(this.groupBox4);
     this.pn_cargarImg.Controls.Add(this.imagenTxt);
     this.pn_cargarImg.Controls.Add(this.btn_cargarImg);
     this.pn_cargarImg.Location = new System.Drawing.Point(0, 0);
     this.pn_cargarImg.Name = "pn_cargarImg";
     this.pn_cargarImg.Size = new System.Drawing.Size(655, 317);
     this.pn_cargarImg.TabIndex = 4;
     //
     // groupBox4
     //
     this.groupBox4.Controls.Add(this.txt_descripcionImg);
     this.groupBox4.Controls.Add(this.label38);
     this.groupBox4.Controls.Add(this.txt_nombreImg);
     this.groupBox4.Controls.Add(this.label37);
     this.groupBox4.Controls.Add(this.btn_ImgCancelar);
     this.groupBox4.Controls.Add(this.btn_ImgAceptar);
     this.groupBox4.Location = new System.Drawing.Point(304, 12);
     this.groupBox4.Name = "groupBox4";
     this.groupBox4.Size = new System.Drawing.Size(329, 249);
     this.groupBox4.TabIndex = 35;
     this.groupBox4.TabStop = false;
     this.groupBox4.Text = "Detalles";
     //
     // label38
     //
     this.label38.AutoSize = true;
     this.label38.Location = new System.Drawing.Point(12, 56);
     this.label38.Name = "label38";
     this.label38.Size = new System.Drawing.Size(63, 13);
     this.label38.TabIndex = 39;
     this.label38.Text = "Descripción";
     //
     // label37
     //
     this.label37.AutoSize = true;
     this.label37.Location = new System.Drawing.Point(9, 25);
     this.label37.Name = "label37";
     this.label37.Size = new System.Drawing.Size(81, 13);
     this.label37.TabIndex = 37;
     this.label37.Text = "Nombre imagen";
     //
     // btn_ImgCancelar
     //
     this.btn_ImgCancelar.Location = new System.Drawing.Point(209, 220);
     this.btn_ImgCancelar.Name = "btn_ImgCancelar";
     this.btn_ImgCancelar.Size = new System.Drawing.Size(98, 23);
     this.btn_ImgCancelar.TabIndex = 3;
     this.btn_ImgCancelar.Text = "Cancelar";
     this.btn_ImgCancelar.UseVisualStyleBackColor = true;
     this.btn_ImgCancelar.Click += new System.EventHandler(this.btn_ImgCancelar_Click);
     //
     // btn_ImgAceptar
     //
     this.btn_ImgAceptar.Location = new System.Drawing.Point(105, 220);
     this.btn_ImgAceptar.Name = "btn_ImgAceptar";
     this.btn_ImgAceptar.Size = new System.Drawing.Size(98, 23);
     this.btn_ImgAceptar.TabIndex = 2;
     this.btn_ImgAceptar.Text = "Aceptar";
     this.btn_ImgAceptar.UseVisualStyleBackColor = true;
     this.btn_ImgAceptar.Click += new System.EventHandler(this.btn_ImgAceptar_Click);
     //
     // Especies_Form
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.ClientSize = new System.Drawing.Size(893, 491);
     this.Controls.Add(this.pn_detalle);
     this.Controls.Add(this.pn_editar);
     this.Controls.Add(this.pn_crear);
     this.Controls.Add(this.pn_listado);
     this.Controls.Add(this.pn_cargarImg);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "Especies_Form";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Especies";
     this.pn_listado.ResumeLayout(false);
     this.pn_listado.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ListadoEspecies)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grupoComercialBSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.specieBSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.paginacionEspecie)).EndInit();
     this.paginacionEspecie.ResumeLayout(false);
     this.paginacionEspecie.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GroupComBSource)).EndInit();
     this.groupBox.ResumeLayout(false);
     this.groupBox.PerformLayout();
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     this.pn_crear.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.pn_editar.ResumeLayout(false);
     this.pn_editar.PerformLayout();
     this.groupBox6.ResumeLayout(false);
     this.groupBox6.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.UpdateImageBN)).EndInit();
     this.UpdateImageBN.ResumeLayout(false);
     this.UpdateImageBN.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.imagenesBS)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pB_imgUpdate)).EndInit();
     this.groupBox3.ResumeLayout(false);
     this.groupBox3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.eP_errors)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pB_imgCrear)).EndInit();
     this.pn_detalle.ResumeLayout(false);
     this.groupBox5.ResumeLayout(false);
     this.groupBox5.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pB_imgDetalle)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.imagenesBN)).EndInit();
     this.imagenesBN.ResumeLayout(false);
     this.imagenesBN.PerformLayout();
     this.ver_detalle.ResumeLayout(false);
     this.ver_detalle.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
     this.pn_cargarImg.ResumeLayout(false);
     this.pn_cargarImg.PerformLayout();
     this.groupBox4.ResumeLayout(false);
     this.groupBox4.PerformLayout();
     this.ResumeLayout(false);
 }
 /// <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.Windows.Forms.Label label14;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmClientes));
     this.grpCampos = new System.Windows.Forms.GroupBox();
     this.label6 = new System.Windows.Forms.Label();
     this.label12 = new System.Windows.Forms.Label();
     this.label10 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.txtContactoCLI = new System.Windows.Forms.TextBox();
     this.txtNombreCLI = new System.Windows.Forms.TextBox();
     this.txtApellidoCLI = new System.Windows.Forms.TextBox();
     this.label4 = new System.Windows.Forms.Label();
     this.txtTransporteCLI = new System.Windows.Forms.TextBox();
     this.label2 = new System.Windows.Forms.Label();
     this.txtCorreoCLI = new System.Windows.Forms.TextBox();
     this.txtMovilCLI = new System.Windows.Forms.TextBox();
     this.txtTelefonoCLI = new System.Windows.Forms.TextBox();
     this.txtIdClienteCLI = new System.Windows.Forms.TextBox();
     this.txtFechaNacCLI = new System.Windows.Forms.MaskedTextBox();
     this.label11 = new System.Windows.Forms.Label();
     this.txtRazonSocialCLI = new System.Windows.Forms.TextBox();
     this.cmbCondicion = new System.Windows.Forms.ComboBox();
     this.label13 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.txtCUIT = new System.Windows.Forms.TextBox();
     this.gvwDatos = new System.Windows.Forms.DataGridView();
     this.grpBotones = new System.Windows.Forms.GroupBox();
     this.btnCancelar = new System.Windows.Forms.Button();
     this.btnSalir = new System.Windows.Forms.Button();
     this.btnGrabar = new System.Windows.Forms.Button();
     this.btnBorrar = new System.Windows.Forms.Button();
     this.btnEditar = new System.Windows.Forms.Button();
     this.btnNuevo = new System.Windows.Forms.Button();
     this.btnBuscar = new System.Windows.Forms.Button();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.txtParametros = new System.Windows.Forms.TextBox();
     this.bindingNavigator1 = new System.Windows.Forms.BindingNavigator(this.components);
     this.bindingNavigatorCountItem = new System.Windows.Forms.ToolStripLabel();
     this.bindingNavigatorMoveFirstItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMovePreviousItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorPositionItem = new System.Windows.Forms.ToolStripTextBox();
     this.bindingNavigatorSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorMoveNextItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMoveLastItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
     this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
     this.label9 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.txtProvinciaCLI = new System.Windows.Forms.TextBox();
     this.txtLocalidadCLI = new System.Windows.Forms.TextBox();
     this.txtDireccionCLI = new System.Windows.Forms.TextBox();
     label14 = new System.Windows.Forms.Label();
     this.grpCampos.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gvwDatos)).BeginInit();
     this.grpBotones.SuspendLayout();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bindingNavigator1)).BeginInit();
     this.bindingNavigator1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     this.SuspendLayout();
     //
     // label14
     //
     label14.AutoSize = true;
     label14.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     label14.ForeColor = System.Drawing.SystemColors.ActiveCaption;
     label14.Location = new System.Drawing.Point(10, 70);
     label14.Name = "label14";
     label14.Size = new System.Drawing.Size(51, 15);
     label14.TabIndex = 27;
     label14.Text = "Apellido";
     //
     // grpCampos
     //
     this.grpCampos.Controls.Add(this.label9);
     this.grpCampos.Controls.Add(this.label8);
     this.grpCampos.Controls.Add(this.label5);
     this.grpCampos.Controls.Add(this.txtProvinciaCLI);
     this.grpCampos.Controls.Add(this.txtLocalidadCLI);
     this.grpCampos.Controls.Add(this.txtDireccionCLI);
     this.grpCampos.Controls.Add(label14);
     this.grpCampos.Controls.Add(this.label6);
     this.grpCampos.Controls.Add(this.label12);
     this.grpCampos.Controls.Add(this.label10);
     this.grpCampos.Controls.Add(this.label3);
     this.grpCampos.Controls.Add(this.label1);
     this.grpCampos.Controls.Add(this.txtContactoCLI);
     this.grpCampos.Controls.Add(this.txtNombreCLI);
     this.grpCampos.Controls.Add(this.txtApellidoCLI);
     this.grpCampos.Controls.Add(this.label4);
     this.grpCampos.Controls.Add(this.txtTransporteCLI);
     this.grpCampos.Controls.Add(this.label2);
     this.grpCampos.Controls.Add(this.txtCorreoCLI);
     this.grpCampos.Controls.Add(this.txtMovilCLI);
     this.grpCampos.Controls.Add(this.txtTelefonoCLI);
     this.grpCampos.Controls.Add(this.txtIdClienteCLI);
     this.grpCampos.Location = new System.Drawing.Point(12, 199);
     this.grpCampos.Name = "grpCampos";
     this.grpCampos.Size = new System.Drawing.Size(404, 321);
     this.grpCampos.TabIndex = 0;
     this.grpCampos.TabStop = false;
     this.grpCampos.Enter += new System.EventHandler(this.grpCampos_Enter);
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.ForeColor = System.Drawing.SystemColors.ActiveCaption;
     this.label6.Location = new System.Drawing.Point(10, 44);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(52, 15);
     this.label6.TabIndex = 27;
     this.label6.Text = "Nombre";
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label12.ForeColor = System.Drawing.SystemColors.ActiveCaption;
     this.label12.Location = new System.Drawing.Point(10, 97);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(44, 15);
     this.label12.TabIndex = 25;
     this.label12.Text = "Correo";
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label10.ForeColor = System.Drawing.SystemColors.ActiveCaption;
     this.label10.Location = new System.Drawing.Point(10, 233);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(36, 15);
     this.label10.TabIndex = 24;
     this.label10.Text = "Móvil";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.ForeColor = System.Drawing.SystemColors.ActiveCaption;
     this.label3.Location = new System.Drawing.Point(10, 206);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(55, 15);
     this.label3.TabIndex = 24;
     this.label3.Text = "Teléfono";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.SystemColors.ActiveCaption;
     this.label1.Location = new System.Drawing.Point(10, 19);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(59, 15);
     this.label1.TabIndex = 17;
     this.label1.Text = "Nº cliente";
     //
     // txtContactoCLI
     //
     this.txtContactoCLI.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtContactoCLI.Location = new System.Drawing.Point(90, 285);
     this.txtContactoCLI.Name = "txtContactoCLI";
     this.txtContactoCLI.Size = new System.Drawing.Size(295, 20);
     this.txtContactoCLI.TabIndex = 10;
     this.txtContactoCLI.TabStop = false;
     this.txtContactoCLI.Visible = false;
     //
     // txtNombreCLI
     //
     this.txtNombreCLI.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtNombreCLI.Location = new System.Drawing.Point(90, 44);
     this.txtNombreCLI.Name = "txtNombreCLI";
     this.txtNombreCLI.Size = new System.Drawing.Size(295, 20);
     this.txtNombreCLI.TabIndex = 1;
     //
     // txtApellidoCLI
     //
     this.txtApellidoCLI.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtApellidoCLI.Location = new System.Drawing.Point(90, 70);
     this.txtApellidoCLI.Name = "txtApellidoCLI";
     this.txtApellidoCLI.Size = new System.Drawing.Size(295, 20);
     this.txtApellidoCLI.TabIndex = 2;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.ForeColor = System.Drawing.SystemColors.ActiveCaption;
     this.label4.Location = new System.Drawing.Point(10, 260);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(66, 15);
     this.label4.TabIndex = 25;
     this.label4.Text = "Transporte";
     this.label4.Visible = false;
     //
     // txtTransporteCLI
     //
     this.txtTransporteCLI.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtTransporteCLI.Location = new System.Drawing.Point(90, 259);
     this.txtTransporteCLI.Name = "txtTransporteCLI";
     this.txtTransporteCLI.Size = new System.Drawing.Size(295, 20);
     this.txtTransporteCLI.TabIndex = 9;
     this.txtTransporteCLI.TabStop = false;
     this.txtTransporteCLI.Visible = false;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.ForeColor = System.Drawing.SystemColors.ActiveCaption;
     this.label2.Location = new System.Drawing.Point(10, 285);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(55, 15);
     this.label2.TabIndex = 23;
     this.label2.Text = "Contacto";
     this.label2.Visible = false;
     //
     // txtCorreoCLI
     //
     this.txtCorreoCLI.CharacterCasing = System.Windows.Forms.CharacterCasing.Lower;
     this.txtCorreoCLI.Location = new System.Drawing.Point(90, 96);
     this.txtCorreoCLI.Name = "txtCorreoCLI";
     this.txtCorreoCLI.Size = new System.Drawing.Size(295, 20);
     this.txtCorreoCLI.TabIndex = 3;
     //
     // txtMovilCLI
     //
     this.txtMovilCLI.Location = new System.Drawing.Point(90, 232);
     this.txtMovilCLI.Name = "txtMovilCLI";
     this.txtMovilCLI.Size = new System.Drawing.Size(295, 20);
     this.txtMovilCLI.TabIndex = 8;
     //
     // txtTelefonoCLI
     //
     this.txtTelefonoCLI.Location = new System.Drawing.Point(90, 206);
     this.txtTelefonoCLI.Name = "txtTelefonoCLI";
     this.txtTelefonoCLI.Size = new System.Drawing.Size(295, 20);
     this.txtTelefonoCLI.TabIndex = 7;
     //
     // txtIdClienteCLI
     //
     this.txtIdClienteCLI.Location = new System.Drawing.Point(90, 18);
     this.txtIdClienteCLI.Name = "txtIdClienteCLI";
     this.txtIdClienteCLI.Size = new System.Drawing.Size(295, 20);
     this.txtIdClienteCLI.TabIndex = 0;
     //
     // txtFechaNacCLI
     //
     this.txtFechaNacCLI.Location = new System.Drawing.Point(127, 552);
     this.txtFechaNacCLI.Mask = "00/00/0000";
     this.txtFechaNacCLI.Name = "txtFechaNacCLI";
     this.txtFechaNacCLI.Size = new System.Drawing.Size(270, 20);
     this.txtFechaNacCLI.TabIndex = 7;
     this.txtFechaNacCLI.TabStop = false;
     this.txtFechaNacCLI.ValidatingType = typeof(System.DateTime);
     this.txtFechaNacCLI.Visible = false;
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label11.ForeColor = System.Drawing.SystemColors.ActiveCaption;
     this.label11.Location = new System.Drawing.Point(22, 552);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(56, 15);
     this.label11.TabIndex = 23;
     this.label11.Text = "Fecha N.";
     this.label11.Visible = false;
     //
     // txtRazonSocialCLI
     //
     this.txtRazonSocialCLI.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtRazonSocialCLI.Location = new System.Drawing.Point(407, 552);
     this.txtRazonSocialCLI.Name = "txtRazonSocialCLI";
     this.txtRazonSocialCLI.Size = new System.Drawing.Size(200, 20);
     this.txtRazonSocialCLI.TabIndex = 1;
     this.txtRazonSocialCLI.Visible = false;
     //
     // cmbCondicion
     //
     this.cmbCondicion.FormattingEnabled = true;
     this.cmbCondicion.Location = new System.Drawing.Point(270, 527);
     this.cmbCondicion.Name = "cmbCondicion";
     this.cmbCondicion.Size = new System.Drawing.Size(159, 21);
     this.cmbCondicion.TabIndex = 28;
     this.cmbCondicion.TabStop = false;
     this.cmbCondicion.Visible = false;
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label13.ForeColor = System.Drawing.SystemColors.ActiveCaption;
     this.label13.Location = new System.Drawing.Point(184, 528);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(80, 15);
     this.label13.TabIndex = 27;
     this.label13.Text = "Condicion iva";
     this.label13.Visible = false;
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label7.ForeColor = System.Drawing.SystemColors.ActiveCaption;
     this.label7.Location = new System.Drawing.Point(15, 528);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(34, 15);
     this.label7.TabIndex = 18;
     this.label7.Text = "CUIT";
     this.label7.Visible = false;
     //
     // txtCUIT
     //
     this.txtCUIT.Location = new System.Drawing.Point(55, 526);
     this.txtCUIT.Name = "txtCUIT";
     this.txtCUIT.Size = new System.Drawing.Size(121, 20);
     this.txtCUIT.TabIndex = 2;
     this.txtCUIT.TabStop = false;
     this.txtCUIT.Visible = false;
     //
     // gvwDatos
     //
     this.gvwDatos.AllowUserToAddRows = false;
     this.gvwDatos.AllowUserToDeleteRows = false;
     this.gvwDatos.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells;
     this.gvwDatos.Location = new System.Drawing.Point(12, 17);
     this.gvwDatos.Name = "gvwDatos";
     this.gvwDatos.ReadOnly = true;
     this.gvwDatos.Size = new System.Drawing.Size(615, 172);
     this.gvwDatos.TabIndex = 0;
     this.gvwDatos.Text = "DataGridView1";
     //
     // grpBotones
     //
     this.grpBotones.Controls.Add(this.btnCancelar);
     this.grpBotones.Controls.Add(this.btnSalir);
     this.grpBotones.Controls.Add(this.btnGrabar);
     this.grpBotones.Controls.Add(this.btnBorrar);
     this.grpBotones.Controls.Add(this.btnEditar);
     this.grpBotones.Controls.Add(this.btnNuevo);
     this.grpBotones.Controls.Add(this.btnBuscar);
     this.grpBotones.Location = new System.Drawing.Point(427, 259);
     this.grpBotones.Name = "grpBotones";
     this.grpBotones.Size = new System.Drawing.Size(200, 261);
     this.grpBotones.TabIndex = 1;
     this.grpBotones.TabStop = false;
     //
     // btnCancelar
     //
     this.btnCancelar.Location = new System.Drawing.Point(20, 185);
     this.btnCancelar.Name = "btnCancelar";
     this.btnCancelar.Size = new System.Drawing.Size(160, 26);
     this.btnCancelar.TabIndex = 5;
     this.btnCancelar.Text = "Cancelar";
     this.btnCancelar.UseVisualStyleBackColor = true;
     this.btnCancelar.Click += new System.EventHandler(this.btnCancelar_Click);
     //
     // btnSalir
     //
     this.btnSalir.Location = new System.Drawing.Point(20, 217);
     this.btnSalir.Name = "btnSalir";
     this.btnSalir.Size = new System.Drawing.Size(160, 26);
     this.btnSalir.TabIndex = 6;
     this.btnSalir.Text = "Salir";
     this.btnSalir.UseVisualStyleBackColor = true;
     this.btnSalir.Click += new System.EventHandler(this.btnSalir_Click);
     //
     // btnGrabar
     //
     this.btnGrabar.Location = new System.Drawing.Point(20, 153);
     this.btnGrabar.Name = "btnGrabar";
     this.btnGrabar.Size = new System.Drawing.Size(160, 26);
     this.btnGrabar.TabIndex = 4;
     this.btnGrabar.Text = "Grabar";
     this.btnGrabar.UseVisualStyleBackColor = true;
     this.btnGrabar.Click += new System.EventHandler(this.btnGrabar_Click);
     //
     // btnBorrar
     //
     this.btnBorrar.Location = new System.Drawing.Point(20, 121);
     this.btnBorrar.Name = "btnBorrar";
     this.btnBorrar.Size = new System.Drawing.Size(160, 26);
     this.btnBorrar.TabIndex = 3;
     this.btnBorrar.Text = "Borrar";
     this.btnBorrar.UseVisualStyleBackColor = true;
     this.btnBorrar.Click += new System.EventHandler(this.btnBorrar_Click);
     //
     // btnEditar
     //
     this.btnEditar.Location = new System.Drawing.Point(20, 89);
     this.btnEditar.Name = "btnEditar";
     this.btnEditar.Size = new System.Drawing.Size(160, 26);
     this.btnEditar.TabIndex = 2;
     this.btnEditar.Text = "Editar";
     this.btnEditar.UseVisualStyleBackColor = true;
     this.btnEditar.Click += new System.EventHandler(this.btnEditar_Click);
     //
     // btnNuevo
     //
     this.btnNuevo.Location = new System.Drawing.Point(20, 57);
     this.btnNuevo.Name = "btnNuevo";
     this.btnNuevo.Size = new System.Drawing.Size(160, 26);
     this.btnNuevo.TabIndex = 1;
     this.btnNuevo.Text = "Nuevo";
     this.btnNuevo.UseVisualStyleBackColor = true;
     this.btnNuevo.Click += new System.EventHandler(this.btnNuevo_Click);
     //
     // btnBuscar
     //
     this.btnBuscar.Location = new System.Drawing.Point(20, 25);
     this.btnBuscar.Name = "btnBuscar";
     this.btnBuscar.Size = new System.Drawing.Size(160, 26);
     this.btnBuscar.TabIndex = 0;
     this.btnBuscar.Text = "Buscar";
     this.btnBuscar.UseVisualStyleBackColor = true;
     this.btnBuscar.Click += new System.EventHandler(this.btnBuscar_Click);
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.txtParametros);
     this.groupBox1.ForeColor = System.Drawing.SystemColors.ActiveCaption;
     this.groupBox1.Location = new System.Drawing.Point(427, 199);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(200, 54);
     this.groupBox1.TabIndex = 3;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Buscar";
     //
     // txtParametros
     //
     this.txtParametros.Location = new System.Drawing.Point(6, 20);
     this.txtParametros.Name = "txtParametros";
     this.txtParametros.Size = new System.Drawing.Size(188, 20);
     this.txtParametros.TabIndex = 0;
     //
     // bindingNavigator1
     //
     this.bindingNavigator1.AddNewItem = null;
     this.bindingNavigator1.CountItem = this.bindingNavigatorCountItem;
     this.bindingNavigator1.DeleteItem = null;
     this.bindingNavigator1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.bindingNavigator1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.bindingNavigatorMoveFirstItem,
     this.bindingNavigatorMovePreviousItem,
     this.bindingNavigatorSeparator,
     this.bindingNavigatorPositionItem,
     this.bindingNavigatorCountItem,
     this.bindingNavigatorSeparator1,
     this.bindingNavigatorMoveNextItem,
     this.bindingNavigatorMoveLastItem,
     this.bindingNavigatorSeparator2});
     this.bindingNavigator1.Location = new System.Drawing.Point(0, 532);
     this.bindingNavigator1.MoveFirstItem = this.bindingNavigatorMoveFirstItem;
     this.bindingNavigator1.MoveLastItem = this.bindingNavigatorMoveLastItem;
     this.bindingNavigator1.MoveNextItem = this.bindingNavigatorMoveNextItem;
     this.bindingNavigator1.MovePreviousItem = this.bindingNavigatorMovePreviousItem;
     this.bindingNavigator1.Name = "bindingNavigator1";
     this.bindingNavigator1.PositionItem = this.bindingNavigatorPositionItem;
     this.bindingNavigator1.Size = new System.Drawing.Size(639, 25);
     this.bindingNavigator1.TabIndex = 29;
     this.bindingNavigator1.Text = "bindingNavigator1";
     //
     // bindingNavigatorCountItem
     //
     this.bindingNavigatorCountItem.Name = "bindingNavigatorCountItem";
     this.bindingNavigatorCountItem.Size = new System.Drawing.Size(38, 22);
     this.bindingNavigatorCountItem.Text = "de {0}";
     this.bindingNavigatorCountItem.ToolTipText = "Número total de elementos";
     //
     // bindingNavigatorMoveFirstItem
     //
     this.bindingNavigatorMoveFirstItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveFirstItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveFirstItem.Image")));
     this.bindingNavigatorMoveFirstItem.Name = "bindingNavigatorMoveFirstItem";
     this.bindingNavigatorMoveFirstItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveFirstItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveFirstItem.Text = "Mover primero";
     //
     // bindingNavigatorMovePreviousItem
     //
     this.bindingNavigatorMovePreviousItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMovePreviousItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMovePreviousItem.Image")));
     this.bindingNavigatorMovePreviousItem.Name = "bindingNavigatorMovePreviousItem";
     this.bindingNavigatorMovePreviousItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMovePreviousItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMovePreviousItem.Text = "Mover anterior";
     //
     // bindingNavigatorSeparator
     //
     this.bindingNavigatorSeparator.Name = "bindingNavigatorSeparator";
     this.bindingNavigatorSeparator.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorPositionItem
     //
     this.bindingNavigatorPositionItem.AccessibleName = "Posición";
     this.bindingNavigatorPositionItem.AutoSize = false;
     this.bindingNavigatorPositionItem.Name = "bindingNavigatorPositionItem";
     this.bindingNavigatorPositionItem.Size = new System.Drawing.Size(50, 21);
     this.bindingNavigatorPositionItem.Text = "0";
     this.bindingNavigatorPositionItem.ToolTipText = "Posición actual";
     //
     // bindingNavigatorSeparator1
     //
     this.bindingNavigatorSeparator1.Name = "bindingNavigatorSeparator1";
     this.bindingNavigatorSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorMoveNextItem
     //
     this.bindingNavigatorMoveNextItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveNextItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveNextItem.Image")));
     this.bindingNavigatorMoveNextItem.Name = "bindingNavigatorMoveNextItem";
     this.bindingNavigatorMoveNextItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveNextItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveNextItem.Text = "Mover siguiente";
     //
     // bindingNavigatorMoveLastItem
     //
     this.bindingNavigatorMoveLastItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveLastItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveLastItem.Image")));
     this.bindingNavigatorMoveLastItem.Name = "bindingNavigatorMoveLastItem";
     this.bindingNavigatorMoveLastItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveLastItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveLastItem.Text = "Mover último";
     //
     // bindingNavigatorSeparator2
     //
     this.bindingNavigatorSeparator2.Name = "bindingNavigatorSeparator2";
     this.bindingNavigatorSeparator2.Size = new System.Drawing.Size(6, 25);
     //
     // errorProvider1
     //
     this.errorProvider1.ContainerControl = this;
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label9.ForeColor = System.Drawing.SystemColors.ActiveCaption;
     this.label9.Location = new System.Drawing.Point(10, 175);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(57, 15);
     this.label9.TabIndex = 31;
     this.label9.Text = "Provincia";
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label8.ForeColor = System.Drawing.SystemColors.ActiveCaption;
     this.label8.Location = new System.Drawing.Point(10, 149);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(61, 15);
     this.label8.TabIndex = 32;
     this.label8.Text = "Localidad";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.ForeColor = System.Drawing.SystemColors.ActiveCaption;
     this.label5.Location = new System.Drawing.Point(10, 123);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(59, 15);
     this.label5.TabIndex = 33;
     this.label5.Text = "Dirección";
     //
     // txtProvinciaCLI
     //
     this.txtProvinciaCLI.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtProvinciaCLI.Location = new System.Drawing.Point(90, 175);
     this.txtProvinciaCLI.Name = "txtProvinciaCLI";
     this.txtProvinciaCLI.Size = new System.Drawing.Size(295, 20);
     this.txtProvinciaCLI.TabIndex = 6;
     //
     // txtLocalidadCLI
     //
     this.txtLocalidadCLI.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtLocalidadCLI.Location = new System.Drawing.Point(90, 149);
     this.txtLocalidadCLI.Name = "txtLocalidadCLI";
     this.txtLocalidadCLI.Size = new System.Drawing.Size(295, 20);
     this.txtLocalidadCLI.TabIndex = 5;
     //
     // txtDireccionCLI
     //
     this.txtDireccionCLI.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtDireccionCLI.Location = new System.Drawing.Point(90, 123);
     this.txtDireccionCLI.Name = "txtDireccionCLI";
     this.txtDireccionCLI.Size = new System.Drawing.Size(295, 20);
     this.txtDireccionCLI.TabIndex = 4;
     //
     // frmClientes
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(639, 557);
     this.ControlBox = false;
     this.Controls.Add(this.cmbCondicion);
     this.Controls.Add(this.label13);
     this.Controls.Add(this.bindingNavigator1);
     this.Controls.Add(this.txtFechaNacCLI);
     this.Controls.Add(this.grpCampos);
     this.Controls.Add(this.gvwDatos);
     this.Controls.Add(this.grpBotones);
     this.Controls.Add(this.label7);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.label11);
     this.Controls.Add(this.txtCUIT);
     this.Controls.Add(this.txtRazonSocialCLI);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.MaximizeBox = false;
     this.Name = "frmClientes";
     this.Text = "Clientes";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmClientes_FormClosing);
     this.Load += new System.EventHandler(this.frmClientes_Load);
     this.grpCampos.ResumeLayout(false);
     this.grpCampos.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gvwDatos)).EndInit();
     this.grpBotones.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bindingNavigator1)).EndInit();
     this.bindingNavigator1.ResumeLayout(false);
     this.bindingNavigator1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Beispiel #56
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
     this.dataGridView1 = new System.Windows.Forms.DataGridView();
     this.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripLabel2 = new System.Windows.Forms.ToolStripLabel();
     this.toolStripTextBox1 = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripLabel4 = new System.Windows.Forms.ToolStripLabel();
     this.toolStripComboBox2 = new System.Windows.Forms.ToolStripComboBox();
     this.toolStripLabel3 = new System.Windows.Forms.ToolStripLabel();
     this.toolStripComboBox1 = new System.Windows.Forms.ToolStripComboBox();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
     this.toolStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // dataGridView1
     //
     this.dataGridView1.AllowUserToAddRows = false;
     this.dataGridView1.AllowUserToDeleteRows = false;
     this.dataGridView1.AllowUserToOrderColumns = true;
     this.dataGridView1.AllowUserToResizeRows = false;
     this.dataGridView1.BackgroundColor = System.Drawing.SystemColors.Control;
     this.dataGridView1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Consolas", 8F);
     dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridView1.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
     this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("Consolas", 8F);
     dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dataGridView1.DefaultCellStyle = dataGridViewCellStyle2;
     this.dataGridView1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dataGridView1.Location = new System.Drawing.Point(0, 28);
     this.dataGridView1.Margin = new System.Windows.Forms.Padding(0);
     this.dataGridView1.MultiSelect = false;
     this.dataGridView1.Name = "dataGridView1";
     this.dataGridView1.ReadOnly = true;
     dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle3.Font = new System.Drawing.Font("Consolas", 8F);
     dataGridViewCellStyle3.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle3.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle3.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridView1.RowHeadersDefaultCellStyle = dataGridViewCellStyle3;
     this.dataGridView1.RowHeadersVisible = false;
     this.dataGridView1.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
     this.dataGridView1.RowTemplate.DefaultCellStyle.Font = new System.Drawing.Font("Consolas", 8F);
     this.dataGridView1.RowTemplate.Height = 18;
     this.dataGridView1.Size = new System.Drawing.Size(890, 232);
     this.dataGridView1.TabIndex = 2;
     this.dataGridView1.CellMouseClick += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dataGridView1_CellMouseClick);
     //
     // toolStrip1
     //
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripLabel1,
     this.toolStripSeparator1,
     this.toolStripLabel2,
     this.toolStripTextBox1,
     this.toolStripLabel4,
     this.toolStripComboBox2,
     this.toolStripLabel3,
     this.toolStripComboBox1});
     this.toolStrip1.Location = new System.Drawing.Point(0, 0);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.Size = new System.Drawing.Size(890, 28);
     this.toolStrip1.TabIndex = 5;
     this.toolStrip1.Text = "toolStrip1";
     //
     // toolStripLabel1
     //
     this.toolStripLabel1.Name = "toolStripLabel1";
     this.toolStripLabel1.Size = new System.Drawing.Size(33, 25);
     this.toolStripLabel1.Text = "Filter";
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 28);
     //
     // toolStripLabel2
     //
     this.toolStripLabel2.Name = "toolStripLabel2";
     this.toolStripLabel2.Size = new System.Drawing.Size(85, 25);
     this.toolStripLabel2.Text = "Symbol Name:";
     //
     // toolStripTextBox1
     //
     this.toolStripTextBox1.BackColor = System.Drawing.SystemColors.Window;
     this.toolStripTextBox1.Margin = new System.Windows.Forms.Padding(1, 3, 1, 2);
     this.toolStripTextBox1.Name = "toolStripTextBox1";
     this.toolStripTextBox1.Size = new System.Drawing.Size(100, 23);
     this.toolStripTextBox1.TextChanged += new System.EventHandler(this.textBox1_TextChanged);
     //
     // toolStripLabel4
     //
     this.toolStripLabel4.Name = "toolStripLabel4";
     this.toolStripLabel4.Size = new System.Drawing.Size(47, 25);
     this.toolStripLabel4.Text = "Length:";
     //
     // toolStripComboBox2
     //
     this.toolStripComboBox2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.toolStripComboBox2.Items.AddRange(new object[] {
     "<Any>",
     "1-Byte",
     "2-Word",
     "4-Integer",
     "8-Long"});
     this.toolStripComboBox2.Name = "toolStripComboBox2";
     this.toolStripComboBox2.Size = new System.Drawing.Size(75, 28);
     this.toolStripComboBox2.SelectedIndexChanged += new System.EventHandler(this.toolStripComboBox2_SelectedIndexChanged);
     //
     // toolStripLabel3
     //
     this.toolStripLabel3.Name = "toolStripLabel3";
     this.toolStripLabel3.Size = new System.Drawing.Size(76, 25);
     this.toolStripLabel3.Text = "Section Kind:";
     //
     // toolStripComboBox1
     //
     this.toolStripComboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.toolStripComboBox1.Items.AddRange(new object[] {
     "<Any>",
     "Text",
     "BSS",
     "ROData"});
     this.toolStripComboBox1.Name = "toolStripComboBox1";
     this.toolStripComboBox1.Size = new System.Drawing.Size(75, 28);
     this.toolStripComboBox1.SelectedIndexChanged += new System.EventHandler(this.toolStripComboBox1_SelectedIndexChanged);
     //
     // SymbolView
     //
     this.ClientSize = new System.Drawing.Size(890, 260);
     this.CloseButton = false;
     this.CloseButtonVisible = false;
     this.Controls.Add(this.dataGridView1);
     this.Controls.Add(this.toolStrip1);
     this.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Name = "SymbolView";
     this.TabText = "Symbols";
     this.Text = "Symbols";
     this.Load += new System.EventHandler(this.SymbolView_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.tabControl1 = new System.Windows.Forms.TabControl();
     this.tabPage1 = new System.Windows.Forms.TabPage();
     this.splitContainer2 = new System.Windows.Forms.SplitContainer();
     this.toolStripRequest = new System.Windows.Forms.ToolStrip();
     this.toolStripLabel2 = new System.Windows.Forms.ToolStripLabel();
     this.toolStripComboBoxProtocol = new System.Windows.Forms.ToolStripComboBox();
     this.toolStripSeparator7 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
     this.toolStripComboBoxMethod = new System.Windows.Forms.ToolStripComboBox();
     this.toolStripSeparator8 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripLabel3 = new System.Windows.Forms.ToolStripLabel();
     this.toolStripTextBoxURL = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripButtonCookies = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator9 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripButtonAuthType = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripButtonSendRequest = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator();
     this.splitContainer4 = new System.Windows.Forms.SplitContainer();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.comboBoxRequestHeaders = new System.Windows.Forms.ComboBox();
     this.buttonAddToList = new System.Windows.Forms.Button();
     this.textBoxHeaderValue = new System.Windows.Forms.TextBox();
     this.listViewRequestHeaders = new System.Windows.Forms.ListView();
     this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader2 = new System.Windows.Forms.ColumnHeader();
     this.buttonDeleteHeader = new System.Windows.Forms.Button();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.richTextBoxPOST = new System.Windows.Forms.RichTextBox();
     this.tabControl4 = new System.Windows.Forms.TabControl();
     this.tabPage5 = new System.Windows.Forms.TabPage();
     this.listViewResponseHeaders = new System.Windows.Forms.ListView();
     this.columnHeader3 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader4 = new System.Windows.Forms.ColumnHeader();
     this.tabPage6 = new System.Windows.Forms.TabPage();
     this.richTextBoxSource = new System.Windows.Forms.RichTextBox();
     this.tabPage7 = new System.Windows.Forms.TabPage();
     this.webBrowserSource = new System.Windows.Forms.WebBrowser();
     this.splitContainer3 = new System.Windows.Forms.SplitContainer();
     this.tabControl1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.splitContainer2.Panel1.SuspendLayout();
     this.splitContainer2.Panel2.SuspendLayout();
     this.splitContainer2.SuspendLayout();
     this.toolStripRequest.SuspendLayout();
     this.splitContainer4.Panel1.SuspendLayout();
     this.splitContainer4.Panel2.SuspendLayout();
     this.splitContainer4.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.groupBox3.SuspendLayout();
     this.tabControl4.SuspendLayout();
     this.tabPage5.SuspendLayout();
     this.tabPage6.SuspendLayout();
     this.tabPage7.SuspendLayout();
     this.splitContainer3.Panel1.SuspendLayout();
     this.splitContainer3.Panel2.SuspendLayout();
     this.splitContainer3.SuspendLayout();
     this.SuspendLayout();
     //
     // tabControl1
     //
     this.tabControl1.Controls.Add(this.tabPage1);
     this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControl1.Location = new System.Drawing.Point(0, 0);
     this.tabControl1.Name = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size = new System.Drawing.Size(912, 313);
     this.tabControl1.TabIndex = 0;
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.splitContainer2);
     this.tabPage1.Location = new System.Drawing.Point(4, 22);
     this.tabPage1.Name = "tabPage1";
     this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage1.Size = new System.Drawing.Size(904, 287);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text = "Request";
     this.tabPage1.UseVisualStyleBackColor = true;
     //
     // splitContainer2
     //
     this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer2.Location = new System.Drawing.Point(3, 3);
     this.splitContainer2.Name = "splitContainer2";
     this.splitContainer2.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer2.Panel1
     //
     this.splitContainer2.Panel1.Controls.Add(this.toolStripRequest);
     //
     // splitContainer2.Panel2
     //
     this.splitContainer2.Panel2.Controls.Add(this.splitContainer4);
     this.splitContainer2.Size = new System.Drawing.Size(898, 281);
     this.splitContainer2.SplitterDistance = 25;
     this.splitContainer2.TabIndex = 2;
     //
     // toolStripRequest
     //
     this.toolStripRequest.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripLabel2,
     this.toolStripComboBoxProtocol,
     this.toolStripSeparator7,
     this.toolStripLabel1,
     this.toolStripComboBoxMethod,
     this.toolStripSeparator8,
     this.toolStripLabel3,
     this.toolStripTextBoxURL,
     this.toolStripSeparator3,
     this.toolStripButtonCookies,
     this.toolStripSeparator9,
     this.toolStripButtonAuthType,
     this.toolStripSeparator5,
     this.toolStripButtonSendRequest,
     this.toolStripSeparator6});
     this.toolStripRequest.Location = new System.Drawing.Point(0, 0);
     this.toolStripRequest.Name = "toolStripRequest";
     this.toolStripRequest.Size = new System.Drawing.Size(898, 25);
     this.toolStripRequest.TabIndex = 0;
     this.toolStripRequest.Text = "toolStrip1";
     //
     // toolStripLabel2
     //
     this.toolStripLabel2.Name = "toolStripLabel2";
     this.toolStripLabel2.Size = new System.Drawing.Size(46, 22);
     this.toolStripLabel2.Text = "Protocol";
     //
     // toolStripComboBoxProtocol
     //
     this.toolStripComboBoxProtocol.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.toolStripComboBoxProtocol.FlatStyle = System.Windows.Forms.FlatStyle.Standard;
     this.toolStripComboBoxProtocol.Items.AddRange(new object[] {
     "HTTP /1.0",
     "HTTP /1.1"});
     this.toolStripComboBoxProtocol.Name = "toolStripComboBoxProtocol";
     this.toolStripComboBoxProtocol.Size = new System.Drawing.Size(80, 25);
     //
     // toolStripSeparator7
     //
     this.toolStripSeparator7.Name = "toolStripSeparator7";
     this.toolStripSeparator7.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripLabel1
     //
     this.toolStripLabel1.Name = "toolStripLabel1";
     this.toolStripLabel1.Size = new System.Drawing.Size(43, 22);
     this.toolStripLabel1.Text = "Method";
     //
     // toolStripComboBoxMethod
     //
     this.toolStripComboBoxMethod.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.toolStripComboBoxMethod.FlatStyle = System.Windows.Forms.FlatStyle.Standard;
     this.toolStripComboBoxMethod.Items.AddRange(new object[] {
     "GET",
     "POST"});
     this.toolStripComboBoxMethod.Name = "toolStripComboBoxMethod";
     this.toolStripComboBoxMethod.Size = new System.Drawing.Size(75, 25);
     //
     // toolStripSeparator8
     //
     this.toolStripSeparator8.Name = "toolStripSeparator8";
     this.toolStripSeparator8.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripLabel3
     //
     this.toolStripLabel3.Name = "toolStripLabel3";
     this.toolStripLabel3.Size = new System.Drawing.Size(30, 22);
     this.toolStripLabel3.Text = "URL:";
     //
     // toolStripTextBoxURL
     //
     this.toolStripTextBoxURL.Name = "toolStripTextBoxURL";
     this.toolStripTextBoxURL.Size = new System.Drawing.Size(410, 25);
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripButtonCookies
     //
     this.toolStripButtonCookies.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButtonCookies.ImageTransparentColor = System.Drawing.Color.Transparent;
     this.toolStripButtonCookies.Name = "toolStripButtonCookies";
     this.toolStripButtonCookies.Size = new System.Drawing.Size(23, 22);
     this.toolStripButtonCookies.Text = "Define Cokies";
     this.toolStripButtonCookies.Click += new System.EventHandler(this.toolStripButtonCookies_Click);
     //
     // toolStripSeparator9
     //
     this.toolStripSeparator9.Name = "toolStripSeparator9";
     this.toolStripSeparator9.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripButtonAuthType
     //
     this.toolStripButtonAuthType.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButtonAuthType.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButtonAuthType.Name = "toolStripButtonAuthType";
     this.toolStripButtonAuthType.Size = new System.Drawing.Size(23, 22);
     this.toolStripButtonAuthType.Text = "Define Authentication";
     this.toolStripButtonAuthType.Click += new System.EventHandler(this.toolStripButtonAuthType_Click);
     //
     // toolStripSeparator5
     //
     this.toolStripSeparator5.Name = "toolStripSeparator5";
     this.toolStripSeparator5.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripButtonSendRequest
     //
     this.toolStripButtonSendRequest.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButtonSendRequest.Name = "toolStripButtonSendRequest";
     this.toolStripButtonSendRequest.Size = new System.Drawing.Size(94, 22);
     this.toolStripButtonSendRequest.Text = "Send Request";
     this.toolStripButtonSendRequest.Click += new System.EventHandler(this.toolStripButtonSendRequest_Click);
     //
     // toolStripSeparator6
     //
     this.toolStripSeparator6.Name = "toolStripSeparator6";
     this.toolStripSeparator6.Size = new System.Drawing.Size(6, 25);
     //
     // splitContainer4
     //
     this.splitContainer4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer4.Location = new System.Drawing.Point(0, 0);
     this.splitContainer4.Name = "splitContainer4";
     //
     // splitContainer4.Panel1
     //
     this.splitContainer4.Panel1.Controls.Add(this.groupBox2);
     //
     // splitContainer4.Panel2
     //
     this.splitContainer4.Panel2.Controls.Add(this.groupBox3);
     this.splitContainer4.Size = new System.Drawing.Size(898, 252);
     this.splitContainer4.SplitterDistance = 546;
     this.splitContainer4.TabIndex = 0;
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.splitContainer1);
     this.groupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupBox2.Location = new System.Drawing.Point(0, 0);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(546, 252);
     this.groupBox2.TabIndex = 2;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Request Headers";
     //
     // splitContainer1
     //
     this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.Location = new System.Drawing.Point(3, 16);
     this.splitContainer1.Name = "splitContainer1";
     this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.comboBoxRequestHeaders);
     this.splitContainer1.Panel1.Controls.Add(this.buttonAddToList);
     this.splitContainer1.Panel1.Controls.Add(this.textBoxHeaderValue);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.listViewRequestHeaders);
     this.splitContainer1.Panel2.Controls.Add(this.buttonDeleteHeader);
     this.splitContainer1.Size = new System.Drawing.Size(540, 233);
     this.splitContainer1.SplitterDistance = 33;
     this.splitContainer1.TabIndex = 1;
     //
     // comboBoxRequestHeaders
     //
     this.comboBoxRequestHeaders.FormattingEnabled = true;
     this.comboBoxRequestHeaders.Location = new System.Drawing.Point(3, 5);
     this.comboBoxRequestHeaders.Name = "comboBoxRequestHeaders";
     this.comboBoxRequestHeaders.Size = new System.Drawing.Size(169, 21);
     this.comboBoxRequestHeaders.TabIndex = 3;
     //
     // buttonAddToList
     //
     this.buttonAddToList.Location = new System.Drawing.Point(450, 3);
     this.buttonAddToList.Name = "buttonAddToList";
     this.buttonAddToList.Size = new System.Drawing.Size(87, 23);
     this.buttonAddToList.TabIndex = 2;
     this.buttonAddToList.Text = "Add to List";
     this.buttonAddToList.UseVisualStyleBackColor = true;
     this.buttonAddToList.Click += new System.EventHandler(this.buttonAddToList_Click);
     //
     // textBoxHeaderValue
     //
     this.textBoxHeaderValue.Location = new System.Drawing.Point(178, 5);
     this.textBoxHeaderValue.Name = "textBoxHeaderValue";
     this.textBoxHeaderValue.Size = new System.Drawing.Size(266, 20);
     this.textBoxHeaderValue.TabIndex = 1;
     //
     // listViewRequestHeaders
     //
     this.listViewRequestHeaders.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader1,
     this.columnHeader2});
     this.listViewRequestHeaders.Dock = System.Windows.Forms.DockStyle.Fill;
     this.listViewRequestHeaders.FullRowSelect = true;
     this.listViewRequestHeaders.GridLines = true;
     this.listViewRequestHeaders.Location = new System.Drawing.Point(0, 0);
     this.listViewRequestHeaders.Name = "listViewRequestHeaders";
     this.listViewRequestHeaders.Size = new System.Drawing.Size(540, 173);
     this.listViewRequestHeaders.TabIndex = 0;
     this.listViewRequestHeaders.UseCompatibleStateImageBehavior = false;
     this.listViewRequestHeaders.View = System.Windows.Forms.View.Details;
     this.listViewRequestHeaders.SelectedIndexChanged += new System.EventHandler(this.listViewRequestHeaders_SelectedIndexChanged);
     //
     // columnHeader1
     //
     this.columnHeader1.Text = "Header Name";
     this.columnHeader1.Width = 174;
     //
     // columnHeader2
     //
     this.columnHeader2.Text = "Header Value";
     this.columnHeader2.Width = 333;
     //
     // buttonDeleteHeader
     //
     this.buttonDeleteHeader.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.buttonDeleteHeader.Enabled = false;
     this.buttonDeleteHeader.Location = new System.Drawing.Point(0, 173);
     this.buttonDeleteHeader.Name = "buttonDeleteHeader";
     this.buttonDeleteHeader.Size = new System.Drawing.Size(540, 23);
     this.buttonDeleteHeader.TabIndex = 1;
     this.buttonDeleteHeader.Text = "Delete Headers";
     this.buttonDeleteHeader.UseVisualStyleBackColor = true;
     this.buttonDeleteHeader.Click += new System.EventHandler(this.buttonDeleteHeader_Click);
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.richTextBoxPOST);
     this.groupBox3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupBox3.Location = new System.Drawing.Point(0, 0);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Size = new System.Drawing.Size(348, 252);
     this.groupBox3.TabIndex = 0;
     this.groupBox3.TabStop = false;
     this.groupBox3.Text = "POST";
     //
     // richTextBoxPOST
     //
     this.richTextBoxPOST.Dock = System.Windows.Forms.DockStyle.Fill;
     this.richTextBoxPOST.Location = new System.Drawing.Point(3, 16);
     this.richTextBoxPOST.Name = "richTextBoxPOST";
     this.richTextBoxPOST.Size = new System.Drawing.Size(342, 233);
     this.richTextBoxPOST.TabIndex = 0;
     this.richTextBoxPOST.Text = "";
     //
     // tabControl4
     //
     this.tabControl4.Controls.Add(this.tabPage5);
     this.tabControl4.Controls.Add(this.tabPage6);
     this.tabControl4.Controls.Add(this.tabPage7);
     this.tabControl4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControl4.Location = new System.Drawing.Point(0, 0);
     this.tabControl4.Name = "tabControl4";
     this.tabControl4.SelectedIndex = 0;
     this.tabControl4.Size = new System.Drawing.Size(912, 256);
     this.tabControl4.TabIndex = 0;
     //
     // tabPage5
     //
     this.tabPage5.Controls.Add(this.listViewResponseHeaders);
     this.tabPage5.Location = new System.Drawing.Point(4, 22);
     this.tabPage5.Name = "tabPage5";
     this.tabPage5.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage5.Size = new System.Drawing.Size(904, 230);
     this.tabPage5.TabIndex = 0;
     this.tabPage5.Text = "Response Headers";
     this.tabPage5.UseVisualStyleBackColor = true;
     //
     // listViewResponseHeaders
     //
     this.listViewResponseHeaders.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader3,
     this.columnHeader4});
     this.listViewResponseHeaders.Dock = System.Windows.Forms.DockStyle.Fill;
     this.listViewResponseHeaders.Location = new System.Drawing.Point(3, 3);
     this.listViewResponseHeaders.Name = "listViewResponseHeaders";
     this.listViewResponseHeaders.Size = new System.Drawing.Size(898, 224);
     this.listViewResponseHeaders.TabIndex = 0;
     this.listViewResponseHeaders.UseCompatibleStateImageBehavior = false;
     this.listViewResponseHeaders.View = System.Windows.Forms.View.Details;
     //
     // columnHeader3
     //
     this.columnHeader3.Text = "Header Name";
     this.columnHeader3.Width = 229;
     //
     // columnHeader4
     //
     this.columnHeader4.Text = "Header Value";
     this.columnHeader4.Width = 458;
     //
     // tabPage6
     //
     this.tabPage6.Controls.Add(this.richTextBoxSource);
     this.tabPage6.Location = new System.Drawing.Point(4, 22);
     this.tabPage6.Name = "tabPage6";
     this.tabPage6.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage6.Size = new System.Drawing.Size(904, 230);
     this.tabPage6.TabIndex = 1;
     this.tabPage6.Text = "Source Code";
     this.tabPage6.UseVisualStyleBackColor = true;
     //
     // richTextBoxSource
     //
     this.richTextBoxSource.Dock = System.Windows.Forms.DockStyle.Fill;
     this.richTextBoxSource.Location = new System.Drawing.Point(3, 3);
     this.richTextBoxSource.Name = "richTextBoxSource";
     this.richTextBoxSource.Size = new System.Drawing.Size(898, 224);
     this.richTextBoxSource.TabIndex = 0;
     this.richTextBoxSource.Text = "";
     //
     // tabPage7
     //
     this.tabPage7.Controls.Add(this.webBrowserSource);
     this.tabPage7.Location = new System.Drawing.Point(4, 22);
     this.tabPage7.Name = "tabPage7";
     this.tabPage7.Size = new System.Drawing.Size(904, 230);
     this.tabPage7.TabIndex = 2;
     this.tabPage7.Text = "Browser";
     this.tabPage7.UseVisualStyleBackColor = true;
     //
     // webBrowserSource
     //
     this.webBrowserSource.Dock = System.Windows.Forms.DockStyle.Fill;
     this.webBrowserSource.Location = new System.Drawing.Point(0, 0);
     this.webBrowserSource.MinimumSize = new System.Drawing.Size(20, 20);
     this.webBrowserSource.Name = "webBrowserSource";
     this.webBrowserSource.Size = new System.Drawing.Size(904, 230);
     this.webBrowserSource.TabIndex = 0;
     //
     // splitContainer3
     //
     this.splitContainer3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer3.Location = new System.Drawing.Point(0, 0);
     this.splitContainer3.Name = "splitContainer3";
     this.splitContainer3.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer3.Panel1
     //
     this.splitContainer3.Panel1.Controls.Add(this.tabControl1);
     //
     // splitContainer3.Panel2
     //
     this.splitContainer3.Panel2.Controls.Add(this.tabControl4);
     this.splitContainer3.Size = new System.Drawing.Size(912, 573);
     this.splitContainer3.SplitterDistance = 313;
     this.splitContainer3.TabIndex = 1;
     //
     // frmMain
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(912, 573);
     this.Controls.Add(this.splitContainer3);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "frmMain";
     this.Text = "Custom Request";
     this.tabControl1.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     this.splitContainer2.Panel1.ResumeLayout(false);
     this.splitContainer2.Panel1.PerformLayout();
     this.splitContainer2.Panel2.ResumeLayout(false);
     this.splitContainer2.ResumeLayout(false);
     this.toolStripRequest.ResumeLayout(false);
     this.toolStripRequest.PerformLayout();
     this.splitContainer4.Panel1.ResumeLayout(false);
     this.splitContainer4.Panel2.ResumeLayout(false);
     this.splitContainer4.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel1.PerformLayout();
     this.splitContainer1.Panel2.ResumeLayout(false);
     this.splitContainer1.ResumeLayout(false);
     this.groupBox3.ResumeLayout(false);
     this.tabControl4.ResumeLayout(false);
     this.tabPage5.ResumeLayout(false);
     this.tabPage6.ResumeLayout(false);
     this.tabPage7.ResumeLayout(false);
     this.splitContainer3.Panel1.ResumeLayout(false);
     this.splitContainer3.Panel2.ResumeLayout(false);
     this.splitContainer3.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Beispiel #58
0
 /// <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(HttpHeaders));
     this.menuStrip1 = new System.Windows.Forms.MenuStrip();
     this.getHeadersToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.urlTextBox = new System.Windows.Forms.ToolStripTextBox();
     this.HTTPHeaderslistView = new System.Windows.Forms.ListView();
     this.HTTPHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.HTTPValue = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.menuStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // menuStrip1
     //
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.getHeadersToolStripMenuItem,
     this.urlTextBox});
     this.menuStrip1.Location = new System.Drawing.Point(0, 0);
     this.menuStrip1.Name = "menuStrip1";
     this.menuStrip1.Size = new System.Drawing.Size(326, 27);
     this.menuStrip1.TabIndex = 2;
     this.menuStrip1.Text = "menuStrip1";
     //
     // getHeadersToolStripMenuItem
     //
     this.getHeadersToolStripMenuItem.Name = "getHeadersToolStripMenuItem";
     this.getHeadersToolStripMenuItem.Size = new System.Drawing.Size(83, 23);
     this.getHeadersToolStripMenuItem.Text = "Get Headers";
     this.getHeadersToolStripMenuItem.Click += new System.EventHandler(this.getHeadersToolStripMenuItem_Click);
     //
     // urlTextBox
     //
     this.urlTextBox.Name = "urlTextBox";
     this.urlTextBox.Size = new System.Drawing.Size(200, 23);
     //
     // HTTPHeaderslistView
     //
     this.HTTPHeaderslistView.Activation = System.Windows.Forms.ItemActivation.OneClick;
     this.HTTPHeaderslistView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.HTTPHeader,
     this.HTTPValue});
     this.HTTPHeaderslistView.Dock = System.Windows.Forms.DockStyle.Fill;
     this.HTTPHeaderslistView.FullRowSelect = true;
     this.HTTPHeaderslistView.Location = new System.Drawing.Point(0, 27);
     this.HTTPHeaderslistView.Name = "HTTPHeaderslistView";
     this.HTTPHeaderslistView.Size = new System.Drawing.Size(326, 307);
     this.HTTPHeaderslistView.TabIndex = 3;
     this.HTTPHeaderslistView.UseCompatibleStateImageBehavior = false;
     this.HTTPHeaderslistView.View = System.Windows.Forms.View.Details;
     //
     // HTTPHeader
     //
     this.HTTPHeader.Text = "Header";
     this.HTTPHeader.Width = 123;
     //
     // HTTPValue
     //
     this.HTTPValue.Text = "Value";
     this.HTTPValue.Width = 197;
     //
     // HttpHeaders
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(326, 334);
     this.Controls.Add(this.HTTPHeaderslistView);
     this.Controls.Add(this.menuStrip1);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MainMenuStrip = this.menuStrip1;
     this.Name = "HttpHeaders";
     this.Text = "Get HTTP Headers";
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainWindow));
     this.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.tSeat = new System.Windows.Forms.ToolStripTextBox();
     this.payTool = new System.Windows.Forms.ToolStripButton();
     this.toolStripLabel2 = new System.Windows.Forms.ToolStripLabel();
     this.orderTool = new System.Windows.Forms.ToolStripButton();
     this.toolStripLabel5 = new System.Windows.Forms.ToolStripLabel();
     this.toolTech = new System.Windows.Forms.ToolStripButton();
     this.toolStripLabel3 = new System.Windows.Forms.ToolStripLabel();
     this.btnRoom = new System.Windows.Forms.ToolStripButton();
     this.toolStripLabel8 = new System.Windows.Forms.ToolStripLabel();
     this.toolAllOrder = new System.Windows.Forms.ToolStripButton();
     this.toolStripLabel4 = new System.Windows.Forms.ToolStripLabel();
     this.btnCashierTable = new System.Windows.Forms.ToolStripButton();
     this.toolStripLabel6 = new System.Windows.Forms.ToolStripLabel();
     this.btnDeposit = new System.Windows.Forms.ToolStripButton();
     this.toolStripLabel7 = new System.Windows.Forms.ToolStripLabel();
     this.toolMember = new System.Windows.Forms.ToolStripButton();
     this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
     this.toolPreprint = new System.Windows.Forms.ToolStripButton();
     this.toolStripLabel9 = new System.Windows.Forms.ToolStripLabel();
     this.toolPwd = new System.Windows.Forms.ToolStripButton();
     this.toolStripLabel10 = new System.Windows.Forms.ToolStripLabel();
     this.toolWarn = new System.Windows.Forms.ToolStripButton();
     this.toolStripLabel11 = new System.Windows.Forms.ToolStripLabel();
     this.toolExit = new System.Windows.Forms.ToolStripButton();
     this.seatContext = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.CtxAddNote = new System.Windows.Forms.ToolStripMenuItem();
     this.CtxLock = new System.Windows.Forms.ToolStripMenuItem();
     this.CtxSop = new System.Windows.Forms.ToolStripMenuItem();
     this.CtxRepay = new System.Windows.Forms.ToolStripMenuItem();
     this.CtxReprint = new System.Windows.Forms.ToolStripMenuItem();
     this.unWarnTool = new System.Windows.Forms.ToolStripMenuItem();
     this.undoTransferTool = new System.Windows.Forms.ToolStripMenuItem();
     this.statusStrip1 = new System.Windows.Forms.StatusStrip();
     this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
     this.currentUser = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel3 = new System.Windows.Forms.ToolStripStatusLabel();
     this.statusTip = new System.Windows.Forms.ToolStripStatusLabel();
     this.aviTip = new System.Windows.Forms.ToolStripStatusLabel();
     this.useTip = new System.Windows.Forms.ToolStripStatusLabel();
     this.payTip = new System.Windows.Forms.ToolStripStatusLabel();
     this.lockTip = new System.Windows.Forms.ToolStripStatusLabel();
     this.stopTip = new System.Windows.Forms.ToolStripStatusLabel();
     this.warnTip = new System.Windows.Forms.ToolStripStatusLabel();
     this.depositTip = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel2 = new System.Windows.Forms.ToolStripStatusLabel();
     this.statusStrip2 = new System.Windows.Forms.StatusStrip();
     this.LseatTotal = new System.Windows.Forms.ToolStripStatusLabel();
     this.seatTotal = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel20 = new System.Windows.Forms.ToolStripStatusLabel();
     this.LseatAvi = new System.Windows.Forms.ToolStripStatusLabel();
     this.seatAvi = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel21 = new System.Windows.Forms.ToolStripStatusLabel();
     this.LmoneyTotal = new System.Windows.Forms.ToolStripStatusLabel();
     this.moneyTotal = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel22 = new System.Windows.Forms.ToolStripStatusLabel();
     this.LseatPaid = new System.Windows.Forms.ToolStripStatusLabel();
     this.seatPaid = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel23 = new System.Windows.Forms.ToolStripStatusLabel();
     this.LmoneyPaid = new System.Windows.Forms.ToolStripStatusLabel();
     this.moneyPaid = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel24 = new System.Windows.Forms.ToolStripStatusLabel();
     this.LseatUnpaid = new System.Windows.Forms.ToolStripStatusLabel();
     this.seatUnpaid = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel25 = new System.Windows.Forms.ToolStripStatusLabel();
     this.LmoneyUnpaid = new System.Windows.Forms.ToolStripStatusLabel();
     this.moneyUnpaid = new System.Windows.Forms.ToolStripStatusLabel();
     this.seatPanel = new System.Windows.Forms.Panel();
     this.toolStrip1.SuspendLayout();
     this.seatContext.SuspendLayout();
     this.statusStrip1.SuspendLayout();
     this.statusStrip2.SuspendLayout();
     this.SuspendLayout();
     //
     // toolStrip1
     //
     this.toolStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.toolStrip1.ImageScalingSize = new System.Drawing.Size(64, 64);
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.tSeat,
     this.payTool,
     this.toolStripLabel2,
     this.orderTool,
     this.toolStripLabel5,
     this.toolTech,
     this.toolStripLabel3,
     this.btnRoom,
     this.toolStripLabel8,
     this.toolAllOrder,
     this.toolStripLabel4,
     this.btnCashierTable,
     this.toolStripLabel6,
     this.btnDeposit,
     this.toolStripLabel7,
     this.toolMember,
     this.toolStripLabel1,
     this.toolPreprint,
     this.toolStripLabel9,
     this.toolPwd,
     this.toolStripLabel10,
     this.toolWarn,
     this.toolStripLabel11,
     this.toolExit});
     this.toolStrip1.Location = new System.Drawing.Point(0, 0);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.Size = new System.Drawing.Size(1370, 91);
     this.toolStrip1.TabIndex = 1;
     this.toolStrip1.Text = "toolStrip1";
     //
     // tSeat
     //
     this.tSeat.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.tSeat.Font = new System.Drawing.Font("微软雅黑", 28F);
     this.tSeat.Name = "tSeat";
     this.tSeat.Size = new System.Drawing.Size(100, 91);
     this.tSeat.Enter += new System.EventHandler(this.tSeat_Enter);
     //
     // payTool
     //
     this.payTool.Font = new System.Drawing.Font("微软雅黑", 11F);
     this.payTool.Image = ((System.Drawing.Image)(resources.GetObject("payTool.Image")));
     this.payTool.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.payTool.Name = "payTool";
     this.payTool.Size = new System.Drawing.Size(70, 88);
     this.payTool.Text = "结账(F3)";
     this.payTool.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.payTool.Click += new System.EventHandler(this.payTool_Click);
     //
     // toolStripLabel2
     //
     this.toolStripLabel2.Name = "toolStripLabel2";
     this.toolStripLabel2.Size = new System.Drawing.Size(12, 88);
     this.toolStripLabel2.Text = " ";
     //
     // orderTool
     //
     this.orderTool.Font = new System.Drawing.Font("微软雅黑", 11F);
     this.orderTool.Image = ((System.Drawing.Image)(resources.GetObject("orderTool.Image")));
     this.orderTool.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.orderTool.Name = "orderTool";
     this.orderTool.Size = new System.Drawing.Size(100, 88);
     this.orderTool.Text = "消费录入(F2)";
     this.orderTool.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.orderTool.Click += new System.EventHandler(this.orderTool_Click);
     //
     // toolStripLabel5
     //
     this.toolStripLabel5.Name = "toolStripLabel5";
     this.toolStripLabel5.Size = new System.Drawing.Size(12, 88);
     this.toolStripLabel5.Text = " ";
     //
     // toolTech
     //
     this.toolTech.Font = new System.Drawing.Font("微软雅黑", 11F);
     this.toolTech.Image = ((System.Drawing.Image)(resources.GetObject("toolTech.Image")));
     this.toolTech.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolTech.Name = "toolTech";
     this.toolTech.Size = new System.Drawing.Size(70, 88);
     this.toolTech.Text = "技师(F1)";
     this.toolTech.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.toolTech.Click += new System.EventHandler(this.toolTech_Click);
     //
     // toolStripLabel3
     //
     this.toolStripLabel3.Name = "toolStripLabel3";
     this.toolStripLabel3.Size = new System.Drawing.Size(12, 88);
     this.toolStripLabel3.Text = " ";
     //
     // btnRoom
     //
     this.btnRoom.Font = new System.Drawing.Font("微软雅黑", 11F);
     this.btnRoom.Image = ((System.Drawing.Image)(resources.GetObject("btnRoom.Image")));
     this.btnRoom.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnRoom.Name = "btnRoom";
     this.btnRoom.Size = new System.Drawing.Size(70, 88);
     this.btnRoom.Text = "包房(F4)";
     this.btnRoom.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnRoom.Click += new System.EventHandler(this.btnRoom_Click);
     //
     // toolStripLabel8
     //
     this.toolStripLabel8.Name = "toolStripLabel8";
     this.toolStripLabel8.Size = new System.Drawing.Size(12, 88);
     this.toolStripLabel8.Text = " ";
     //
     // toolAllOrder
     //
     this.toolAllOrder.Font = new System.Drawing.Font("微软雅黑", 11F);
     this.toolAllOrder.Image = ((System.Drawing.Image)(resources.GetObject("toolAllOrder.Image")));
     this.toolAllOrder.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolAllOrder.Name = "toolAllOrder";
     this.toolAllOrder.Size = new System.Drawing.Size(100, 88);
     this.toolAllOrder.Text = "录单汇总(F9)";
     this.toolAllOrder.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.toolAllOrder.Click += new System.EventHandler(this.toolAllOrder_Click);
     //
     // toolStripLabel4
     //
     this.toolStripLabel4.Name = "toolStripLabel4";
     this.toolStripLabel4.Size = new System.Drawing.Size(12, 88);
     this.toolStripLabel4.Text = " ";
     //
     // btnCashierTable
     //
     this.btnCashierTable.Font = new System.Drawing.Font("微软雅黑", 11F);
     this.btnCashierTable.Image = ((System.Drawing.Image)(resources.GetObject("btnCashierTable.Image")));
     this.btnCashierTable.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnCashierTable.Name = "btnCashierTable";
     this.btnCashierTable.Size = new System.Drawing.Size(100, 88);
     this.btnCashierTable.Text = "收银报表(F5)";
     this.btnCashierTable.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnCashierTable.Click += new System.EventHandler(this.btnCashierTable_Click);
     //
     // toolStripLabel6
     //
     this.toolStripLabel6.Name = "toolStripLabel6";
     this.toolStripLabel6.Size = new System.Drawing.Size(12, 88);
     this.toolStripLabel6.Text = " ";
     //
     // btnDeposit
     //
     this.btnDeposit.Font = new System.Drawing.Font("微软雅黑", 11F);
     this.btnDeposit.Image = ((System.Drawing.Image)(resources.GetObject("btnDeposit.Image")));
     this.btnDeposit.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnDeposit.Name = "btnDeposit";
     this.btnDeposit.Size = new System.Drawing.Size(100, 88);
     this.btnDeposit.Text = "押金离场(F6)";
     this.btnDeposit.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnDeposit.Click += new System.EventHandler(this.btnDeposit_Click);
     //
     // toolStripLabel7
     //
     this.toolStripLabel7.Name = "toolStripLabel7";
     this.toolStripLabel7.Size = new System.Drawing.Size(12, 88);
     this.toolStripLabel7.Text = " ";
     //
     // toolMember
     //
     this.toolMember.Font = new System.Drawing.Font("微软雅黑", 11F);
     this.toolMember.Image = ((System.Drawing.Image)(resources.GetObject("toolMember.Image")));
     this.toolMember.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolMember.Name = "toolMember";
     this.toolMember.Size = new System.Drawing.Size(100, 88);
     this.toolMember.Text = "会员管理(F7)";
     this.toolMember.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.toolMember.Click += new System.EventHandler(this.toolMember_Click);
     //
     // toolStripLabel1
     //
     this.toolStripLabel1.Name = "toolStripLabel1";
     this.toolStripLabel1.Size = new System.Drawing.Size(16, 88);
     this.toolStripLabel1.Text = "  ";
     //
     // toolPreprint
     //
     this.toolPreprint.Font = new System.Drawing.Font("微软雅黑", 11F);
     this.toolPreprint.Image = ((System.Drawing.Image)(resources.GetObject("toolPreprint.Image")));
     this.toolPreprint.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolPreprint.Name = "toolPreprint";
     this.toolPreprint.Size = new System.Drawing.Size(100, 88);
     this.toolPreprint.Text = "预打账单(F8)";
     this.toolPreprint.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.toolPreprint.Click += new System.EventHandler(this.toolPreprint_Click);
     //
     // toolStripLabel9
     //
     this.toolStripLabel9.Name = "toolStripLabel9";
     this.toolStripLabel9.Size = new System.Drawing.Size(12, 88);
     this.toolStripLabel9.Text = " ";
     //
     // toolPwd
     //
     this.toolPwd.Font = new System.Drawing.Font("微软雅黑", 11F);
     this.toolPwd.Image = ((System.Drawing.Image)(resources.GetObject("toolPwd.Image")));
     this.toolPwd.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolPwd.Name = "toolPwd";
     this.toolPwd.Size = new System.Drawing.Size(100, 88);
     this.toolPwd.Text = "修改密码(F9)";
     this.toolPwd.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.toolPwd.Click += new System.EventHandler(this.toolPwd_Click);
     //
     // toolStripLabel10
     //
     this.toolStripLabel10.Name = "toolStripLabel10";
     this.toolStripLabel10.Size = new System.Drawing.Size(12, 88);
     this.toolStripLabel10.Text = " ";
     //
     // toolWarn
     //
     this.toolWarn.Font = new System.Drawing.Font("微软雅黑", 11F);
     this.toolWarn.Image = ((System.Drawing.Image)(resources.GetObject("toolWarn.Image")));
     this.toolWarn.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolWarn.Name = "toolWarn";
     this.toolWarn.Size = new System.Drawing.Size(70, 88);
     this.toolWarn.Text = "预定(F5)";
     this.toolWarn.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.toolWarn.Click += new System.EventHandler(this.toolWarn_Click);
     //
     // toolStripLabel11
     //
     this.toolStripLabel11.Name = "toolStripLabel11";
     this.toolStripLabel11.Size = new System.Drawing.Size(16, 88);
     this.toolStripLabel11.Text = "  ";
     //
     // toolExit
     //
     this.toolExit.Font = new System.Drawing.Font("微软雅黑", 11F);
     this.toolExit.Image = ((System.Drawing.Image)(resources.GetObject("toolExit.Image")));
     this.toolExit.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolExit.Name = "toolExit";
     this.toolExit.Size = new System.Drawing.Size(96, 88);
     this.toolExit.Text = "退    出(ESC)";
     this.toolExit.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.toolExit.Click += new System.EventHandler(this.toolExit_Click);
     //
     // seatContext
     //
     this.seatContext.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.CtxAddNote,
     this.CtxLock,
     this.CtxSop,
     this.CtxRepay,
     this.CtxReprint,
     this.unWarnTool,
     this.undoTransferTool});
     this.seatContext.Name = "contextMenuStrip1";
     this.seatContext.Size = new System.Drawing.Size(130, 158);
     //
     // CtxAddNote
     //
     this.CtxAddNote.Name = "CtxAddNote";
     this.CtxAddNote.Size = new System.Drawing.Size(129, 22);
     this.CtxAddNote.Text = "添加备注";
     this.CtxAddNote.Click += new System.EventHandler(this.CtxAddNote_Click);
     //
     // CtxLock
     //
     this.CtxLock.Name = "CtxLock";
     this.CtxLock.Size = new System.Drawing.Size(129, 22);
     this.CtxLock.Text = "锁定/解锁";
     this.CtxLock.Click += new System.EventHandler(this.CtxLock_Click);
     //
     // CtxSop
     //
     this.CtxSop.Name = "CtxSop";
     this.CtxSop.Size = new System.Drawing.Size(129, 22);
     this.CtxSop.Text = "停用/启用";
     this.CtxSop.Click += new System.EventHandler(this.CtxSop_Click);
     //
     // CtxRepay
     //
     this.CtxRepay.Name = "CtxRepay";
     this.CtxRepay.Size = new System.Drawing.Size(129, 22);
     this.CtxRepay.Text = "重新结账";
     this.CtxRepay.Click += new System.EventHandler(this.CtxRepay_Click);
     //
     // CtxReprint
     //
     this.CtxReprint.Name = "CtxReprint";
     this.CtxReprint.Size = new System.Drawing.Size(129, 22);
     this.CtxReprint.Text = "重打账单";
     this.CtxReprint.Click += new System.EventHandler(this.CtxReprint_Click);
     //
     // unWarnTool
     //
     this.unWarnTool.Name = "unWarnTool";
     this.unWarnTool.Size = new System.Drawing.Size(129, 22);
     this.unWarnTool.Text = "解除警告";
     this.unWarnTool.Click += new System.EventHandler(this.unWarnTool_Click);
     //
     // undoTransferTool
     //
     this.undoTransferTool.Name = "undoTransferTool";
     this.undoTransferTool.Size = new System.Drawing.Size(129, 22);
     this.undoTransferTool.Text = "恢复转账";
     this.undoTransferTool.Click += new System.EventHandler(this.undoTransferTool_Click);
     //
     // statusStrip1
     //
     this.statusStrip1.Font = new System.Drawing.Font("微软雅黑", 12F);
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripStatusLabel1,
     this.currentUser,
     this.toolStripStatusLabel3,
     this.statusTip,
     this.aviTip,
     this.useTip,
     this.payTip,
     this.lockTip,
     this.stopTip,
     this.warnTip,
     this.depositTip,
     this.toolStripStatusLabel2});
     this.statusStrip1.Location = new System.Drawing.Point(0, 716);
     this.statusStrip1.Name = "statusStrip1";
     this.statusStrip1.Size = new System.Drawing.Size(1370, 26);
     this.statusStrip1.TabIndex = 6;
     this.statusStrip1.TabStop = true;
     this.statusStrip1.Text = "statusStrip1";
     //
     // toolStripStatusLabel1
     //
     this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
     this.toolStripStatusLabel1.Size = new System.Drawing.Size(0, 21);
     //
     // currentUser
     //
     this.currentUser.Name = "currentUser";
     this.currentUser.Size = new System.Drawing.Size(171, 21);
     this.currentUser.Text = "toolStripStatusLabel2";
     //
     // toolStripStatusLabel3
     //
     this.toolStripStatusLabel3.Name = "toolStripStatusLabel3";
     this.toolStripStatusLabel3.Size = new System.Drawing.Size(20, 21);
     this.toolStripStatusLabel3.Text = "  ";
     //
     // statusTip
     //
     this.statusTip.Font = new System.Drawing.Font("宋体", 10F);
     this.statusTip.Name = "statusTip";
     this.statusTip.Size = new System.Drawing.Size(77, 21);
     this.statusTip.Text = "状态说明:";
     //
     // aviTip
     //
     this.aviTip.BackColor = System.Drawing.Color.White;
     this.aviTip.Font = new System.Drawing.Font("宋体", 10F);
     this.aviTip.Name = "aviTip";
     this.aviTip.Size = new System.Drawing.Size(84, 21);
     this.aviTip.Text = "   可用    ";
     //
     // useTip
     //
     this.useTip.BackColor = System.Drawing.Color.Cyan;
     this.useTip.Font = new System.Drawing.Font("宋体", 10F);
     this.useTip.Name = "useTip";
     this.useTip.Size = new System.Drawing.Size(63, 21);
     this.useTip.Text = "正在使用";
     //
     // payTip
     //
     this.payTip.BackColor = System.Drawing.Color.Gray;
     this.payTip.Font = new System.Drawing.Font("宋体", 10F);
     this.payTip.Name = "payTip";
     this.payTip.Size = new System.Drawing.Size(91, 21);
     this.payTip.Text = "    结账    ";
     //
     // lockTip
     //
     this.lockTip.BackColor = System.Drawing.Color.Orange;
     this.lockTip.Font = new System.Drawing.Font("宋体", 10F);
     this.lockTip.Name = "lockTip";
     this.lockTip.Size = new System.Drawing.Size(91, 21);
     this.lockTip.Text = "    锁定    ";
     //
     // stopTip
     //
     this.stopTip.BackColor = System.Drawing.Color.Red;
     this.stopTip.Name = "stopTip";
     this.stopTip.Size = new System.Drawing.Size(82, 21);
     this.stopTip.Text = "    停用    ";
     //
     // warnTip
     //
     this.warnTip.BackColor = System.Drawing.Color.Yellow;
     this.warnTip.Name = "warnTip";
     this.warnTip.Size = new System.Drawing.Size(74, 21);
     this.warnTip.Text = " 警告 ";
     //
     // depositTip
     //
     this.depositTip.BackColor = System.Drawing.Color.Violet;
     this.depositTip.Name = "depositTip";
     this.depositTip.Size = new System.Drawing.Size(74, 21);
     this.depositTip.Text = "押金离场";
     //
     // toolStripStatusLabel2
     //
     this.toolStripStatusLabel2.BackColor = System.Drawing.Color.CornflowerBlue;
     this.toolStripStatusLabel2.Name = "toolStripStatusLabel2";
     this.toolStripStatusLabel2.Size = new System.Drawing.Size(74, 21);
     this.toolStripStatusLabel2.Text = "重新结账";
     //
     // statusStrip2
     //
     this.statusStrip2.Font = new System.Drawing.Font("微软雅黑", 12F);
     this.statusStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.LseatTotal,
     this.seatTotal,
     this.toolStripStatusLabel20,
     this.LseatAvi,
     this.seatAvi,
     this.toolStripStatusLabel21,
     this.LmoneyTotal,
     this.moneyTotal,
     this.toolStripStatusLabel22,
     this.LseatPaid,
     this.seatPaid,
     this.toolStripStatusLabel23,
     this.LmoneyPaid,
     this.moneyPaid,
     this.toolStripStatusLabel24,
     this.LseatUnpaid,
     this.seatUnpaid,
     this.toolStripStatusLabel25,
     this.LmoneyUnpaid,
     this.moneyUnpaid});
     this.statusStrip2.Location = new System.Drawing.Point(0, 690);
     this.statusStrip2.Name = "statusStrip2";
     this.statusStrip2.Size = new System.Drawing.Size(1370, 26);
     this.statusStrip2.TabIndex = 7;
     this.statusStrip2.Text = "statusStrip2";
     //
     // LseatTotal
     //
     this.LseatTotal.Font = new System.Drawing.Font("宋体", 12F);
     this.LseatTotal.Name = "LseatTotal";
     this.LseatTotal.Size = new System.Drawing.Size(80, 21);
     this.LseatTotal.Text = "总台位数:";
     //
     // seatTotal
     //
     this.seatTotal.Font = new System.Drawing.Font("宋体", 12F);
     this.seatTotal.Name = "seatTotal";
     this.seatTotal.Size = new System.Drawing.Size(40, 21);
     this.seatTotal.Text = "7000";
     //
     // toolStripStatusLabel20
     //
     this.toolStripStatusLabel20.Name = "toolStripStatusLabel20";
     this.toolStripStatusLabel20.Size = new System.Drawing.Size(20, 21);
     this.toolStripStatusLabel20.Text = "  ";
     //
     // LseatAvi
     //
     this.LseatAvi.Font = new System.Drawing.Font("宋体", 12F);
     this.LseatAvi.Name = "LseatAvi";
     this.LseatAvi.Size = new System.Drawing.Size(96, 21);
     this.LseatAvi.Text = "空闲台位数:";
     //
     // seatAvi
     //
     this.seatAvi.Font = new System.Drawing.Font("宋体", 12F);
     this.seatAvi.Name = "seatAvi";
     this.seatAvi.Size = new System.Drawing.Size(32, 21);
     this.seatAvi.Text = "100";
     //
     // toolStripStatusLabel21
     //
     this.toolStripStatusLabel21.Name = "toolStripStatusLabel21";
     this.toolStripStatusLabel21.Size = new System.Drawing.Size(60, 21);
     this.toolStripStatusLabel21.Text = "          ";
     //
     // LmoneyTotal
     //
     this.LmoneyTotal.Font = new System.Drawing.Font("宋体", 12F);
     this.LmoneyTotal.Name = "LmoneyTotal";
     this.LmoneyTotal.Size = new System.Drawing.Size(80, 21);
     this.LmoneyTotal.Text = "合计消费:";
     //
     // moneyTotal
     //
     this.moneyTotal.Font = new System.Drawing.Font("宋体", 12F);
     this.moneyTotal.Name = "moneyTotal";
     this.moneyTotal.Size = new System.Drawing.Size(40, 21);
     this.moneyTotal.Text = "7000";
     //
     // toolStripStatusLabel22
     //
     this.toolStripStatusLabel22.Name = "toolStripStatusLabel22";
     this.toolStripStatusLabel22.Size = new System.Drawing.Size(25, 21);
     this.toolStripStatusLabel22.Text = "   ";
     //
     // LseatPaid
     //
     this.LseatPaid.Font = new System.Drawing.Font("宋体", 12F);
     this.LseatPaid.Name = "LseatPaid";
     this.LseatPaid.Size = new System.Drawing.Size(64, 21);
     this.LseatPaid.Text = "已结账:";
     //
     // seatPaid
     //
     this.seatPaid.Font = new System.Drawing.Font("宋体", 12F);
     this.seatPaid.Name = "seatPaid";
     this.seatPaid.Size = new System.Drawing.Size(24, 21);
     this.seatPaid.Text = "10";
     //
     // toolStripStatusLabel23
     //
     this.toolStripStatusLabel23.Name = "toolStripStatusLabel23";
     this.toolStripStatusLabel23.Size = new System.Drawing.Size(15, 21);
     this.toolStripStatusLabel23.Text = " ";
     //
     // LmoneyPaid
     //
     this.LmoneyPaid.Font = new System.Drawing.Font("宋体", 12F);
     this.LmoneyPaid.Name = "LmoneyPaid";
     this.LmoneyPaid.Size = new System.Drawing.Size(48, 21);
     this.LmoneyPaid.Text = "金额:";
     //
     // moneyPaid
     //
     this.moneyPaid.Font = new System.Drawing.Font("宋体", 12F);
     this.moneyPaid.Name = "moneyPaid";
     this.moneyPaid.Size = new System.Drawing.Size(40, 21);
     this.moneyPaid.Text = "7000";
     //
     // toolStripStatusLabel24
     //
     this.toolStripStatusLabel24.Name = "toolStripStatusLabel24";
     this.toolStripStatusLabel24.Size = new System.Drawing.Size(30, 21);
     this.toolStripStatusLabel24.Text = "    ";
     //
     // LseatUnpaid
     //
     this.LseatUnpaid.Font = new System.Drawing.Font("宋体", 12F);
     this.LseatUnpaid.Name = "LseatUnpaid";
     this.LseatUnpaid.Size = new System.Drawing.Size(64, 21);
     this.LseatUnpaid.Text = "未结账:";
     //
     // seatUnpaid
     //
     this.seatUnpaid.Font = new System.Drawing.Font("宋体", 12F);
     this.seatUnpaid.Name = "seatUnpaid";
     this.seatUnpaid.Size = new System.Drawing.Size(40, 21);
     this.seatUnpaid.Text = "7000";
     //
     // toolStripStatusLabel25
     //
     this.toolStripStatusLabel25.Name = "toolStripStatusLabel25";
     this.toolStripStatusLabel25.Size = new System.Drawing.Size(15, 21);
     this.toolStripStatusLabel25.Text = " ";
     //
     // LmoneyUnpaid
     //
     this.LmoneyUnpaid.Font = new System.Drawing.Font("宋体", 12F);
     this.LmoneyUnpaid.Name = "LmoneyUnpaid";
     this.LmoneyUnpaid.Size = new System.Drawing.Size(48, 21);
     this.LmoneyUnpaid.Text = "金额:";
     //
     // moneyUnpaid
     //
     this.moneyUnpaid.Font = new System.Drawing.Font("宋体", 12F);
     this.moneyUnpaid.Name = "moneyUnpaid";
     this.moneyUnpaid.Size = new System.Drawing.Size(40, 21);
     this.moneyUnpaid.Text = "7000";
     //
     // seatPanel
     //
     this.seatPanel.AutoScroll = true;
     this.seatPanel.BackColor = System.Drawing.Color.White;
     this.seatPanel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.seatPanel.Location = new System.Drawing.Point(0, 91);
     this.seatPanel.Name = "seatPanel";
     this.seatPanel.Size = new System.Drawing.Size(1370, 599);
     this.seatPanel.TabIndex = 9;
     //
     // MainWindow
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1370, 742);
     this.Controls.Add(this.seatPanel);
     this.Controls.Add(this.statusStrip2);
     this.Controls.Add(this.statusStrip1);
     this.Controls.Add(this.toolStrip1);
     this.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview = true;
     this.Margin = new System.Windows.Forms.Padding(4);
     this.Name = "MainWindow";
     this.Text = "前台";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.ReceptionSeatForm_Load);
     this.SizeChanged += new System.EventHandler(this.MainWindow_SizeChanged);
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainWindow_FormClosing);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Form_KeyDown);
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     this.seatContext.ResumeLayout(false);
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     this.statusStrip2.ResumeLayout(false);
     this.statusStrip2.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Beispiel #60
0
 /// <summary>
 /// デザイナー サポートに必要なメソッドです。このメソッドの内容を
 /// コード エディターで変更しないでください。
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
     this.toolStripContainer1 = new System.Windows.Forms.ToolStripContainer();
     this.scrollpanel = new System.Windows.Forms.Panel();
     this.workingpanel = new System.Windows.Forms.Panel();
     this.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.toolStripCreate = new System.Windows.Forms.ToolStripButton();
     this.toolStripLoad = new System.Windows.Forms.ToolStripButton();
     this.toolStripText = new System.Windows.Forms.ToolStripButton();
     this.toolStripScreen = new System.Windows.Forms.ToolStripButton();
     this.toolStripPage = new System.Windows.Forms.ToolStripButton();
     this.toolStripPagesBox = new System.Windows.Forms.ToolStripDropDownButton();
     this.toolStripBackground = new System.Windows.Forms.ToolStripButton();
     this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
     this.toolStripOthers = new System.Windows.Forms.ToolStripDropDownButton();
     this.上書き保存ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.終了ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.印刷ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.ページサイズ変更ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.x1080ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.x2160ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.x4320ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.ページの並べ替えToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.ワードパッドToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.ワードの起動ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.メモ帳の起動ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.データフォルダToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.未使用のBoxデータを削除ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.このページの参照ウインドウToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripPageSize = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripHelpButton1 = new System.Windows.Forms.ToolStripButton();
     this.別のブックを開くToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripContainer1.ContentPanel.SuspendLayout();
     this.toolStripContainer1.TopToolStripPanel.SuspendLayout();
     this.toolStripContainer1.SuspendLayout();
     this.scrollpanel.SuspendLayout();
     this.toolStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // toolStripContainer1
     //
     //
     // toolStripContainer1.ContentPanel
     //
     this.toolStripContainer1.ContentPanel.Controls.Add(this.scrollpanel);
     this.toolStripContainer1.ContentPanel.Size = new System.Drawing.Size(1417, 383);
     this.toolStripContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.toolStripContainer1.Location = new System.Drawing.Point(0, 0);
     this.toolStripContainer1.Name = "toolStripContainer1";
     this.toolStripContainer1.Size = new System.Drawing.Size(1417, 408);
     this.toolStripContainer1.TabIndex = 0;
     this.toolStripContainer1.Text = "toolStripContainer1";
     //
     // toolStripContainer1.TopToolStripPanel
     //
     this.toolStripContainer1.TopToolStripPanel.Controls.Add(this.toolStrip1);
     //
     // scrollpanel
     //
     this.scrollpanel.AutoScroll = true;
     this.scrollpanel.Controls.Add(this.workingpanel);
     this.scrollpanel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.scrollpanel.Location = new System.Drawing.Point(0, 0);
     this.scrollpanel.Name = "scrollpanel";
     this.scrollpanel.Size = new System.Drawing.Size(1417, 383);
     this.scrollpanel.TabIndex = 1;
     //
     // workingpanel
     //
     this.workingpanel.AutoScroll = true;
     this.workingpanel.Location = new System.Drawing.Point(12, 11);
     this.workingpanel.Name = "workingpanel";
     this.workingpanel.Size = new System.Drawing.Size(4000, 4000);
     this.workingpanel.TabIndex = 0;
     this.workingpanel.Paint += new System.Windows.Forms.PaintEventHandler(this.panel1_Paint);
     //
     // toolStrip1
     //
     this.toolStrip1.Dock = System.Windows.Forms.DockStyle.None;
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripCreate,
     this.toolStripLoad,
     this.toolStripText,
     this.toolStripScreen,
     this.toolStripPage,
     this.toolStripPagesBox,
     this.toolStripBackground,
     this.toolStripLabel1,
     this.toolStripOthers,
     this.toolStripPageSize,
     this.toolStripHelpButton1});
     this.toolStrip1.Location = new System.Drawing.Point(3, 0);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.Size = new System.Drawing.Size(790, 25);
     this.toolStrip1.TabIndex = 0;
     //
     // toolStripCreate
     //
     this.toolStripCreate.Image = ((System.Drawing.Image)(resources.GetObject("toolStripCreate.Image")));
     this.toolStripCreate.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripCreate.Name = "toolStripCreate";
     this.toolStripCreate.Size = new System.Drawing.Size(88, 22);
     this.toolStripCreate.Text = "Bookの作成";
     this.toolStripCreate.Click += new System.EventHandler(this.toolStripBook_Click);
     //
     // toolStripLoad
     //
     this.toolStripLoad.Image = ((System.Drawing.Image)(resources.GetObject("toolStripLoad.Image")));
     this.toolStripLoad.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripLoad.Name = "toolStripLoad";
     this.toolStripLoad.Size = new System.Drawing.Size(82, 22);
     this.toolStripLoad.Text = "Bookを開く";
     this.toolStripLoad.Click += new System.EventHandler(this.toolStripLoad_Click);
     //
     // toolStripText
     //
     this.toolStripText.Image = ((System.Drawing.Image)(resources.GetObject("toolStripText.Image")));
     this.toolStripText.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripText.Name = "toolStripText";
     this.toolStripText.Size = new System.Drawing.Size(98, 22);
     this.toolStripText.Text = "テキスト枠追加";
     this.toolStripText.Click += new System.EventHandler(this.toolStripText_Click);
     //
     // toolStripScreen
     //
     this.toolStripScreen.Image = ((System.Drawing.Image)(resources.GetObject("toolStripScreen.Image")));
     this.toolStripScreen.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripScreen.Name = "toolStripScreen";
     this.toolStripScreen.Size = new System.Drawing.Size(103, 22);
     this.toolStripScreen.Text = "スクリーンショット";
     this.toolStripScreen.Click += new System.EventHandler(this.toolStripScreen_Click);
     //
     // toolStripPage
     //
     this.toolStripPage.Image = ((System.Drawing.Image)(resources.GetObject("toolStripPage.Image")));
     this.toolStripPage.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripPage.Name = "toolStripPage";
     this.toolStripPage.Size = new System.Drawing.Size(79, 22);
     this.toolStripPage.Text = "ページ追加";
     this.toolStripPage.Click += new System.EventHandler(this.toolStripPage_Click);
     //
     // toolStripPagesBox
     //
     this.toolStripPagesBox.Image = ((System.Drawing.Image)(resources.GetObject("toolStripPagesBox.Image")));
     this.toolStripPagesBox.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripPagesBox.Name = "toolStripPagesBox";
     this.toolStripPagesBox.Size = new System.Drawing.Size(29, 22);
     this.toolStripPagesBox.DropDownItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.toolStripPagesBox_DropDownItemClicked);
     //
     // toolStripBackground
     //
     this.toolStripBackground.Image = ((System.Drawing.Image)(resources.GetObject("toolStripBackground.Image")));
     this.toolStripBackground.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripBackground.Name = "toolStripBackground";
     this.toolStripBackground.Size = new System.Drawing.Size(63, 22);
     this.toolStripBackground.Text = "背景色";
     this.toolStripBackground.Click += new System.EventHandler(this.toolStripBackground_Click);
     //
     // toolStripLabel1
     //
     this.toolStripLabel1.Name = "toolStripLabel1";
     this.toolStripLabel1.Overflow = System.Windows.Forms.ToolStripItemOverflow.Never;
     this.toolStripLabel1.Size = new System.Drawing.Size(0, 22);
     //
     // toolStripOthers
     //
     this.toolStripOthers.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.別のブックを開くToolStripMenuItem,
     this.上書き保存ToolStripMenuItem,
     this.終了ToolStripMenuItem,
     this.印刷ToolStripMenuItem,
     this.toolStripSeparator1,
     this.ページサイズ変更ToolStripMenuItem,
     this.ページの並べ替えToolStripMenuItem,
     this.toolStripSeparator2,
     this.ワードパッドToolStripMenuItem,
     this.ワードの起動ToolStripMenuItem,
     this.メモ帳の起動ToolStripMenuItem,
     this.toolStripSeparator3,
     this.データフォルダToolStripMenuItem,
     this.未使用のBoxデータを削除ToolStripMenuItem,
     this.このページの参照ウインドウToolStripMenuItem});
     this.toolStripOthers.Image = ((System.Drawing.Image)(resources.GetObject("toolStripOthers.Image")));
     this.toolStripOthers.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripOthers.Name = "toolStripOthers";
     this.toolStripOthers.Size = new System.Drawing.Size(67, 22);
     this.toolStripOthers.Text = "その他";
     //
     // 上書き保存ToolStripMenuItem
     //
     this.上書き保存ToolStripMenuItem.Name = "上書き保存ToolStripMenuItem";
     this.上書き保存ToolStripMenuItem.Size = new System.Drawing.Size(199, 22);
     this.上書き保存ToolStripMenuItem.Text = "上書き保存";
     this.上書き保存ToolStripMenuItem.Click += new System.EventHandler(this.toolStripSave_Click);
     //
     // 終了ToolStripMenuItem
     //
     this.終了ToolStripMenuItem.Name = "終了ToolStripMenuItem";
     this.終了ToolStripMenuItem.Size = new System.Drawing.Size(199, 22);
     this.終了ToolStripMenuItem.Text = "終了";
     this.終了ToolStripMenuItem.Click += new System.EventHandler(this.toolStripEnd_Click);
     //
     // 印刷ToolStripMenuItem
     //
     this.印刷ToolStripMenuItem.Name = "印刷ToolStripMenuItem";
     this.印刷ToolStripMenuItem.Size = new System.Drawing.Size(199, 22);
     this.印刷ToolStripMenuItem.Text = "印刷";
     this.印刷ToolStripMenuItem.Click += new System.EventHandler(this.toolStripPrint_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(196, 6);
     //
     // ページサイズ変更ToolStripMenuItem
     //
     this.ページサイズ変更ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.x1080ToolStripMenuItem,
     this.x2160ToolStripMenuItem,
     this.x4320ToolStripMenuItem});
     this.ページサイズ変更ToolStripMenuItem.Name = "ページサイズ変更ToolStripMenuItem";
     this.ページサイズ変更ToolStripMenuItem.Size = new System.Drawing.Size(199, 22);
     this.ページサイズ変更ToolStripMenuItem.Text = "ページサイズ変更";
     //
     // x1080ToolStripMenuItem
     //
     this.x1080ToolStripMenuItem.Name = "x1080ToolStripMenuItem";
     this.x1080ToolStripMenuItem.Size = new System.Drawing.Size(134, 22);
     this.x1080ToolStripMenuItem.Text = "1920 x 1080";
     this.x1080ToolStripMenuItem.Click += new System.EventHandler(this.ToolStripSize_Click);
     //
     // x2160ToolStripMenuItem
     //
     this.x2160ToolStripMenuItem.Name = "x2160ToolStripMenuItem";
     this.x2160ToolStripMenuItem.Size = new System.Drawing.Size(134, 22);
     this.x2160ToolStripMenuItem.Text = "3840 x 2160";
     this.x2160ToolStripMenuItem.Click += new System.EventHandler(this.ToolStripSize_Click);
     //
     // x4320ToolStripMenuItem
     //
     this.x4320ToolStripMenuItem.Name = "x4320ToolStripMenuItem";
     this.x4320ToolStripMenuItem.Size = new System.Drawing.Size(134, 22);
     this.x4320ToolStripMenuItem.Text = "7680 x 4320";
     this.x4320ToolStripMenuItem.Click += new System.EventHandler(this.ToolStripSize_Click);
     //
     // ページの並べ替えToolStripMenuItem
     //
     this.ページの並べ替えToolStripMenuItem.Name = "ページの並べ替えToolStripMenuItem";
     this.ページの並べ替えToolStripMenuItem.Size = new System.Drawing.Size(199, 22);
     this.ページの並べ替えToolStripMenuItem.Text = "ページの並べ替え";
     this.ページの並べ替えToolStripMenuItem.Click += new System.EventHandler(this.toolStripPageMove_Click);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(196, 6);
     //
     // ワードパッドToolStripMenuItem
     //
     this.ワードパッドToolStripMenuItem.Name = "ワードパッドToolStripMenuItem";
     this.ワードパッドToolStripMenuItem.Size = new System.Drawing.Size(199, 22);
     this.ワードパッドToolStripMenuItem.Text = "ワードパッドの起動";
     this.ワードパッドToolStripMenuItem.Click += new System.EventHandler(this.toolStripButton1_Click);
     //
     // ワードの起動ToolStripMenuItem
     //
     this.ワードの起動ToolStripMenuItem.Name = "ワードの起動ToolStripMenuItem";
     this.ワードの起動ToolStripMenuItem.Size = new System.Drawing.Size(199, 22);
     this.ワードの起動ToolStripMenuItem.Text = "ワードの起動";
     this.ワードの起動ToolStripMenuItem.Click += new System.EventHandler(this.WordToolStripMenuItem_Click);
     //
     // メモ帳の起動ToolStripMenuItem
     //
     this.メモ帳の起動ToolStripMenuItem.Name = "メモ帳の起動ToolStripMenuItem";
     this.メモ帳の起動ToolStripMenuItem.Size = new System.Drawing.Size(199, 22);
     this.メモ帳の起動ToolStripMenuItem.Text = "メモ帳の起動";
     this.メモ帳の起動ToolStripMenuItem.Click += new System.EventHandler(this.NotePadToolStripMenuItem_Click);
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(196, 6);
     //
     // データフォルダToolStripMenuItem
     //
     this.データフォルダToolStripMenuItem.Name = "データフォルダToolStripMenuItem";
     this.データフォルダToolStripMenuItem.Size = new System.Drawing.Size(199, 22);
     this.データフォルダToolStripMenuItem.Text = "データフォルダを開く";
     this.データフォルダToolStripMenuItem.Click += new System.EventHandler(this.toolStripFolder_Click);
     //
     // 未使用のBoxデータを削除ToolStripMenuItem
     //
     this.未使用のBoxデータを削除ToolStripMenuItem.Name = "未使用のBoxデータを削除ToolStripMenuItem";
     this.未使用のBoxデータを削除ToolStripMenuItem.Size = new System.Drawing.Size(199, 22);
     this.未使用のBoxデータを削除ToolStripMenuItem.Text = "未使用のBoxデータを削除";
     this.未使用のBoxデータを削除ToolStripMenuItem.Click += new System.EventHandler(this.ToolStripBoxClear_Click);
     //
     // このページの参照ウインドウToolStripMenuItem
     //
     this.このページの参照ウインドウToolStripMenuItem.Name = "このページの参照ウインドウToolStripMenuItem";
     this.このページの参照ウインドウToolStripMenuItem.Size = new System.Drawing.Size(199, 22);
     this.このページの参照ウインドウToolStripMenuItem.Text = "このページの参照ウインドウ";
     this.このページの参照ウインドウToolStripMenuItem.Click += new System.EventHandler(this.toolStripDisplay_Click);
     //
     // toolStripPageSize
     //
     this.toolStripPageSize.Name = "toolStripPageSize";
     this.toolStripPageSize.ReadOnly = true;
     this.toolStripPageSize.Size = new System.Drawing.Size(80, 25);
     this.toolStripPageSize.Text = "1920 x 1080";
     //
     // toolStripHelpButton1
     //
     this.toolStripHelpButton1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripHelpButton1.Image")));
     this.toolStripHelpButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripHelpButton1.Name = "toolStripHelpButton1";
     this.toolStripHelpButton1.Size = new System.Drawing.Size(56, 22);
     this.toolStripHelpButton1.Text = "ヘルプ";
     this.toolStripHelpButton1.Click += new System.EventHandler(this.toolStripHelp_Click);
     //
     // 別のブックを開くToolStripMenuItem
     //
     this.別のブックを開くToolStripMenuItem.Name = "別のブックを開くToolStripMenuItem";
     this.別のブックを開くToolStripMenuItem.Size = new System.Drawing.Size(199, 22);
     this.別のブックを開くToolStripMenuItem.Text = "別のブックを開く";
     this.別のブックを開くToolStripMenuItem.Click += new System.EventHandler(this.oTherBookToolStripMenuItem_Click);
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.SystemColors.Control;
     this.ClientSize = new System.Drawing.Size(1417, 408);
     this.Controls.Add(this.toolStripContainer1);
     this.MinimumSize = new System.Drawing.Size(200, 150);
     this.Name = "MainForm";
     this.Text = "スクラップブック";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.MainForm_FormClosed);
     this.toolStripContainer1.ContentPanel.ResumeLayout(false);
     this.toolStripContainer1.TopToolStripPanel.ResumeLayout(false);
     this.toolStripContainer1.TopToolStripPanel.PerformLayout();
     this.toolStripContainer1.ResumeLayout(false);
     this.toolStripContainer1.PerformLayout();
     this.scrollpanel.ResumeLayout(false);
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     this.ResumeLayout(false);
 }