private void FormatGridServicios()
        {
            try
            {
                Telerik.WinControls.UI.Localization.RadGridLocalizationProvider.CurrentProvider = new Infrastructure.WinForms.Controls.MySpanishRadGridLocalizationProvider();
                this.grdItemsServicio.Columns.Clear();
                this.grdItemsServicio.AllowAddNewRow = false;

                //Descripción del servicio
                Telerik.WinControls.UI.GridViewCheckBoxColumn _exonerado = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
                _exonerado.Name       = "SCOT_Exonerado";
                _exonerado.HeaderText = "Exonerado";
                _exonerado.FieldName  = "SCOT_Exonerado";
                _exonerado.ReadOnly   = true;
                this.grdItemsServicio.Columns.Add(_exonerado);

                //Descripción del servicio
                //Telerik.WinControls.UI.GridViewComboBoxColumn _ingresoegreso = new Telerik.WinControls.UI.GridViewComboBoxColumn();
                //_ingresoegreso.Name = "CCOT_IngresoGasto";
                //_ingresoegreso.HeaderText = "Ingreso/Egreso";
                //_ingresoegreso.FieldName = "CCOT_IngresoGasto";
                //_ingresoegreso.ValueMember = "StrCodigo";
                //_ingresoegreso.DisplayMember = "StrDesc";
                //_ingresoegreso.DataSource = Presenter.ListIngresoEgreso;
                //_ingresoegreso.FilteringMode = Telerik.WinControls.UI.GridViewFilteringMode.DisplayMember;
                //this.grdItemsServicio.Columns.Add(_ingresoegreso);
                //Descripción del servicio
                //Telerik.WinControls.UI.GridViewComboBoxColumn _servicio = new Telerik.WinControls.UI.GridViewComboBoxColumn();
                //_servicio.Name = "SERV_Codigo";
                //_servicio.HeaderText = "Servicio";
                //_servicio.FieldName = "SERV_CodigoStr";
                //_servicio.ValueMember = "SERV_CodigoStr";
                //_servicio.DisplayMember = "SERV_Nombre_SPA";
                //_servicio.DataSource = Presenter.ListServicio;
                //_servicio.DataType = typeof(System.String);
                //_servicio.FilteringMode = Telerik.WinControls.UI.GridViewFilteringMode.DisplayMember;
                //_servicio.AutoCompleteMode = AutoCompleteMode.SuggestAppend;
                //_servicio.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDown;
                //this.grdItemsServicio.Columns.Add(_servicio);
                //Proveedor del servicio
                Telerik.WinControls.UI.GridViewCommandColumn _proveedor = new Telerik.WinControls.UI.GridViewCommandColumn();
                _proveedor.Name           = "Seleccionar";
                _proveedor.HeaderText     = "Proveedor";
                _proveedor.DefaultText    = "Seleccionar";
                _proveedor.UseDefaultText = true;
                this.grdItemsServicio.Columns.Add(_proveedor);
                this.grdItemsServicio.Columns.Add("TIPE_Codigo", "Tipo Entidad", "TIPE_Codigo");
                this.grdItemsServicio.Columns.Add("ENTC_Codigo", "Código Proveedor", "ENTC_Codigo");
                this.grdItemsServicio.Columns.Add("ENTC_NomCom", "Proveedor", "ENTC_NomCom");
                //Base (Valor, Contenedor, Peso/Volumen)
                //Telerik.WinControls.UI.GridViewComboBoxColumn _base = new Telerik.WinControls.UI.GridViewComboBoxColumn();
                //_base.Name = "CONS_CodBas";
                //_base.HeaderText = "Base";
                //_base.FieldName = "CONS_CodBas";
                //_base.ValueMember = "CONS_CodTipo";
                //_base.DisplayMember = "CONS_Desc_SPA";
                //_base.DataSource = Presenter.ListConstantesBAS;
                //_base.FilteringMode = Telerik.WinControls.UI.GridViewFilteringMode.DisplayMember;
                //this.grdItemsServicio.Columns.Add(_base);
                //Cantidad
                Telerik.WinControls.UI.GridViewDecimalColumn _cantidad = new Telerik.WinControls.UI.GridViewDecimalColumn();
                _cantidad.Name          = "SCOT_Cantidad";
                _cantidad.HeaderText    = "Cantidad";
                _cantidad.FieldName     = "SCOT_Cantidad";
                _cantidad.DecimalPlaces = 2;
                this.grdItemsServicio.Columns.Add(_cantidad);
                //Origen del servicio (0 = Local, 1 = Destino)
                //Telerik.WinControls.UI.GridViewComboBoxColumn _origen = new Telerik.WinControls.UI.GridViewComboBoxColumn();
                //_origen.Name = "SCOT_Origen";
                //_origen.HeaderText = "Origen";
                //_origen.FieldName = "SCOT_Origen";
                //_origen.ValueMember = "StrCodigo";
                //_origen.DisplayMember = "StrDesc";
                //_origen.DataSource = Presenter.ListOrigen;
                ////_origen.FilteringMode = Telerik.WinControls.UI.GridViewFilteringMode.DisplayMember;
                //this.grdItemsServicio.Columns.Add(_origen);
                //Moneda
                //Telerik.WinControls.UI.GridViewComboBoxColumn _moneda = new Telerik.WinControls.UI.GridViewComboBoxColumn();
                //_moneda.Name = "TIPO_CodMnd";
                //_moneda.HeaderText = "Moneda";
                //_moneda.FieldName = "TIPO_CodMnd";
                //_moneda.ValueMember = "TIPO_CodTipo";
                //_moneda.DisplayMember = "TIPO_Desc1";
                //_moneda.DataSource = Presenter.ListTiposMND;
                ////_moneda.FilteringMode = Telerik.WinControls.UI.GridViewFilteringMode.DisplayMember;
                //this.grdItemsServicio.Columns.Add(_moneda);
                //Precio Unitario
                Telerik.WinControls.UI.GridViewDecimalColumn _precio = new Telerik.WinControls.UI.GridViewDecimalColumn();
                _precio.Name          = "SCOT_PrecioUni";
                _precio.HeaderText    = "Precio Unitario";
                _precio.FieldName     = "SCOT_PrecioUni";
                _precio.DecimalPlaces = 2;
                this.grdItemsServicio.Columns.Add(_precio);
                //Importe de Venta
                Telerik.WinControls.UI.GridViewDecimalColumn _importeingreso = new Telerik.WinControls.UI.GridViewDecimalColumn();
                _importeingreso.Name          = "SCOT_Importe_Ingreso";
                _importeingreso.HeaderText    = "Importe Ingreso";
                _importeingreso.FieldName     = "SCOT_Importe_Ingreso";
                _importeingreso.DecimalPlaces = 2;
                this.grdItemsServicio.Columns.Add(_importeingreso);
                //Importe de Venta
                Telerik.WinControls.UI.GridViewDecimalColumn _importeegreso = new Telerik.WinControls.UI.GridViewDecimalColumn();
                _importeegreso.Name          = "SCOT_Importe_Egreso";
                _importeegreso.HeaderText    = "Importe Egreso";
                _importeegreso.FieldName     = "SCOT_Importe_Egreso";
                _importeegreso.DecimalPlaces = 2;
                this.grdItemsServicio.Columns.Add(_importeegreso);
                //Afecto a IGV (no editable)
                Telerik.WinControls.UI.GridViewCheckBoxColumn _afectoIGV = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
                _afectoIGV.Name       = "SERV_AfeIgv";
                _afectoIGV.HeaderText = "Afecto IGV";
                _afectoIGV.FieldName  = "SERV_AfeIgv";
                this.grdItemsServicio.Columns.Add(_afectoIGV);
                //Afecto a Detracción (no editable)
                Telerik.WinControls.UI.GridViewCheckBoxColumn _afectoDetraccion = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
                _afectoDetraccion.Name       = "SERV_AfeDet";
                _afectoDetraccion.HeaderText = "Afecto Detracción";
                _afectoDetraccion.FieldName  = "SERV_AfeDet";
                this.grdItemsServicio.Columns.Add(_afectoDetraccion);
                //Importe de Venta
                Telerik.WinControls.UI.GridViewDecimalColumn _preciosugerido = new Telerik.WinControls.UI.GridViewDecimalColumn();
                _preciosugerido.Name          = "SCOT_PreSugerido";
                _preciosugerido.HeaderText    = "Precio Sugerido";
                _preciosugerido.FieldName     = "SCOT_PreSugerido";
                _preciosugerido.DecimalPlaces = 2;
                this.grdItemsServicio.Columns.Add(_preciosugerido);

                grdItemsServicio.BestFitColumns();
                Infrastructure.WinForms.Controls.GridAutoFit.Fit(grdItemsServicio);
                grdItemsServicio.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;

                this.grdItemsServicio.SelectionMode = Telerik.WinControls.UI.GridViewSelectionMode.CellSelect;
                this.grdItemsServicio.MultiSelect   = false;

                this.grdItemsServicio.ShowFilteringRow = false;
                this.grdItemsServicio.EnableFiltering  = false;
                this.grdItemsServicio.MasterTemplate.EnableFiltering = false;
                this.grdItemsServicio.EnableGrouping = false;
                this.grdItemsServicio.MasterTemplate.EnableGrouping = false;
                this.grdItemsServicio.EnableSorting = false;
                this.grdItemsServicio.MasterTemplate.EnableCustomSorting = false;

                this.grdItemsServicio.ReadOnly     = false;
                this.grdItemsServicio.AllowEditRow = true;

                this.grdItemsServicio.Columns["SCOT_PreSugerido"].IsVisible = false;
                this.grdItemsServicio.Columns["TIPE_Codigo"].IsVisible      = false;
                this.grdItemsServicio.Columns["ENTC_Codigo"].IsVisible      = false;

                this.grdItemsServicio.Columns["SCOT_Exonerado"].ReadOnly       = true;
                this.grdItemsServicio.Columns["CCOT_IngresoGasto"].ReadOnly    = false;
                this.grdItemsServicio.Columns["SERV_Codigo"].ReadOnly          = false;
                this.grdItemsServicio.Columns["ENTC_NomCom"].ReadOnly          = true;
                this.grdItemsServicio.Columns["CONS_CodBas"].ReadOnly          = false;
                this.grdItemsServicio.Columns["SCOT_Cantidad"].ReadOnly        = false;
                this.grdItemsServicio.Columns["SCOT_Origen"].ReadOnly          = false;
                this.grdItemsServicio.Columns["TIPO_CodMnd"].ReadOnly          = false;
                this.grdItemsServicio.Columns["SCOT_PrecioUni"].ReadOnly       = false;
                this.grdItemsServicio.Columns["SCOT_Importe_Ingreso"].ReadOnly = true;
                this.grdItemsServicio.Columns["SCOT_Importe_Egreso"].ReadOnly  = true;
                this.grdItemsServicio.Columns["SERV_AfeIgv"].ReadOnly          = true;
                this.grdItemsServicio.Columns["SERV_AfeDet"].ReadOnly          = true;

                this.grdItemsServicio.Columns["SCOT_Exonerado"].Width       = 60;
                this.grdItemsServicio.Columns["CCOT_IngresoGasto"].Width    = 80;
                this.grdItemsServicio.Columns["SERV_Codigo"].Width          = 200;
                this.grdItemsServicio.Columns["ENTC_NomCom"].Width          = 150;
                this.grdItemsServicio.Columns["CONS_CodBas"].Width          = 80;
                this.grdItemsServicio.Columns["SCOT_Cantidad"].Width        = 80;
                this.grdItemsServicio.Columns["SCOT_Origen"].Width          = 80;
                this.grdItemsServicio.Columns["TIPO_CodMnd"].Width          = 80;
                this.grdItemsServicio.Columns["SCOT_PrecioUni"].Width       = 100;
                this.grdItemsServicio.Columns["SCOT_Importe_Ingreso"].Width = 100;
                this.grdItemsServicio.Columns["SCOT_Importe_Egreso"].Width  = 100;
                this.grdItemsServicio.Columns["SERV_AfeIgv"].Width          = 80;
                this.grdItemsServicio.Columns["SERV_AfeDet"].Width          = 80;

                //this.grdItemsServicio.Columns["SERV_Codigo"].TextAlignment = ContentAlignment.MiddleLeft;
            }
            catch (Exception ex)
            { Infrastructure.WinForms.Controls.Dialogos.MostrarMensajeError(Presenter.Title, Infrastructure.Aspect.Constants.Mensajes.FormatDataGridView + " (Grid Servicios)", ex); }
        }
        /// <summary> 
        /// Required method for Designer support - do not modify 
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn2 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn3 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn1 = new Telerik.WinControls.UI.GridViewCommandColumn();
            this.GrillaPagos = new Telerik.WinControls.UI.RadGridView();
            this.Eliminar = new LaPaz.Win.Controls.DeleteCell.DeleteColumn();
            this.BtnAgregarPago = new Telerik.WinControls.UI.RadButton();
            this.TxtTotal = new Telerik.WinControls.UI.RadTextBox();
            this.radLabel1 = new Telerik.WinControls.UI.RadLabel();
            ((System.ComponentModel.ISupportInitialize)(this.GrillaPagos)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.GrillaPagos.MasterTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.BtnAgregarPago)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.TxtTotal)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit();
            this.SuspendLayout();
            // 
            // GrillaPagos
            // 
            this.GrillaPagos.Font = new System.Drawing.Font("Segoe UI", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
            this.GrillaPagos.Location = new System.Drawing.Point(15, 47);
            this.GrillaPagos.Margin = new System.Windows.Forms.Padding(4);
            // 
            // GrillaPagos
            // 
            this.GrillaPagos.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
            gridViewTextBoxColumn1.FieldName = "TipoPago";
            gridViewTextBoxColumn1.HeaderText = "Tipo Pago";
            gridViewTextBoxColumn1.Name = "TipoPago";
            gridViewTextBoxColumn1.ReadOnly = true;
            gridViewTextBoxColumn1.Width = 218;
            gridViewTextBoxColumn2.FieldName = "Descripcion";
            gridViewTextBoxColumn2.HeaderText = "Descripción";
            gridViewTextBoxColumn2.Name = "Descripcion";
            gridViewTextBoxColumn2.ReadOnly = true;
            gridViewTextBoxColumn2.Width = 245;
            gridViewTextBoxColumn3.FieldName = "Importe";
            gridViewTextBoxColumn3.FormatString = "{0:c2}";
            gridViewTextBoxColumn3.HeaderText = "Importe";
            gridViewTextBoxColumn3.Name = "Importe";
            gridViewTextBoxColumn3.ReadOnly = true;
            gridViewTextBoxColumn3.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
            gridViewTextBoxColumn3.Width = 282;
            gridViewCommandColumn1.HeaderText = "";
            gridViewCommandColumn1.Image = global::LaPaz.Win.Properties.Resources.Garbage_Closed;
            gridViewCommandColumn1.ImageLayout = System.Windows.Forms.ImageLayout.Center;
            gridViewCommandColumn1.MaxWidth = 30;
            gridViewCommandColumn1.MinWidth = 30;
            gridViewCommandColumn1.Name = "Eliminar";
            gridViewCommandColumn1.Width = 30;
            this.GrillaPagos.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn1,
            gridViewTextBoxColumn2,
            gridViewTextBoxColumn3,
            gridViewCommandColumn1});
            this.GrillaPagos.MasterTemplate.EnableGrouping = false;
            this.GrillaPagos.Name = "GrillaPagos";
            this.GrillaPagos.ReadOnly = true;
            this.GrillaPagos.Size = new System.Drawing.Size(794, 210);
            this.GrillaPagos.TabIndex = 6;
            this.GrillaPagos.ThemeName = "TelerikMetroBlue";
            this.GrillaPagos.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.GrillaPagos_CommandCellClick);
            this.GrillaPagos.KeyUp += new System.Windows.Forms.KeyEventHandler(this.GrillaPagos_KeyUp);
            // 
            // Eliminar
            // 
            this.Eliminar.FillWeight = 25F;
            this.Eliminar.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.Eliminar.HeaderText = "";
            this.Eliminar.Name = "Eliminar";
            this.Eliminar.ReadOnly = true;
            this.Eliminar.Resizable = System.Windows.Forms.DataGridViewTriState.False;
            this.Eliminar.Width = 30;
            // 
            // BtnAgregarPago
            // 
            this.BtnAgregarPago.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.BtnAgregarPago.Location = new System.Drawing.Point(709, 4);
            this.BtnAgregarPago.Margin = new System.Windows.Forms.Padding(4);
            this.BtnAgregarPago.Name = "BtnAgregarPago";
            this.BtnAgregarPago.Size = new System.Drawing.Size(100, 36);
            this.BtnAgregarPago.TabIndex = 5;
            this.BtnAgregarPago.Text = "Agregar";
            this.BtnAgregarPago.ThemeName = "TelerikMetroBlue";
            this.BtnAgregarPago.Click += new System.EventHandler(this.BtnAgregarPago_Click);
            // 
            // TxtTotal
            // 
            this.TxtTotal.Enabled = false;
            this.TxtTotal.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.TxtTotal.Location = new System.Drawing.Point(619, 262);
            this.TxtTotal.Margin = new System.Windows.Forms.Padding(4);
            this.TxtTotal.MaxLength = 11;
            this.TxtTotal.Name = "TxtTotal";
            this.TxtTotal.Size = new System.Drawing.Size(188, 31);
            this.TxtTotal.TabIndex = 43;
            this.TxtTotal.TabStop = false;
            this.TxtTotal.ThemeName = "TelerikMetroBlue";
            this.TxtTotal.TextChanged += new System.EventHandler(this.TxtTotal_TextChanged);
            // 
            // radLabel1
            // 
            this.radLabel1.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.radLabel1.Location = new System.Drawing.Point(551, 265);
            this.radLabel1.Margin = new System.Windows.Forms.Padding(4);
            this.radLabel1.Name = "radLabel1";
            this.radLabel1.Size = new System.Drawing.Size(55, 29);
            this.radLabel1.TabIndex = 44;
            this.radLabel1.Text = "Total:";
            this.radLabel1.ThemeName = "TelerikMetroBlue";
            // 
            // UcTotalesSenia
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.TxtTotal);
            this.Controls.Add(this.radLabel1);
            this.Controls.Add(this.BtnAgregarPago);
            this.Controls.Add(this.GrillaPagos);
            this.Margin = new System.Windows.Forms.Padding(4);
            this.Name = "UcTotalesSenia";
            this.Size = new System.Drawing.Size(879, 324);
            this.Load += new System.EventHandler(this.UcTotalesVenta_Load);
            ((System.ComponentModel.ISupportInitialize)(this.GrillaPagos.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.GrillaPagos)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.BtnAgregarPago)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.TxtTotal)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).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();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn1 = new Telerik.WinControls.UI.GridViewCommandColumn();
     this.btnSave = new Telerik.WinControls.UI.RadButton();
     this.btnNew = new Telerik.WinControls.UI.RadButton();
     this.radGroupBox6 = new Telerik.WinControls.UI.RadGroupBox();
     this.ucFilter1 = new ShayanDental.UserControls.UCFilter();
     this.grvItems = new Telerik.WinControls.UI.RadGridView();
     this.radGroupBox4 = new Telerik.WinControls.UI.RadGroupBox();
     this.btnAdd = new Telerik.WinControls.UI.RadButton();
     this.radLabel20 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel22 = new Telerik.WinControls.UI.RadLabel();
     this.txtManual = new Telerik.WinControls.UI.RadTextBox();
     this.srcItem = new System.Windows.Forms.BindingSource(this.components);
     this.txtName = new Telerik.WinControls.UI.RadTextBox();
     this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
     this.btnCancel = new Telerik.WinControls.UI.RadButton();
     ((System.ComponentModel.ISupportInitialize)(this.btnSave)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnNew)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox6)).BeginInit();
     this.radGroupBox6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grvItems)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grvItems.MasterTemplate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox4)).BeginInit();
     this.radGroupBox4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.btnAdd)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel20)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel22)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtManual)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.srcItem)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnCancel)).BeginInit();
     this.SuspendLayout();
     //
     // btnSave
     //
     this.btnSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnSave.Font = new System.Drawing.Font("B Nazanin", 10.5F, System.Drawing.FontStyle.Bold);
     this.btnSave.Location = new System.Drawing.Point(470, 249);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(144, 35);
     this.btnSave.TabIndex = 4;
     this.btnSave.Text = "ذخیره";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // btnNew
     //
     this.btnNew.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnNew.Font = new System.Drawing.Font("B Nazanin", 10.5F, System.Drawing.FontStyle.Bold);
     this.btnNew.Location = new System.Drawing.Point(5, 171);
     this.btnNew.Name = "btnNew";
     this.btnNew.Size = new System.Drawing.Size(144, 35);
     this.btnNew.TabIndex = 3;
     this.btnNew.Text = "جدید";
     this.btnNew.Click += new System.EventHandler(this.btnNew_Click);
     //
     // radGroupBox6
     //
     this.radGroupBox6.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.radGroupBox6.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.radGroupBox6.Controls.Add(this.ucFilter1);
     this.radGroupBox6.Controls.Add(this.grvItems);
     this.radGroupBox6.Font = new System.Drawing.Font("B Nazanin", 8.25F);
     this.radGroupBox6.FooterImageIndex = -1;
     this.radGroupBox6.FooterImageKey = "";
     this.radGroupBox6.HeaderImageIndex = -1;
     this.radGroupBox6.HeaderImageKey = "";
     this.radGroupBox6.HeaderMargin = new System.Windows.Forms.Padding(0);
     this.radGroupBox6.HeaderText = "داروها";
     this.radGroupBox6.Location = new System.Drawing.Point(12, 3);
     this.radGroupBox6.Name = "radGroupBox6";
     this.radGroupBox6.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
     this.radGroupBox6.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     //
     //
     //
     this.radGroupBox6.RootElement.MinSize = new System.Drawing.Size(0, 0);
     this.radGroupBox6.Size = new System.Drawing.Size(292, 281);
     this.radGroupBox6.TabIndex = 20;
     this.radGroupBox6.TabStop = false;
     this.radGroupBox6.Text = "داروها";
     //
     // ucFilter1
     //
     this.ucFilter1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.ucFilter1.Location = new System.Drawing.Point(5, 21);
     this.ucFilter1.Name = "ucFilter1";
     this.ucFilter1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.ucFilter1.Size = new System.Drawing.Size(282, 27);
     this.ucFilter1.TabIndex = 14;
     //
     // grvItems
     //
     this.grvItems.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.grvItems.Font = new System.Drawing.Font("B Nazanin", 9.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.grvItems.Location = new System.Drawing.Point(5, 52);
     //
     // grvItems
     //
     this.grvItems.MasterTemplate.AllowAddNewRow = false;
     this.grvItems.MasterTemplate.AllowCellContextMenu = false;
     this.grvItems.MasterTemplate.AllowColumnChooser = false;
     this.grvItems.MasterTemplate.AllowColumnHeaderContextMenu = false;
     this.grvItems.MasterTemplate.AllowColumnReorder = false;
     this.grvItems.MasterTemplate.AllowDeleteRow = false;
     this.grvItems.MasterTemplate.AllowDragToGroup = false;
     this.grvItems.MasterTemplate.AllowEditRow = false;
     this.grvItems.MasterTemplate.AllowRowResize = false;
     this.grvItems.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     gridViewTextBoxColumn1.FieldName = "Title";
     gridViewTextBoxColumn1.HeaderText = "نام دارو";
     gridViewTextBoxColumn1.Name = "column1";
     gridViewTextBoxColumn1.Width = 232;
     gridViewCommandColumn1.AllowHide = false;
     gridViewCommandColumn1.AllowReorder = false;
     gridViewCommandColumn1.AllowResize = false;
     gridViewCommandColumn1.AllowSort = false;
     gridViewCommandColumn1.HeaderText = "حذف";
     gridViewCommandColumn1.Name = "column2";
     gridViewCommandColumn1.Width = 30;
     this.grvItems.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
     gridViewTextBoxColumn1,
     gridViewCommandColumn1});
     this.grvItems.MasterTemplate.EnableGrouping = false;
     this.grvItems.MasterTemplate.EnableSorting = false;
     this.grvItems.Name = "grvItems";
     this.grvItems.ReadOnly = true;
     this.grvItems.Size = new System.Drawing.Size(282, 224);
     this.grvItems.TabIndex = 13;
     this.grvItems.ViewRowFormatting += new Telerik.WinControls.UI.RowFormattingEventHandler(this.grvItems_ViewRowFormatting);
     this.grvItems.CellFormatting += new Telerik.WinControls.UI.CellFormattingEventHandler(this.grvItems_CellFormatting);
     this.grvItems.CurrentRowChanging += new Telerik.WinControls.UI.CurrentRowChangingEventHandler(this.grvItems_CurrentRowChanging);
     this.grvItems.SelectionChanged += new System.EventHandler(this.grvItems_SelectionChanged);
     this.grvItems.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.grvItems_CommandCellClick);
     this.grvItems.KeyDown += new System.Windows.Forms.KeyEventHandler(this.grvItems_KeyDown);
     //
     // radGroupBox4
     //
     this.radGroupBox4.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.radGroupBox4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.radGroupBox4.Controls.Add(this.btnAdd);
     this.radGroupBox4.Controls.Add(this.btnNew);
     this.radGroupBox4.Controls.Add(this.radLabel20);
     this.radGroupBox4.Controls.Add(this.radLabel22);
     this.radGroupBox4.Controls.Add(this.txtManual);
     this.radGroupBox4.Controls.Add(this.txtName);
     this.radGroupBox4.Font = new System.Drawing.Font("B Nazanin", 8.25F);
     this.radGroupBox4.FooterImageIndex = -1;
     this.radGroupBox4.FooterImageKey = "";
     this.radGroupBox4.HeaderImageIndex = -1;
     this.radGroupBox4.HeaderImageKey = "";
     this.radGroupBox4.HeaderMargin = new System.Windows.Forms.Padding(0);
     this.radGroupBox4.HeaderText = "تعریف";
     this.radGroupBox4.Location = new System.Drawing.Point(310, 0);
     this.radGroupBox4.Name = "radGroupBox4";
     this.radGroupBox4.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
     this.radGroupBox4.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     //
     //
     //
     this.radGroupBox4.RootElement.MinSize = new System.Drawing.Size(0, 0);
     this.radGroupBox4.Size = new System.Drawing.Size(311, 215);
     this.radGroupBox4.TabIndex = 19;
     this.radGroupBox4.TabStop = false;
     this.radGroupBox4.Text = "تعریف";
     //
     // btnAdd
     //
     this.btnAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnAdd.Font = new System.Drawing.Font("B Nazanin", 10.5F, System.Drawing.FontStyle.Bold);
     this.btnAdd.Location = new System.Drawing.Point(160, 171);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(144, 35);
     this.btnAdd.TabIndex = 2;
     this.btnAdd.Text = "افزودن";
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // radLabel20
     //
     this.radLabel20.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.radLabel20.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radLabel20.Location = new System.Drawing.Point(262, 26);
     this.radLabel20.Name = "radLabel20";
     this.radLabel20.Size = new System.Drawing.Size(43, 23);
     this.radLabel20.TabIndex = 11;
     this.radLabel20.Text = "نام دارو :";
     this.radLabel20.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // radLabel22
     //
     this.radLabel22.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.radLabel22.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radLabel22.Location = new System.Drawing.Point(245, 52);
     this.radLabel22.Name = "radLabel22";
     this.radLabel22.Size = new System.Drawing.Size(61, 23);
     this.radLabel22.TabIndex = 9;
     this.radLabel22.Text = "نحوه مصرف :";
     this.radLabel22.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // txtManual
     //
     this.txtManual.AcceptsReturn = true;
     this.txtManual.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtManual.AutoScroll = true;
     this.txtManual.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.srcItem, "Manual", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.txtManual.Font = new System.Drawing.Font("B Nazanin", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.txtManual.Location = new System.Drawing.Point(5, 55);
     this.txtManual.Multiline = true;
     this.txtManual.Name = "txtManual";
     //
     //
     //
     this.txtManual.RootElement.StretchVertically = true;
     this.txtManual.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.txtManual.Size = new System.Drawing.Size(239, 110);
     this.txtManual.TabIndex = 1;
     this.txtManual.TabStop = false;
     this.txtManual.TextChanging += new Telerik.WinControls.TextChangingEventHandler(this.txtManual_TextChanging);
     //
     // srcItem
     //
     this.srcItem.DataSource = typeof(Shayan.Data.Drug);
     //
     // txtName
     //
     this.txtName.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtName.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.srcItem, "Title", true));
     this.txtName.Font = new System.Drawing.Font("B Nazanin", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.txtName.Location = new System.Drawing.Point(5, 22);
     this.txtName.Name = "txtName";
     this.txtName.Size = new System.Drawing.Size(239, 27);
     this.txtName.TabIndex = 0;
     this.txtName.TabStop = false;
     this.txtName.TextChanging += new Telerik.WinControls.TextChangingEventHandler(this.txtName_TextChanging);
     this.txtName.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtName_KeyDown);
     //
     // btnCancel
     //
     this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnCancel.Font = new System.Drawing.Font("B Nazanin", 10.5F, System.Drawing.FontStyle.Bold);
     this.btnCancel.Location = new System.Drawing.Point(315, 249);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(144, 35);
     this.btnCancel.TabIndex = 5;
     this.btnCancel.Text = "انصراف";
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // UCDrug
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.btnSave);
     this.Controls.Add(this.radGroupBox6);
     this.Controls.Add(this.radGroupBox4);
     this.Name = "UCDrug";
     this.Size = new System.Drawing.Size(628, 295);
     ((System.ComponentModel.ISupportInitialize)(this.btnSave)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnNew)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox6)).EndInit();
     this.radGroupBox6.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grvItems.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grvItems)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox4)).EndInit();
     this.radGroupBox4.ResumeLayout(false);
     this.radGroupBox4.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.btnAdd)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel20)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel22)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtManual)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.srcItem)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnCancel)).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();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn2 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn3 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn4 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn5 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn1 = new Telerik.WinControls.UI.GridViewCommandColumn();
            this.TabSeñas = new Telerik.WinControls.UI.RadPageView();
            this.TabSeñasNueva = new Telerik.WinControls.UI.RadPageViewPage();
            this.BtnGuardar = new Telerik.WinControls.UI.RadButton();
            this.ucTotalesSeña = new LaPaz.Win.Forms.Compras.UcTotalesSeña();
            this.TabSeñasHistorial = new Telerik.WinControls.UI.RadPageViewPage();
            this.GridSeñas = new Telerik.WinControls.UI.RadGridView();
            this.LblCliente = new Telerik.WinControls.UI.RadLabel();
            this.ucBuscadorClienteSimple = new LaPaz.Win.Forms.Ventas.Señas.UcBuscadorClienteSimple();
            this.pnlBuscador = new Telerik.WinControls.UI.RadPanel();
            this.radPanel2 = new Telerik.WinControls.UI.RadPanel();
            this.TxtCliente = new Telerik.WinControls.UI.RadTextBox();
            this.radLabel1 = new Telerik.WinControls.UI.RadLabel();
            this.TxtDni = new Telerik.WinControls.UI.RadTextBox();
            this.radTextBox4 = new Telerik.WinControls.UI.RadTextBox();
            this.radPanel3 = new Telerik.WinControls.UI.RadPanel();
            this.TxtTelefono = new Telerik.WinControls.UI.RadTextBox();
            this.radTextBox2 = new Telerik.WinControls.UI.RadTextBox();
            this.radLabel5 = new Telerik.WinControls.UI.RadLabel();
            this.LnkEditarCliente = new System.Windows.Forms.LinkLabel();
            this.TxtSenias = new Telerik.WinControls.UI.RadTextBox();
            this.radTextBox6 = new Telerik.WinControls.UI.RadTextBox();
            this.TxtCreditos = new Telerik.WinControls.UI.RadTextBox();
            this.radLabel3 = new Telerik.WinControls.UI.RadLabel();
            this.radLabel2 = new Telerik.WinControls.UI.RadLabel();
            this.radPanel1 = new Telerik.WinControls.UI.RadPanel();
            this.pnlMontoSenia = new System.Windows.Forms.Panel();
            this.TxtMonto = new Framework.WinForm.Controls.CustomControls.DecimalTextBox();
            this.radButton1 = new Telerik.WinControls.UI.RadButton();
            this.radLabel4 = new Telerik.WinControls.UI.RadLabel();
            ((System.ComponentModel.ISupportInitialize)(this.TabSeñas)).BeginInit();
            this.TabSeñas.SuspendLayout();
            this.TabSeñasNueva.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.BtnGuardar)).BeginInit();
            this.TabSeñasHistorial.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.GridSeñas)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.GridSeñas.MasterTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.LblCliente)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pnlBuscador)).BeginInit();
            this.pnlBuscador.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radPanel2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.TxtCliente)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.TxtDni)).BeginInit();
            this.TxtDni.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radTextBox4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radPanel3)).BeginInit();
            this.radPanel3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.TxtTelefono)).BeginInit();
            this.TxtTelefono.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radTextBox2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel5)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.TxtSenias)).BeginInit();
            this.TxtSenias.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radTextBox6)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.TxtCreditos)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).BeginInit();
            this.radPanel1.SuspendLayout();
            this.pnlMontoSenia.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.TxtMonto)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radButton1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            this.SuspendLayout();
            // 
            // TabSeñas
            // 
            this.TabSeñas.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.TabSeñas.Controls.Add(this.TabSeñasNueva);
            this.TabSeñas.Controls.Add(this.TabSeñasHistorial);
            this.TabSeñas.Location = new System.Drawing.Point(14, 50);
            this.TabSeñas.Name = "TabSeñas";
            this.TabSeñas.SelectedPage = this.TabSeñasNueva;
            this.TabSeñas.Size = new System.Drawing.Size(917, 338);
            this.TabSeñas.TabIndex = 0;
            this.TabSeñas.Text = "radPageView1";
            this.TabSeñas.ThemeName = "TelerikMetroBlue";
            this.TabSeñas.SelectedPageChanged += new System.EventHandler(this.TabSeñas_SelectedPageChanged);
            ((Telerik.WinControls.UI.RadPageViewStripElement)(this.TabSeñas.GetChildAt(0))).StripButtons = Telerik.WinControls.UI.StripViewButtons.None;
            // 
            // TabSeñasNueva
            // 
            this.TabSeñasNueva.Controls.Add(this.BtnGuardar);
            this.TabSeñasNueva.Controls.Add(this.ucTotalesSeña);
            this.TabSeñasNueva.Location = new System.Drawing.Point(5, 31);
            this.TabSeñasNueva.Name = "TabSeñasNueva";
            this.TabSeñasNueva.Size = new System.Drawing.Size(907, 302);
            this.TabSeñasNueva.Text = "Nueva Seña";
            // 
            // BtnGuardar
            // 
            this.BtnGuardar.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.BtnGuardar.Location = new System.Drawing.Point(801, 269);
            this.BtnGuardar.Name = "BtnGuardar";
            this.BtnGuardar.Size = new System.Drawing.Size(103, 29);
            this.BtnGuardar.TabIndex = 4;
            this.BtnGuardar.Text = "Guardar";
            this.BtnGuardar.ThemeName = "TelerikMetroBlue";
            this.BtnGuardar.Click += new System.EventHandler(this.BtnGuardar_Click);
            // 
            // ucTotalesSeña
            // 
            this.ucTotalesSeña.Location = new System.Drawing.Point(3, 3);
            this.ucTotalesSeña.Name = "ucTotalesSeña";
            this.ucTotalesSeña.Size = new System.Drawing.Size(901, 260);
            this.ucTotalesSeña.TabIndex = 6;
            this.ucTotalesSeña.TotalPagar = new decimal(new int[] {
            0,
            0,
            0,
            131072});
            // 
            // TabSeñasHistorial
            // 
            this.TabSeñasHistorial.Controls.Add(this.GridSeñas);
            this.TabSeñasHistorial.Location = new System.Drawing.Point(5, 31);
            this.TabSeñasHistorial.Name = "TabSeñasHistorial";
            this.TabSeñasHistorial.Size = new System.Drawing.Size(682, 300);
            this.TabSeñasHistorial.Text = "Historial";
            // 
            // GridSeñas
            // 
            this.GridSeñas.Location = new System.Drawing.Point(0, 3);
            // 
            // 
            // 
            this.GridSeñas.MasterTemplate.AllowAddNewRow = false;
            this.GridSeñas.MasterTemplate.AllowColumnReorder = false;
            this.GridSeñas.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
            gridViewTextBoxColumn1.FieldName = "FechaAlta";
            gridViewTextBoxColumn1.FormatString = "";
            gridViewTextBoxColumn1.HeaderText = "Fecha";
            gridViewTextBoxColumn1.MaxWidth = 100;
            gridViewTextBoxColumn1.MinWidth = 100;
            gridViewTextBoxColumn1.Name = "Fecha";
            gridViewTextBoxColumn1.Width = 100;
            gridViewTextBoxColumn2.FieldName = "Concepto";
            gridViewTextBoxColumn2.HeaderText = "Concepto";
            gridViewTextBoxColumn2.Name = "Concepto";
            gridViewTextBoxColumn2.Width = 232;
            gridViewTextBoxColumn3.FieldName = "Importe";
            gridViewTextBoxColumn3.FormatString = "";
            gridViewTextBoxColumn3.HeaderText = "Importe";
            gridViewTextBoxColumn3.MaxWidth = 100;
            gridViewTextBoxColumn3.MinWidth = 100;
            gridViewTextBoxColumn3.Name = "Importe";
            gridViewTextBoxColumn3.Width = 100;
            gridViewTextBoxColumn4.FieldName = "ImpOcupado";
            gridViewTextBoxColumn4.FormatString = "";
            gridViewTextBoxColumn4.HeaderText = "Utilizado";
            gridViewTextBoxColumn4.MaxWidth = 100;
            gridViewTextBoxColumn4.MinWidth = 100;
            gridViewTextBoxColumn4.Name = "Utilizado";
            gridViewTextBoxColumn4.Width = 100;
            gridViewTextBoxColumn5.FieldName = "FechaAnulacion";
            gridViewTextBoxColumn5.HeaderText = "Fecha Anulacion";
            gridViewTextBoxColumn5.MaxWidth = 100;
            gridViewTextBoxColumn5.MinWidth = 100;
            gridViewTextBoxColumn5.Name = "FechaAnulacion";
            gridViewTextBoxColumn5.Width = 100;
            gridViewCommandColumn1.HeaderText = "";
            gridViewCommandColumn1.Image = global::LaPaz.Win.Properties.Resources.Garbage_Closed;
            gridViewCommandColumn1.MaxWidth = 30;
            gridViewCommandColumn1.MinWidth = 30;
            gridViewCommandColumn1.Name = "Eliminar";
            gridViewCommandColumn1.Width = 30;
            this.GridSeñas.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn1,
            gridViewTextBoxColumn2,
            gridViewTextBoxColumn3,
            gridViewTextBoxColumn4,
            gridViewTextBoxColumn5,
            gridViewCommandColumn1});
            this.GridSeñas.MasterTemplate.EnableGrouping = false;
            this.GridSeñas.Name = "GridSeñas";
            this.GridSeñas.ReadOnly = true;
            this.GridSeñas.Size = new System.Drawing.Size(679, 231);
            this.GridSeñas.TabIndex = 0;
            this.GridSeñas.ThemeName = "TelerikMetroBlue";
            this.GridSeñas.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.GridSeñas_CommandCellClick);
            // 
            // LblCliente
            // 
            this.LblCliente.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.LblCliente.Location = new System.Drawing.Point(8, 6);
            this.LblCliente.Name = "LblCliente";
            this.LblCliente.Size = new System.Drawing.Size(149, 25);
            this.LblCliente.TabIndex = 2;
            this.LblCliente.Text = "Nombre y Apellido:";
            this.LblCliente.ThemeName = "TelerikMetroBlue";
            // 
            // ucBuscadorClienteSimple
            // 
            this.ucBuscadorClienteSimple.Location = new System.Drawing.Point(100, 2);
            this.ucBuscadorClienteSimple.Name = "ucBuscadorClienteSimple";
            this.ucBuscadorClienteSimple.Size = new System.Drawing.Size(540, 38);
            this.ucBuscadorClienteSimple.TabIndex = 1;
            // 
            // pnlBuscador
            // 
            this.pnlBuscador.Controls.Add(this.radPanel2);
            this.pnlBuscador.Controls.Add(this.ucBuscadorClienteSimple);
            this.pnlBuscador.Location = new System.Drawing.Point(12, 12);
            this.pnlBuscador.Name = "pnlBuscador";
            this.pnlBuscador.Size = new System.Drawing.Size(943, 41);
            this.pnlBuscador.TabIndex = 3;
            // 
            // radPanel2
            // 
            this.radPanel2.Location = new System.Drawing.Point(0, 144);
            this.radPanel2.Name = "radPanel2";
            this.radPanel2.Size = new System.Drawing.Size(704, 96);
            this.radPanel2.TabIndex = 4;
            this.radPanel2.Text = "radPanel2";
            // 
            // TxtCliente
            // 
            this.TxtCliente.Enabled = false;
            this.TxtCliente.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.TxtCliente.Location = new System.Drawing.Point(164, 5);
            this.TxtCliente.Name = "TxtCliente";
            this.TxtCliente.Size = new System.Drawing.Size(295, 26);
            this.TxtCliente.TabIndex = 3;
            this.TxtCliente.TabStop = false;
            this.TxtCliente.ThemeName = "TelerikMetroBlue";
            // 
            // radLabel1
            // 
            this.radLabel1.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.radLabel1.Location = new System.Drawing.Point(8, 37);
            this.radLabel1.Name = "radLabel1";
            this.radLabel1.Size = new System.Drawing.Size(40, 25);
            this.radLabel1.TabIndex = 4;
            this.radLabel1.Text = "DNI:";
            this.radLabel1.ThemeName = "TelerikMetroBlue";
            // 
            // TxtDni
            // 
            this.TxtDni.Controls.Add(this.radTextBox4);
            this.TxtDni.Enabled = false;
            this.TxtDni.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.TxtDni.Location = new System.Drawing.Point(164, 36);
            this.TxtDni.Name = "TxtDni";
            this.TxtDni.Size = new System.Drawing.Size(295, 26);
            this.TxtDni.TabIndex = 5;
            this.TxtDni.TabStop = false;
            this.TxtDni.ThemeName = "TelerikMetroBlue";
            // 
            // radTextBox4
            // 
            this.radTextBox4.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.radTextBox4.Location = new System.Drawing.Point(107, 29);
            this.radTextBox4.Name = "radTextBox4";
            this.radTextBox4.Size = new System.Drawing.Size(295, 26);
            this.radTextBox4.TabIndex = 9;
            this.radTextBox4.TabStop = false;
            this.radTextBox4.ThemeName = "TelerikMetroBlue";
            // 
            // radPanel3
            // 
            this.radPanel3.Controls.Add(this.TxtTelefono);
            this.radPanel3.Controls.Add(this.radLabel5);
            this.radPanel3.Controls.Add(this.LnkEditarCliente);
            this.radPanel3.Controls.Add(this.TxtSenias);
            this.radPanel3.Controls.Add(this.TxtCreditos);
            this.radPanel3.Controls.Add(this.TxtDni);
            this.radPanel3.Controls.Add(this.radLabel3);
            this.radPanel3.Controls.Add(this.radLabel2);
            this.radPanel3.Controls.Add(this.LblCliente);
            this.radPanel3.Controls.Add(this.TxtCliente);
            this.radPanel3.Controls.Add(this.radLabel1);
            this.radPanel3.Location = new System.Drawing.Point(12, 54);
            this.radPanel3.Name = "radPanel3";
            this.radPanel3.Size = new System.Drawing.Size(943, 108);
            this.radPanel3.TabIndex = 4;
            // 
            // TxtTelefono
            // 
            this.TxtTelefono.Controls.Add(this.radTextBox2);
            this.TxtTelefono.Enabled = false;
            this.TxtTelefono.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.TxtTelefono.Location = new System.Drawing.Point(164, 70);
            this.TxtTelefono.Name = "TxtTelefono";
            this.TxtTelefono.Size = new System.Drawing.Size(295, 26);
            this.TxtTelefono.TabIndex = 13;
            this.TxtTelefono.TabStop = false;
            this.TxtTelefono.ThemeName = "TelerikMetroBlue";
            // 
            // radTextBox2
            // 
            this.radTextBox2.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.radTextBox2.Location = new System.Drawing.Point(107, 29);
            this.radTextBox2.Name = "radTextBox2";
            this.radTextBox2.Size = new System.Drawing.Size(295, 26);
            this.radTextBox2.TabIndex = 9;
            this.radTextBox2.TabStop = false;
            this.radTextBox2.ThemeName = "TelerikMetroBlue";
            // 
            // radLabel5
            // 
            this.radLabel5.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.radLabel5.Location = new System.Drawing.Point(8, 71);
            this.radLabel5.Name = "radLabel5";
            this.radLabel5.Size = new System.Drawing.Size(75, 25);
            this.radLabel5.TabIndex = 12;
            this.radLabel5.Text = "Teléfono:";
            this.radLabel5.ThemeName = "TelerikMetroBlue";
            // 
            // LnkEditarCliente
            // 
            this.LnkEditarCliente.Enabled = false;
            this.LnkEditarCliente.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.LnkEditarCliente.LinkColor = System.Drawing.Color.DodgerBlue;
            this.LnkEditarCliente.Location = new System.Drawing.Point(826, 79);
            this.LnkEditarCliente.Name = "LnkEditarCliente";
            this.LnkEditarCliente.Size = new System.Drawing.Size(105, 23);
            this.LnkEditarCliente.TabIndex = 11;
            this.LnkEditarCliente.TabStop = true;
            this.LnkEditarCliente.Text = "Editar Cliente";
            this.LnkEditarCliente.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.LnkEditarCliente_LinkClicked);
            // 
            // TxtSenias
            // 
            this.TxtSenias.Controls.Add(this.radTextBox6);
            this.TxtSenias.Enabled = false;
            this.TxtSenias.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.TxtSenias.Location = new System.Drawing.Point(636, 5);
            this.TxtSenias.Name = "TxtSenias";
            this.TxtSenias.Size = new System.Drawing.Size(295, 26);
            this.TxtSenias.TabIndex = 10;
            this.TxtSenias.TabStop = false;
            this.TxtSenias.ThemeName = "TelerikMetroBlue";
            // 
            // radTextBox6
            // 
            this.radTextBox6.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.radTextBox6.Location = new System.Drawing.Point(107, 29);
            this.radTextBox6.Name = "radTextBox6";
            this.radTextBox6.Size = new System.Drawing.Size(295, 26);
            this.radTextBox6.TabIndex = 9;
            this.radTextBox6.TabStop = false;
            this.radTextBox6.ThemeName = "TelerikMetroBlue";
            // 
            // TxtCreditos
            // 
            this.TxtCreditos.Enabled = false;
            this.TxtCreditos.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.TxtCreditos.Location = new System.Drawing.Point(636, 36);
            this.TxtCreditos.Name = "TxtCreditos";
            this.TxtCreditos.Size = new System.Drawing.Size(295, 26);
            this.TxtCreditos.TabIndex = 8;
            this.TxtCreditos.TabStop = false;
            this.TxtCreditos.ThemeName = "TelerikMetroBlue";
            // 
            // radLabel3
            // 
            this.radLabel3.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.radLabel3.Location = new System.Drawing.Point(480, 37);
            this.radLabel3.Name = "radLabel3";
            this.radLabel3.Size = new System.Drawing.Size(129, 25);
            this.radLabel3.TabIndex = 7;
            this.radLabel3.Text = "Creditos a Favor:";
            this.radLabel3.ThemeName = "TelerikMetroBlue";
            // 
            // radLabel2
            // 
            this.radLabel2.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.radLabel2.Location = new System.Drawing.Point(480, 6);
            this.radLabel2.Name = "radLabel2";
            this.radLabel2.Size = new System.Drawing.Size(53, 25);
            this.radLabel2.TabIndex = 6;
            this.radLabel2.Text = "Señas:";
            this.radLabel2.ThemeName = "TelerikMetroBlue";
            // 
            // radPanel1
            // 
            this.radPanel1.Controls.Add(this.pnlMontoSenia);
            this.radPanel1.Controls.Add(this.TabSeñas);
            this.radPanel1.Location = new System.Drawing.Point(12, 168);
            this.radPanel1.Name = "radPanel1";
            this.radPanel1.Size = new System.Drawing.Size(943, 404);
            this.radPanel1.TabIndex = 5;
            // 
            // pnlMontoSenia
            // 
            this.pnlMontoSenia.Controls.Add(this.TxtMonto);
            this.pnlMontoSenia.Controls.Add(this.radButton1);
            this.pnlMontoSenia.Controls.Add(this.radLabel4);
            this.pnlMontoSenia.Location = new System.Drawing.Point(8, 5);
            this.pnlMontoSenia.Name = "pnlMontoSenia";
            this.pnlMontoSenia.Size = new System.Drawing.Size(345, 39);
            this.pnlMontoSenia.TabIndex = 8;
            // 
            // TxtMonto
            // 
            this.TxtMonto.AceptaNegativos = false;
            this.TxtMonto.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.TxtMonto.Location = new System.Drawing.Point(69, 8);
            this.TxtMonto.Name = "TxtMonto";
            this.TxtMonto.Size = new System.Drawing.Size(128, 25);
            this.TxtMonto.TabIndex = 2;
            this.TxtMonto.TabStop = false;
            this.TxtMonto.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            this.TxtMonto.KeyUp += new System.Windows.Forms.KeyEventHandler(this.TxtMonto_KeyUp);
            // 
            // radButton1
            // 
            this.radButton1.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.radButton1.Location = new System.Drawing.Point(204, 6);
            this.radButton1.Name = "radButton1";
            this.radButton1.Size = new System.Drawing.Size(111, 27);
            this.radButton1.TabIndex = 3;
            this.radButton1.Text = "Aceptar";
            this.radButton1.ThemeName = "TelerikMetroBlue";
            this.radButton1.Click += new System.EventHandler(this.radButton1_Click);
            // 
            // radLabel4
            // 
            this.radLabel4.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.radLabel4.Location = new System.Drawing.Point(3, 8);
            this.radLabel4.Name = "radLabel4";
            this.radLabel4.Size = new System.Drawing.Size(60, 25);
            this.radLabel4.TabIndex = 7;
            this.radLabel4.Text = "Monto:";
            this.radLabel4.ThemeName = "TelerikMetroBlue";
            // 
            // FrmCrearSenas
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(998, 680);
            this.Controls.Add(this.radPanel1);
            this.Controls.Add(this.radPanel3);
            this.Controls.Add(this.pnlBuscador);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
            this.Name = "FrmCrearSenas";
            // 
            // 
            // 
            this.RootElement.ApplyShapeToControl = true;
            this.Text = "";
            this.Load += new System.EventHandler(this.FrmCrearSenas_Load);
            ((System.ComponentModel.ISupportInitialize)(this.TabSeñas)).EndInit();
            this.TabSeñas.ResumeLayout(false);
            this.TabSeñasNueva.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.BtnGuardar)).EndInit();
            this.TabSeñasHistorial.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.GridSeñas.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.GridSeñas)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.LblCliente)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pnlBuscador)).EndInit();
            this.pnlBuscador.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radPanel2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.TxtCliente)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.TxtDni)).EndInit();
            this.TxtDni.ResumeLayout(false);
            this.TxtDni.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radTextBox4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radPanel3)).EndInit();
            this.radPanel3.ResumeLayout(false);
            this.radPanel3.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.TxtTelefono)).EndInit();
            this.TxtTelefono.ResumeLayout(false);
            this.TxtTelefono.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radTextBox2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel5)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.TxtSenias)).EndInit();
            this.TxtSenias.ResumeLayout(false);
            this.TxtSenias.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radTextBox6)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.TxtCreditos)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).EndInit();
            this.radPanel1.ResumeLayout(false);
            this.pnlMontoSenia.ResumeLayout(false);
            this.pnlMontoSenia.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.TxtMonto)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radButton1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this)).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()
        {
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn2 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn3 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn1 = new Telerik.WinControls.UI.GridViewCommandColumn();
            this.GridChoferes = new Telerik.WinControls.UI.RadGridView();
            ((System.ComponentModel.ISupportInitialize)(this.GridChoferes)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.GridChoferes.MasterTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            this.SuspendLayout();
            // 
            // GridChoferes
            // 
            this.GridChoferes.Location = new System.Drawing.Point(12, 45);
            // 
            // GridChoferes
            // 
            this.GridChoferes.MasterTemplate.AllowAddNewRow = false;
            this.GridChoferes.MasterTemplate.AllowColumnReorder = false;
            this.GridChoferes.MasterTemplate.AllowDragToGroup = false;
            this.GridChoferes.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
            gridViewTextBoxColumn1.FieldName = "Dni";
            gridViewTextBoxColumn1.FormatString = "";
            gridViewTextBoxColumn1.HeaderText = "Dni";
            gridViewTextBoxColumn1.Name = "Dni";
            gridViewTextBoxColumn1.Width = 196;
            gridViewTextBoxColumn2.FieldName = "Apellido";
            gridViewTextBoxColumn2.FormatString = "";
            gridViewTextBoxColumn2.HeaderText = "Apellido";
            gridViewTextBoxColumn2.Name = "Apellido";
            gridViewTextBoxColumn2.Width = 196;
            gridViewTextBoxColumn3.FieldName = "Nombre";
            gridViewTextBoxColumn3.FormatString = "";
            gridViewTextBoxColumn3.HeaderText = "Nombre";
            gridViewTextBoxColumn3.Name = "Nombre";
            gridViewTextBoxColumn3.Width = 143;
            gridViewCommandColumn1.DefaultText = "Seleccionar";
            gridViewCommandColumn1.HeaderText = "";
            gridViewCommandColumn1.MinWidth = 100;
            gridViewCommandColumn1.Name = "Seleccionar";
            gridViewCommandColumn1.UseDefaultText = true;
            gridViewCommandColumn1.Width = 100;
            this.GridChoferes.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn1,
            gridViewTextBoxColumn2,
            gridViewTextBoxColumn3,
            gridViewCommandColumn1});
            this.GridChoferes.Name = "GridChoferes";
            this.GridChoferes.Size = new System.Drawing.Size(654, 452);
            this.GridChoferes.TabIndex = 0;
            this.GridChoferes.Text = "radGridView1";
            this.GridChoferes.ThemeName = "TelerikMetro";
            this.GridChoferes.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.GridChoferes_CommandCellClick);
            this.GridChoferes.KeyUp += new System.Windows.Forms.KeyEventHandler(this.GridChoferes_KeyUp);
            // 
            // FrmSeleccionarChofer
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(678, 571);
            this.Controls.Add(this.GridChoferes);
            this.Name = "FrmSeleccionarChofer";
            // 
            // 
            // 
            this.RootElement.ApplyShapeToControl = true;
            this.Text = "Seleccionar Chofer";
            this.Load += new System.EventHandler(this.FrmSeleccionarChofer_Load);
            ((System.ComponentModel.ISupportInitialize)(this.GridChoferes.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.GridChoferes)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this)).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();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn2 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn3 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn4 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn5 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn6 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn7 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn8 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn1 = new Telerik.WinControls.UI.GridViewCommandColumn();
            Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn2 = new Telerik.WinControls.UI.GridViewCommandColumn();
            Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn3 = new Telerik.WinControls.UI.GridViewCommandColumn();
            Telerik.WinControls.Data.FilterDescriptor filterDescriptor1 = new Telerik.WinControls.Data.FilterDescriptor();
            this.editorialBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.EditorialDetalle = new LaPaz.Win.Controls.DetailCell.DetailsColumn();
            this.EditorialEditar = new LaPaz.Win.Controls.EditCell.EditColumn();
            this.EditorialEliminar = new LaPaz.Win.Controls.DeleteCell.DeleteColumn();
            this.detailsColumn1 = new LaPaz.Win.Controls.DetailCell.DetailsColumn();
            this.splitContainer1 = new System.Windows.Forms.SplitContainer();
            this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
            this.EditorialesPager = new Framework.WinForm.Controls.MetroPager();
            this.UcFiltrosEditoriales = new LaPaz.Win.Forms.Editorial.UcFiltrosEditorial();
            this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
            this.BtnCrearEditorial = new Telerik.WinControls.UI.RadButton();
            this.dgvEditoriales = new Telerik.WinControls.UI.RadGridView();
            this.ucProgressSpinner1 = new LaPaz.Win.Forms.Util.UcProgressSpinner();
            ((System.ComponentModel.ISupportInitialize)(this.editorialBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
            this.splitContainer1.Panel1.SuspendLayout();
            this.splitContainer1.Panel2.SuspendLayout();
            this.splitContainer1.SuspendLayout();
            this.tableLayoutPanel1.SuspendLayout();
            this.tableLayoutPanel2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.BtnCrearEditorial)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dgvEditoriales)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dgvEditoriales.MasterTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            this.SuspendLayout();
            // 
            // clienteBindingSource
            // 
            this.editorialBindingSource.DataSource = typeof(LaPaz.Entidades.Editorial);
            // 
            // EditorialDetalle
            // 
            this.EditorialDetalle.FillWeight = 31.2983F;
            this.EditorialDetalle.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.EditorialDetalle.HeaderText = "";
            this.EditorialDetalle.Name = "EditorialDetalle";
            this.EditorialDetalle.ReadOnly = true;
            this.EditorialDetalle.Resizable = System.Windows.Forms.DataGridViewTriState.True;
            this.EditorialDetalle.ToolTipText = "Detalle";
            this.EditorialDetalle.Width = 27;
            // 
            // EditorialEditar
            // 
            this.EditorialEditar.FillWeight = 34.15069F;
            this.EditorialEditar.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.EditorialEditar.HeaderText = "";
            this.EditorialEditar.Name = "EditorialEditar";
            this.EditorialEditar.ReadOnly = true;
            this.EditorialEditar.Resizable = System.Windows.Forms.DataGridViewTriState.True;
            this.EditorialEditar.ToolTipText = "Editar";
            this.EditorialEditar.Width = 29;
            // 
            // EditorialEliminar
            // 
            this.EditorialEliminar.FillWeight = 36.90251F;
            this.EditorialEliminar.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.EditorialEliminar.HeaderText = "";
            this.EditorialEliminar.Name = "EditorialEliminar";
            this.EditorialEliminar.ReadOnly = true;
            this.EditorialEliminar.Resizable = System.Windows.Forms.DataGridViewTriState.True;
            this.EditorialEliminar.ToolTipText = "Eliminar";
            this.EditorialEliminar.Width = 31;
            // 
            // detailsColumn1
            // 
            this.detailsColumn1.HeaderText = "";
            this.detailsColumn1.Name = "detailsColumn1";
            this.detailsColumn1.ReadOnly = true;
            this.detailsColumn1.Resizable = System.Windows.Forms.DataGridViewTriState.True;
            this.detailsColumn1.Width = 30;
            // 
            // splitContainer1
            // 
            this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
            this.splitContainer1.IsSplitterFixed = true;
            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.tableLayoutPanel1);
            // 
            // splitContainer1.Panel2
            // 
            this.splitContainer1.Panel2.Controls.Add(this.dgvEditoriales);
            this.splitContainer1.Size = new System.Drawing.Size(1174, 769);
            this.splitContainer1.SplitterDistance = 220;
            this.splitContainer1.TabIndex = 0;
            // 
            // 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.EditorialesPager, 0, 2);
            this.tableLayoutPanel1.Controls.Add(this.UcFiltrosEditoriales, 0, 1);
            this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel2, 0, 0);
            this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
            this.tableLayoutPanel1.Name = "tableLayoutPanel1";
            this.tableLayoutPanel1.RowCount = 3;
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 40F));
            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, 45F));
            this.tableLayoutPanel1.Size = new System.Drawing.Size(1174, 220);
            this.tableLayoutPanel1.TabIndex = 0;
            // 
            // EditorialesPager
            // 
            this.EditorialesPager.Anchor = System.Windows.Forms.AnchorStyles.Right;
            this.EditorialesPager.CurrentPage = 1;
            this.EditorialesPager.Location = new System.Drawing.Point(790, 178);
            this.EditorialesPager.Margin = new System.Windows.Forms.Padding(94, 3, 3, 3);
            this.EditorialesPager.Name = "EditorialesPager";
            this.EditorialesPager.PageSize = 50;
            this.EditorialesPager.PageTotal = 1;
            this.EditorialesPager.RefreshAction = null;
            this.EditorialesPager.RefreshActionAsync = null;
            this.EditorialesPager.Size = new System.Drawing.Size(381, 39);
            this.EditorialesPager.TabIndex = 11;
            // 
            // UcFiltrosClientes
            // 
            this.UcFiltrosEditoriales.Nombre = "";
            this.UcFiltrosEditoriales.Dock = System.Windows.Forms.DockStyle.Fill;
            this.UcFiltrosEditoriales.Location = new System.Drawing.Point(3, 43);
            this.UcFiltrosEditoriales.Name = "UcFiltrosEditoriales";
            this.UcFiltrosEditoriales.Size = new System.Drawing.Size(1168, 129);
            this.UcFiltrosEditoriales.TabIndex = 14;
            // 
            // tableLayoutPanel2
            // 
            this.tableLayoutPanel2.ColumnCount = 2;
            this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
            this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
            this.tableLayoutPanel2.Controls.Add(this.BtnCrearEditorial, 0, 0);
            this.tableLayoutPanel2.Controls.Add(this.ucProgressSpinner1, 1, 0);
            this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tableLayoutPanel2.Location = new System.Drawing.Point(3, 3);
            this.tableLayoutPanel2.Name = "tableLayoutPanel2";
            this.tableLayoutPanel2.RowCount = 1;
            this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
            this.tableLayoutPanel2.Size = new System.Drawing.Size(1168, 34);
            this.tableLayoutPanel2.TabIndex = 15;
            // 
            // BtnCrearEditorial
            // 
            this.BtnCrearEditorial.Anchor = System.Windows.Forms.AnchorStyles.Left;
            this.BtnCrearEditorial.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.BtnCrearEditorial.Location = new System.Drawing.Point(3, 3);
            this.BtnCrearEditorial.Margin = new System.Windows.Forms.Padding(3, 3, 40, 3);
            this.BtnCrearEditorial.Name = "BtnCrearEditorial";
            this.BtnCrearEditorial.Size = new System.Drawing.Size(75, 28);
            this.BtnCrearEditorial.TabIndex = 14;
            this.BtnCrearEditorial.Text = "Crear";
            this.BtnCrearEditorial.ThemeName = "TelerikMetroBlue";
            this.BtnCrearEditorial.Click += new System.EventHandler(this.BtnCrearEditorial_Click);
            // 
            // dgvEditoriales
            // 
            this.dgvEditoriales.Dock = System.Windows.Forms.DockStyle.Fill;
            this.dgvEditoriales.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.dgvEditoriales.Location = new System.Drawing.Point(0, 0);
            // 
            // dgvEditoriales
            // 
            this.dgvEditoriales.MasterTemplate.AllowAddNewRow = false;
            this.dgvEditoriales.MasterTemplate.AllowColumnChooser = false;
            this.dgvEditoriales.MasterTemplate.AllowColumnReorder = false;
            this.dgvEditoriales.MasterTemplate.AllowDeleteRow = false;
            this.dgvEditoriales.MasterTemplate.AllowDragToGroup = false;
            this.dgvEditoriales.MasterTemplate.AutoGenerateColumns = false;
            this.dgvEditoriales.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
            gridViewTextBoxColumn1.FieldName = "Id";
            gridViewTextBoxColumn1.HeaderText = "Id";
            gridViewTextBoxColumn1.IsVisible = false;
            gridViewTextBoxColumn1.Name = "Id";
            gridViewTextBoxColumn1.ReadOnly = true;
            gridViewTextBoxColumn2.FieldName = "Nombre";
            gridViewTextBoxColumn2.HeaderText = "Nombre";
            gridViewTextBoxColumn2.Name = "Nombre";
            gridViewTextBoxColumn2.ReadOnly = true;
            gridViewTextBoxColumn2.Width = 204;
            gridViewTextBoxColumn3.FieldName = "TE1";
            gridViewTextBoxColumn3.HeaderText = "Teléfono";
            gridViewTextBoxColumn3.Name = "Telefono";
            gridViewTextBoxColumn3.ReadOnly = true;
            gridViewTextBoxColumn3.Width = 135;
            gridViewTextBoxColumn4.FieldName = "TE2";
            gridViewTextBoxColumn4.HeaderText = "Tel. Alternativo";
            gridViewTextBoxColumn4.Name = "TelefonoAlt";
            gridViewTextBoxColumn4.ReadOnly = true;
            gridViewTextBoxColumn4.Width = 135;
            gridViewTextBoxColumn5.FieldName = "Domicilio";
            gridViewTextBoxColumn5.HeaderText = "Domicilio";
            gridViewTextBoxColumn5.Name = "Domicilio";
            gridViewTextBoxColumn5.ReadOnly = true;
            gridViewTextBoxColumn5.Width = 204;
            gridViewTextBoxColumn6.FieldName = "Email";
            gridViewTextBoxColumn6.HeaderText = "Email";
            gridViewTextBoxColumn6.Name = "Email";
            gridViewTextBoxColumn6.ReadOnly = true;
            gridViewTextBoxColumn6.Width = 118;
            gridViewCommandColumn1.HeaderText = "";
            gridViewCommandColumn1.Image = global::LaPaz.Win.Properties.Resources.View_Details;
            gridViewCommandColumn1.ImageLayout = System.Windows.Forms.ImageLayout.Center;
            gridViewCommandColumn1.MaxWidth = 30;
            gridViewCommandColumn1.MinWidth = 30;
            gridViewCommandColumn1.Name = "ColumnaDetalle";
            gridViewCommandColumn1.Width = 30;
            gridViewCommandColumn2.HeaderText = "";
            gridViewCommandColumn2.Image = global::LaPaz.Win.Properties.Resources.Data_Edit;
            gridViewCommandColumn2.ImageLayout = System.Windows.Forms.ImageLayout.Center;
            gridViewCommandColumn2.MaxWidth = 30;
            gridViewCommandColumn2.MinWidth = 30;
            gridViewCommandColumn2.Name = "ColumnaEditar";
            gridViewCommandColumn2.Width = 30;
            gridViewCommandColumn3.HeaderText = "";
            gridViewCommandColumn3.Image = global::LaPaz.Win.Properties.Resources.Garbage_Closed;
            gridViewCommandColumn3.ImageLayout = System.Windows.Forms.ImageLayout.Center;
            gridViewCommandColumn3.MaxWidth = 30;
            gridViewCommandColumn3.MinWidth = 30;
            gridViewCommandColumn3.Name = "ColumnaEliminar";
            gridViewCommandColumn3.Width = 30;
            this.dgvEditoriales.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn1,
            gridViewTextBoxColumn2,
            gridViewTextBoxColumn3,
            gridViewTextBoxColumn4,
            gridViewTextBoxColumn5,
            gridViewTextBoxColumn6,
            gridViewCommandColumn1,
            gridViewCommandColumn2,
            gridViewCommandColumn3});
            this.dgvEditoriales.MasterTemplate.EnableGrouping = false;
            filterDescriptor1.IsFilterEditor = true;
            filterDescriptor1.PropertyName = "Nombre";
            this.dgvEditoriales.MasterTemplate.FilterDescriptors.AddRange(new Telerik.WinControls.Data.FilterDescriptor[] {
            filterDescriptor1});
            this.dgvEditoriales.Name = "dgvEditoriales";
            this.dgvEditoriales.ReadOnly = true;
            this.dgvEditoriales.Size = new System.Drawing.Size(1174, 545);
            this.dgvEditoriales.TabIndex = 12;
            this.dgvEditoriales.ThemeName = "TelerikMetroBlue";
            this.dgvEditoriales.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.dgvClientes_CommandCellClick);
            // 
            // ucProgressSpinner1
            // 
            this.ucProgressSpinner1.Anchor = System.Windows.Forms.AnchorStyles.Right;
            this.ucProgressSpinner1.Location = new System.Drawing.Point(1003, 3);
            this.ucProgressSpinner1.Name = "ucProgressSpinner1";
            this.ucProgressSpinner1.Size = new System.Drawing.Size(162, 27);
            this.ucProgressSpinner1.TabIndex = 15;
            // 
            // FrmEditorialListado
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1174, 769);
            this.ControlBox = false;
            this.Controls.Add(this.splitContainer1);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
            this.Name = "FrmEditorialListado";
            // 
            // 
            // 
            this.RootElement.ApplyShapeToControl = true;
            this.Text = "Editoriales";
            this.Load += new System.EventHandler(this.FrmEditorialListado_Load);
            ((System.ComponentModel.ISupportInitialize)(this.editorialBindingSource)).EndInit();
            this.splitContainer1.Panel1.ResumeLayout(false);
            this.splitContainer1.Panel2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
            this.splitContainer1.ResumeLayout(false);
            this.tableLayoutPanel1.ResumeLayout(false);
            this.tableLayoutPanel2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.BtnCrearEditorial)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dgvEditoriales.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dgvEditoriales)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this)).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()
        {
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn2 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn3 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn4 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn5 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn6 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn7 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn8 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn9 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn10 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn1 = new Telerik.WinControls.UI.GridViewCommandColumn();
            this.dgvhistorial = new Telerik.WinControls.UI.RadGridView();
            this.BtnEliminarPago = new Telerik.WinControls.UI.RadButton();
            ((System.ComponentModel.ISupportInitialize)(this.dgvhistorial)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dgvhistorial.MasterTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.BtnEliminarPago)).BeginInit();
            this.SuspendLayout();
            // 
            // dgvhistorial
            // 
            this.dgvhistorial.AutoSizeRows = true;
            this.dgvhistorial.Font = new System.Drawing.Font("Consolas", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.dgvhistorial.Location = new System.Drawing.Point(3, 50);
            // 
            // dgvhistorial
            // 
            this.dgvhistorial.MasterTemplate.AllowAddNewRow = false;
            this.dgvhistorial.MasterTemplate.AllowColumnReorder = false;
            this.dgvhistorial.MasterTemplate.AllowDragToGroup = false;
            this.dgvhistorial.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
            gridViewTextBoxColumn1.FieldName = "FechaAlta";
            gridViewTextBoxColumn1.HeaderText = "Fecha";
            gridViewTextBoxColumn1.Name = "FechaAlta";
            gridViewTextBoxColumn1.Width = 93;
            gridViewTextBoxColumn2.FieldName = "Desde";
            gridViewTextBoxColumn2.HeaderText = "Desde";
            gridViewTextBoxColumn2.Name = "Desde";
            gridViewTextBoxColumn2.Width = 79;
            gridViewTextBoxColumn3.FieldName = "Hasta";
            gridViewTextBoxColumn3.HeaderText = "Hasta";
            gridViewTextBoxColumn3.Name = "Hasta";
            gridViewTextBoxColumn3.Width = 79;
            gridViewTextBoxColumn4.FieldName = "Numero";
            gridViewTextBoxColumn4.HeaderText = "Movil";
            gridViewTextBoxColumn4.Name = "Numero";
            gridViewTextBoxColumn4.Width = 67;
            gridViewTextBoxColumn5.FieldName = "Monto";
            gridViewTextBoxColumn5.HeaderText = "Monto";
            gridViewTextBoxColumn5.Name = "Monto";
            gridViewTextBoxColumn5.Width = 79;
            gridViewTextBoxColumn6.FieldName = "Efectivo";
            gridViewTextBoxColumn6.HeaderText = "Efectivo";
            gridViewTextBoxColumn6.Name = "Efectivo";
            gridViewTextBoxColumn6.Width = 79;
            gridViewTextBoxColumn7.FieldName = "Vales";
            gridViewTextBoxColumn7.HeaderText = "Vales";
            gridViewTextBoxColumn7.Name = "Vales";
            gridViewTextBoxColumn7.Width = 79;
            gridViewTextBoxColumn8.FieldName = "Taller";
            gridViewTextBoxColumn8.HeaderText = "Taller";
            gridViewTextBoxColumn8.Name = "Taller";
            gridViewTextBoxColumn8.Width = 79;
            gridViewTextBoxColumn9.FieldName = "Descuento";
            gridViewTextBoxColumn9.HeaderText = "Descuento";
            gridViewTextBoxColumn9.Name = "Descuento";
            gridViewTextBoxColumn9.Width = 79;
            gridViewTextBoxColumn10.FieldName = "Senia";
            gridViewTextBoxColumn10.HeaderText = "Senia";
            gridViewTextBoxColumn10.Name = "Senia";
            gridViewTextBoxColumn10.Width = 111;
            gridViewCommandColumn1.HeaderText = "";
            gridViewCommandColumn1.Image = global::GestionAdministrativa.Win.Properties.Resources.Garbage_Closed;
            gridViewCommandColumn1.IsVisible = false;
            gridViewCommandColumn1.MaxWidth = 25;
            gridViewCommandColumn1.MinWidth = 25;
            gridViewCommandColumn1.Name = "Delete";
            gridViewCommandColumn1.Width = 25;
            this.dgvhistorial.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn1,
            gridViewTextBoxColumn2,
            gridViewTextBoxColumn3,
            gridViewTextBoxColumn4,
            gridViewTextBoxColumn5,
            gridViewTextBoxColumn6,
            gridViewTextBoxColumn7,
            gridViewTextBoxColumn8,
            gridViewTextBoxColumn9,
            gridViewTextBoxColumn10,
            gridViewCommandColumn1});
            this.dgvhistorial.Name = "dgvhistorial";
            this.dgvhistorial.ReadOnly = true;
            this.dgvhistorial.Size = new System.Drawing.Size(837, 167);
            this.dgvhistorial.TabIndex = 0;
            this.dgvhistorial.Text = "radGridView1";
            this.dgvhistorial.ThemeName = "TelerikMetro";
            this.dgvhistorial.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.dgvhistorial_CommandCellClick);
            // 
            // BtnEliminarPago
            // 
            this.BtnEliminarPago.DialogResult = System.Windows.Forms.DialogResult.Cancel;
            this.BtnEliminarPago.Font = new System.Drawing.Font("Consolas", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.BtnEliminarPago.Location = new System.Drawing.Point(618, 3);
            this.BtnEliminarPago.Name = "BtnEliminarPago";
            this.BtnEliminarPago.Size = new System.Drawing.Size(222, 41);
            this.BtnEliminarPago.TabIndex = 8;
            this.BtnEliminarPago.Text = "Eliminar último pago";
            this.BtnEliminarPago.ThemeName = "TelerikMetro";
            this.BtnEliminarPago.Click += new System.EventHandler(this.BtnEliminarPago_Click);
            // 
            // ucHistorialPagosChofer
            // 
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
            this.Controls.Add(this.BtnEliminarPago);
            this.Controls.Add(this.dgvhistorial);
            this.Name = "ucHistorialPagosChofer";
            this.Size = new System.Drawing.Size(853, 219);
            this.Load += new System.EventHandler(this.ucHistorialPagosChofer_Load);
            ((System.ComponentModel.ISupportInitialize)(this.dgvhistorial.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dgvhistorial)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.BtnEliminarPago)).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();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn1  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewCommandColumn   gridViewCommandColumn1  = new Telerik.WinControls.UI.GridViewCommandColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn2  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn3  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn4  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewComboBoxColumn  gridViewComboBoxColumn1 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
     Telerik.WinControls.UI.GridViewCheckBoxColumn  gridViewCheckBoxColumn1 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     Telerik.WinControls.UI.GridViewBrowseColumn    gridViewBrowseColumn1   = new Telerik.WinControls.UI.GridViewBrowseColumn();
     Telerik.WinControls.UI.GridViewCommandColumn   gridViewCommandColumn2  = new Telerik.WinControls.UI.GridViewCommandColumn();
     Telerik.WinControls.UI.GridViewCheckBoxColumn  gridViewCheckBoxColumn2 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn5  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewDateTimeColumn  gridViewDateTimeColumn1 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
     Telerik.WinControls.UI.GridViewCheckBoxColumn  gridViewCheckBoxColumn3 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn6  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn7  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewCheckBoxColumn  gridViewCheckBoxColumn4 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     Telerik.WinControls.UI.TableViewDefinition     tableViewDefinition1    = new Telerik.WinControls.UI.TableViewDefinition();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(tb_MasterUser));
     this.radStatusStrip1                  = new Telerik.WinControls.UI.RadStatusStrip();
     this.radLabelElement1                 = new Telerik.WinControls.UI.RadLabelElement();
     this.panel1                           = new System.Windows.Forms.Panel();
     this.dgvData                          = new Telerik.WinControls.UI.RadGridView();
     this.office2010BlueTheme1             = new Telerik.WinControls.Themes.Office2010BlueTheme();
     this.radRibbonBarButtonGroup2         = new Telerik.WinControls.UI.RadRibbonBarButtonGroup();
     this.radRibbonBarButtonGroup5         = new Telerik.WinControls.UI.RadRibbonBarButtonGroup();
     this.radContextMenu1                  = new Telerik.WinControls.UI.RadContextMenu(this.components);
     this.radMenuSeparatorItem2            = new Telerik.WinControls.UI.RadMenuSeparatorItem();
     this.radContextMenuManager1           = new Telerik.WinControls.UI.RadContextMenuManager();
     this.contextMenuStrip1                = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.แสดงลายเซนToolStripMenuItem      = new System.Windows.Forms.ToolStripMenuItem();
     this.แสดงลายเซนทงหมดToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.radRibbonBar1                    = new Telerik.WinControls.UI.RadRibbonBar();
     this.ribbonTab1                       = new Telerik.WinControls.UI.RibbonTab();
     this.radRibbonBarGroup1               = new Telerik.WinControls.UI.RadRibbonBarGroup();
     this.btnNew                           = new Telerik.WinControls.UI.RadButtonElement();
     this.btnSave                          = new Telerik.WinControls.UI.RadButtonElement();
     this.radRibbonBarGroup2               = new Telerik.WinControls.UI.RadRibbonBarGroup();
     this.btnView                          = new Telerik.WinControls.UI.RadButtonElement();
     this.btnEdit                          = new Telerik.WinControls.UI.RadButtonElement();
     this.btnDelete                        = new Telerik.WinControls.UI.RadButtonElement();
     this.radRibbonBarGroup4               = new Telerik.WinControls.UI.RadRibbonBarGroup();
     this.btnImport                        = new Telerik.WinControls.UI.RadButtonElement();
     this.btnExport                        = new Telerik.WinControls.UI.RadButtonElement();
     this.radRibbonBarButtonGroup1         = new Telerik.WinControls.UI.RadRibbonBarButtonGroup();
     this.radRibbonBarGroup3               = new Telerik.WinControls.UI.RadRibbonBarGroup();
     this.btnRefresh                       = new Telerik.WinControls.UI.RadButtonElement();
     this.radRibbonBarGroup5               = new Telerik.WinControls.UI.RadRibbonBarGroup();
     this.radRibbonBarButtonGroup3         = new Telerik.WinControls.UI.RadRibbonBarButtonGroup();
     this.btnFilter1                       = new Telerik.WinControls.UI.RadButtonElement();
     this.btnUnfilter1                     = new Telerik.WinControls.UI.RadButtonElement();
     this.ribbonBarGroupSeparator1         = new Telerik.WinControls.UI.RibbonBarGroupSeparator();
     this.radRibbonBarGroup6               = new Telerik.WinControls.UI.RadRibbonBarGroup();
     this.radButtonElement1                = new Telerik.WinControls.UI.RadButtonElement();
     this.radMenuItem1                     = new Telerik.WinControls.UI.RadMenuItem();
     this.radMenuSeparatorItem1            = new Telerik.WinControls.UI.RadMenuSeparatorItem();
     this.radMenuItem2                     = new Telerik.WinControls.UI.RadMenuItem();
     this.btnFilter                        = new Telerik.WinControls.UI.RadButtonElement();
     this.Unfilter                         = new Telerik.WinControls.UI.RadButtonElement();
     this.RMenu3                           = new Telerik.WinControls.UI.RadMenuItem();
     this.RMenu4                           = new Telerik.WinControls.UI.RadMenuItem();
     this.RMenu5                           = new Telerik.WinControls.UI.RadMenuItem();
     this.RMenu6                           = new Telerik.WinControls.UI.RadMenuItem();
     ((System.ComponentModel.ISupportInitialize)(this.radStatusStrip1)).BeginInit();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgvData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgvData.MasterTemplate)).BeginInit();
     this.contextMenuStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radRibbonBar1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // radStatusStrip1
     //
     this.radStatusStrip1.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.radLabelElement1
     });
     this.radStatusStrip1.Location   = new System.Drawing.Point(0, 608);
     this.radStatusStrip1.Name       = "radStatusStrip1";
     this.radStatusStrip1.Size       = new System.Drawing.Size(805, 26);
     this.radStatusStrip1.SizingGrip = false;
     this.radStatusStrip1.TabIndex   = 1;
     //
     // radLabelElement1
     //
     this.radLabelElement1.Name = "radLabelElement1";
     this.radStatusStrip1.SetSpring(this.radLabelElement1, false);
     this.radLabelElement1.Text     = "Status : สังกัด/แผนก";
     this.radLabelElement1.TextWrap = true;
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.White;
     this.panel1.Controls.Add(this.dgvData);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(0, 160);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(805, 448);
     this.panel1.TabIndex = 2;
     //
     // dgvData
     //
     this.dgvData.BackColor = System.Drawing.Color.White;
     this.dgvData.ColumnChooserSortOrder = Telerik.WinControls.UI.RadSortOrder.Ascending;
     this.dgvData.ContextMenuStrip       = this.contextMenuStrip1;
     this.dgvData.Cursor       = System.Windows.Forms.Cursors.Default;
     this.dgvData.Dock         = System.Windows.Forms.DockStyle.Fill;
     this.dgvData.EnterKeyMode = Telerik.WinControls.UI.RadGridViewEnterKeyMode.EnterMovesToNextCell;
     this.dgvData.Font         = new System.Drawing.Font("Tahoma", 8.25F);
     this.dgvData.ForeColor    = System.Drawing.Color.Black;
     this.dgvData.ImeMode      = System.Windows.Forms.ImeMode.NoControl;
     this.dgvData.Location     = new System.Drawing.Point(0, 0);
     //
     //
     //
     this.dgvData.MasterTemplate.AddNewRowPosition            = Telerik.WinControls.UI.SystemRowPosition.Bottom;
     this.dgvData.MasterTemplate.AllowCellContextMenu         = false;
     this.dgvData.MasterTemplate.AllowColumnHeaderContextMenu = false;
     this.dgvData.MasterTemplate.AllowDeleteRow      = false;
     this.dgvData.MasterTemplate.AllowDragToGroup    = false;
     this.dgvData.MasterTemplate.AllowRowResize      = false;
     this.dgvData.MasterTemplate.AutoGenerateColumns = false;
     gridViewTextBoxColumn1.EnableExpressionEditor   = false;
     gridViewTextBoxColumn1.FieldName               = "No";
     gridViewTextBoxColumn1.HeaderText              = "ลำดับ";
     gridViewTextBoxColumn1.Name                    = "dgvNo";
     gridViewTextBoxColumn1.ReadOnly                = true;
     gridViewCommandColumn1.DefaultText             = "ลบรายการ";
     gridViewCommandColumn1.EnableExpressionEditor  = false;
     gridViewCommandColumn1.FieldName               = "Del";
     gridViewCommandColumn1.HeaderText              = "ลบรายการ";
     gridViewCommandColumn1.Name                    = "dgvDel";
     gridViewCommandColumn1.TextAlignment           = System.Drawing.ContentAlignment.MiddleCenter;
     gridViewCommandColumn1.UseDefaultText          = true;
     gridViewCommandColumn1.Width                   = 60;
     gridViewTextBoxColumn2.EnableExpressionEditor  = false;
     gridViewTextBoxColumn2.FieldName               = "UserID";
     gridViewTextBoxColumn2.HeaderText              = "ชื่อล็อกอินเข้าระบบ";
     gridViewTextBoxColumn2.Name                    = "UserID";
     gridViewTextBoxColumn2.Width                   = 105;
     gridViewTextBoxColumn3.EnableExpressionEditor  = false;
     gridViewTextBoxColumn3.FieldName               = "UserName";
     gridViewTextBoxColumn3.HeaderText              = "ชื่อ-นามสกุล";
     gridViewTextBoxColumn3.Name                    = "UserName";
     gridViewTextBoxColumn3.Width                   = 146;
     gridViewTextBoxColumn4.EnableExpressionEditor  = false;
     gridViewTextBoxColumn4.FieldName               = "Password";
     gridViewTextBoxColumn4.HeaderText              = "รหัสผ่าน";
     gridViewTextBoxColumn4.MaxLength               = 20;
     gridViewTextBoxColumn4.Name                    = "Password";
     gridViewTextBoxColumn4.Width                   = 84;
     gridViewComboBoxColumn1.AutoCompleteMode       = System.Windows.Forms.AutoCompleteMode.Append;
     gridViewComboBoxColumn1.DropDownStyle          = Telerik.WinControls.RadDropDownStyle.DropDown;
     gridViewComboBoxColumn1.EnableExpressionEditor = false;
     gridViewComboBoxColumn1.FieldName              = "Department";
     gridViewComboBoxColumn1.FilteringMode          = Telerik.WinControls.UI.GridViewFilteringMode.DisplayMember;
     gridViewComboBoxColumn1.HeaderText             = "สังกัด/แผนก";
     gridViewComboBoxColumn1.Name                   = "Department";
     gridViewComboBoxColumn1.ValueMember            = "Department";
     gridViewComboBoxColumn1.Width                  = 104;
     gridViewCheckBoxColumn1.EnableExpressionEditor = false;
     gridViewCheckBoxColumn1.FieldName              = "Signature_bit";
     gridViewCheckBoxColumn1.HeaderText             = "ลายเซ็น";
     gridViewCheckBoxColumn1.MinWidth               = 20;
     gridViewCheckBoxColumn1.Name                   = "Signature_bit";
     gridViewCheckBoxColumn1.ReadOnly               = true;
     gridViewBrowseColumn1.EnableExpressionEditor   = false;
     gridViewBrowseColumn1.FieldName                = "Browse";
     gridViewBrowseColumn1.HeaderText               = "เพิ่ม/แก้ไข ลายเซ็น";
     gridViewBrowseColumn1.Name                     = "Browse";
     gridViewBrowseColumn1.Width                    = 140;
     gridViewCommandColumn2.DefaultText             = "ลบลายเซ็น";
     gridViewCommandColumn2.EnableExpressionEditor  = false;
     gridViewCommandColumn2.FieldName               = "Del_Signature";
     gridViewCommandColumn2.HeaderText              = "ลบลายเซ็น";
     gridViewCommandColumn2.Name                    = "Del_Signature";
     gridViewCommandColumn2.TextAlignment           = System.Drawing.ContentAlignment.MiddleCenter;
     gridViewCommandColumn2.UseDefaultText          = true;
     gridViewCommandColumn2.Width                   = 66;
     gridViewCheckBoxColumn2.EnableExpressionEditor = false;
     gridViewCheckBoxColumn2.FieldName              = "Status";
     gridViewCheckBoxColumn2.HeaderText             = "สถานะ";
     gridViewCheckBoxColumn2.MinWidth               = 20;
     gridViewCheckBoxColumn2.Name                   = "Status";
     gridViewCheckBoxColumn2.Width                  = 65;
     gridViewTextBoxColumn5.EnableExpressionEditor  = false;
     gridViewTextBoxColumn5.FieldName               = "ModifyBy";
     gridViewTextBoxColumn5.HeaderText              = "สร้างโดย";
     gridViewTextBoxColumn5.Name                    = "CreateBy";
     gridViewTextBoxColumn5.ReadOnly                = true;
     gridViewTextBoxColumn5.Width                   = 80;
     gridViewDateTimeColumn1.EnableExpressionEditor = false;
     gridViewDateTimeColumn1.FieldName              = "ModifyDate";
     gridViewDateTimeColumn1.FormatString           = "{0:dd/MMM/yyyy}";
     gridViewDateTimeColumn1.HeaderText             = "วันที่สร้าง";
     gridViewDateTimeColumn1.Name                   = "CreateDate";
     gridViewDateTimeColumn1.ReadOnly               = true;
     gridViewDateTimeColumn1.Width                  = 95;
     gridViewCheckBoxColumn3.EnableExpressionEditor = false;
     gridViewCheckBoxColumn3.FieldName              = "C";
     gridViewCheckBoxColumn3.HeaderText             = "C";
     gridViewCheckBoxColumn3.IsVisible              = false;
     gridViewCheckBoxColumn3.MinWidth               = 20;
     gridViewCheckBoxColumn3.Name                   = "dgvC";
     gridViewCheckBoxColumn3.ReadOnly               = true;
     gridViewTextBoxColumn6.EnableExpressionEditor  = false;
     gridViewTextBoxColumn6.FieldName               = "id";
     gridViewTextBoxColumn6.HeaderText              = "id";
     gridViewTextBoxColumn6.IsVisible               = false;
     gridViewTextBoxColumn6.Name                    = "id";
     gridViewTextBoxColumn6.ReadOnly                = true;
     gridViewTextBoxColumn7.EnableExpressionEditor  = false;
     gridViewTextBoxColumn7.FieldName               = "Signature";
     gridViewTextBoxColumn7.HeaderText              = "Signature";
     gridViewTextBoxColumn7.IsVisible               = false;
     gridViewTextBoxColumn7.Name                    = "Signature";
     gridViewTextBoxColumn7.ReadOnly                = true;
     gridViewCheckBoxColumn4.EnableExpressionEditor = false;
     gridViewCheckBoxColumn4.FieldName              = "Sig_FlagDel";
     gridViewCheckBoxColumn4.HeaderText             = "Sig_FlagDel";
     gridViewCheckBoxColumn4.IsVisible              = false;
     gridViewCheckBoxColumn4.MinWidth               = 20;
     gridViewCheckBoxColumn4.Name                   = "Sig_FlagDel";
     this.dgvData.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewTextBoxColumn1,
         gridViewCommandColumn1,
         gridViewTextBoxColumn2,
         gridViewTextBoxColumn3,
         gridViewTextBoxColumn4,
         gridViewComboBoxColumn1,
         gridViewCheckBoxColumn1,
         gridViewBrowseColumn1,
         gridViewCommandColumn2,
         gridViewCheckBoxColumn2,
         gridViewTextBoxColumn5,
         gridViewDateTimeColumn1,
         gridViewCheckBoxColumn3,
         gridViewTextBoxColumn6,
         gridViewTextBoxColumn7,
         gridViewCheckBoxColumn4
     });
     this.dgvData.MasterTemplate.SelectionMode  = Telerik.WinControls.UI.GridViewSelectionMode.CellSelect;
     this.dgvData.MasterTemplate.ViewDefinition = tableViewDefinition1;
     this.dgvData.Name                   = "dgvData";
     this.dgvData.RightToLeft            = System.Windows.Forms.RightToLeft.No;
     this.dgvData.ShowGroupPanel         = false;
     this.dgvData.Size                   = new System.Drawing.Size(805, 448);
     this.dgvData.TabIndex               = 0;
     this.dgvData.ThemeName              = "Office2010Blue";
     this.dgvData.RowFormatting         += new Telerik.WinControls.UI.RowFormattingEventHandler(this.MasterTemplate_RowFormatting);
     this.dgvData.CellFormatting        += new Telerik.WinControls.UI.CellFormattingEventHandler(this.MasterTemplate_CellFormatting);
     this.dgvData.EditorRequired        += new Telerik.WinControls.UI.EditorRequiredEventHandler(this.dgvData_EditorRequired);
     this.dgvData.CellEditorInitialized += new Telerik.WinControls.UI.GridViewCellEventHandler(this.dgvData_CellEditorInitialized);
     this.dgvData.CellEndEdit           += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGridView1_CellEndEdit);
     this.dgvData.CellClick             += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGridView1_CellClick);
     this.dgvData.CellDoubleClick       += new Telerik.WinControls.UI.GridViewCellEventHandler(this.MasterTemplate_CellDoubleClick);
     this.dgvData.CellValueChanged      += new Telerik.WinControls.UI.GridViewCellEventHandler(this.MasterTemplate_CellValueChanged);
     this.dgvData.PreviewKeyDown        += new System.Windows.Forms.PreviewKeyDownEventHandler(this.radGridView1_PreviewKeyDown);
     //
     // radRibbonBarButtonGroup2
     //
     this.radRibbonBarButtonGroup2.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.btnFilter,
         this.Unfilter
     });
     this.radRibbonBarButtonGroup2.Name          = "radRibbonBarButtonGroup2";
     this.radRibbonBarButtonGroup2.Orientation   = System.Windows.Forms.Orientation.Vertical;
     this.radRibbonBarButtonGroup2.Padding       = new System.Windows.Forms.Padding(1);
     this.radRibbonBarButtonGroup2.ShowBackColor = false;
     this.radRibbonBarButtonGroup2.Text          = "radRibbonBarButtonGroup2";
     //
     // radRibbonBarButtonGroup5
     //
     this.radRibbonBarButtonGroup5.Name          = "radRibbonBarButtonGroup5";
     this.radRibbonBarButtonGroup5.Orientation   = System.Windows.Forms.Orientation.Vertical;
     this.radRibbonBarButtonGroup5.Padding       = new System.Windows.Forms.Padding(1);
     this.radRibbonBarButtonGroup5.ShowBackColor = false;
     this.radRibbonBarButtonGroup5.ShowBorder    = false;
     this.radRibbonBarButtonGroup5.Text          = "radRibbonBarButtonGroup4";
     //
     // radContextMenu1
     //
     this.radContextMenu1.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.RMenu3,
         this.radMenuSeparatorItem2,
         this.RMenu4,
         this.RMenu5,
         this.RMenu6
     });
     this.radContextMenu1.ThemeName = "Office2010Blue";
     //
     // radMenuSeparatorItem2
     //
     this.radMenuSeparatorItem2.Name          = "radMenuSeparatorItem2";
     this.radMenuSeparatorItem2.Text          = "radMenuSeparatorItem2";
     this.radMenuSeparatorItem2.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // 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(166, 70);
     //
     // แสดงลายเซนToolStripMenuItem
     //
     this.แสดงลายเซนToolStripMenuItem.Name   = "แสดงลายเซนToolStripMenuItem";
     this.แสดงลายเซนToolStripMenuItem.Size   = new System.Drawing.Size(165, 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(165, 22);
     this.แสดงลายเซนทงหมดToolStripMenuItem.Text   = "แสดงลายเซ็นทั้งหมด";
     this.แสดงลายเซนทงหมดToolStripMenuItem.Click += new System.EventHandler(this.แสดงลายเซนทงหมดToolStripMenuItem_Click);
     //
     // radRibbonBar1
     //
     this.radRibbonBar1.CommandTabs.AddRange(new Telerik.WinControls.RadItem[] {
         this.ribbonTab1
     });
     //
     //
     //
     this.radRibbonBar1.ExitButton.Text = "Exit";
     this.radRibbonBar1.ExitButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.radRibbonBar1.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radRibbonBar1.Location = new System.Drawing.Point(0, 0);
     this.radRibbonBar1.Name     = "radRibbonBar1";
     //
     //
     //
     this.radRibbonBar1.OptionsButton.Text = "Options";
     this.radRibbonBar1.OptionsButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.radRibbonBar1.OptionsButton.Visibility        = Telerik.WinControls.ElementVisibility.Hidden;
     //
     //
     //
     this.radRibbonBar1.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.radRibbonBar1.Size             = new System.Drawing.Size(805, 160);
     this.radRibbonBar1.StartButtonImage = ((System.Drawing.Image)(resources.GetObject("radRibbonBar1.StartButtonImage")));
     this.radRibbonBar1.StartMenuItems.AddRange(new Telerik.WinControls.RadItem[] {
         this.radMenuItem1,
         this.radMenuSeparatorItem1,
         this.radMenuItem2
     });
     this.radRibbonBar1.TabIndex  = 0;
     this.radRibbonBar1.Text      = "Department (สังกัด/แผนก)";
     this.radRibbonBar1.ThemeName = "Office2010Blue";
     this.radRibbonBar1.Click    += new System.EventHandler(this.radRibbonBar1_Click);
     //
     // ribbonTab1
     //
     this.ribbonTab1.IsSelected = true;
     this.ribbonTab1.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.radRibbonBarGroup1,
         this.radRibbonBarGroup2,
         this.radRibbonBarGroup4,
         this.radRibbonBarGroup3,
         this.radRibbonBarGroup5,
         this.radRibbonBarGroup6
     });
     this.ribbonTab1.Name        = "ribbonTab1";
     this.ribbonTab1.Text        = "Action";
     this.ribbonTab1.UseMnemonic = false;
     //
     // radRibbonBarGroup1
     //
     this.radRibbonBarGroup1.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.btnNew,
         this.btnSave
     });
     this.radRibbonBarGroup1.Name = "radRibbonBarGroup1";
     this.radRibbonBarGroup1.Text = "New List";
     //
     // btnNew
     //
     this.btnNew.Image             = ((System.Drawing.Image)(resources.GetObject("btnNew.Image")));
     this.btnNew.ImageAlignment    = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnNew.Name              = "btnNew";
     this.btnNew.Text              = "เพิ่มใหม่";
     this.btnNew.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnNew.Visibility        = Telerik.WinControls.ElementVisibility.Collapsed;
     this.btnNew.Click            += new System.EventHandler(this.btnNew_Click);
     //
     // btnSave
     //
     this.btnSave.Image             = ((System.Drawing.Image)(resources.GetObject("btnSave.Image")));
     this.btnSave.ImageAlignment    = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnSave.Name              = "btnSave";
     this.btnSave.Text              = "บันทึกรายการ";
     this.btnSave.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnSave.Click            += new System.EventHandler(this.btnSave_Click);
     //
     // radRibbonBarGroup2
     //
     this.radRibbonBarGroup2.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.btnView,
         this.btnEdit,
         this.btnDelete
     });
     this.radRibbonBarGroup2.Name = "radRibbonBarGroup2";
     this.radRibbonBarGroup2.Text = "Manage";
     //
     // btnView
     //
     this.btnView.Enabled           = false;
     this.btnView.Image             = ((System.Drawing.Image)(resources.GetObject("btnView.Image")));
     this.btnView.ImageAlignment    = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnView.Name              = "btnView";
     this.btnView.Text              = "แสดงรายการ";
     this.btnView.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnView.Click            += new System.EventHandler(this.btnView_Click);
     //
     // btnEdit
     //
     this.btnEdit.Image             = ((System.Drawing.Image)(resources.GetObject("btnEdit.Image")));
     this.btnEdit.ImageAlignment    = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnEdit.Name              = "btnEdit";
     this.btnEdit.Text              = "แก้ไขรายการ";
     this.btnEdit.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnEdit.Click            += new System.EventHandler(this.btnEdit_Click);
     //
     // btnDelete
     //
     this.btnDelete.Image             = ((System.Drawing.Image)(resources.GetObject("btnDelete.Image")));
     this.btnDelete.ImageAlignment    = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnDelete.Name              = "btnDelete";
     this.btnDelete.Text              = "ลบรายการ";
     this.btnDelete.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnDelete.Visibility        = Telerik.WinControls.ElementVisibility.Collapsed;
     this.btnDelete.Click            += new System.EventHandler(this.btnDelete_Click);
     //
     // radRibbonBarGroup4
     //
     this.radRibbonBarGroup4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(86)))), ((int)(((byte)(86)))), ((int)(((byte)(86)))));
     this.radRibbonBarGroup4.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.btnImport,
         this.btnExport,
         this.radRibbonBarButtonGroup1
     });
     this.radRibbonBarGroup4.Name = "radRibbonBarGroup4";
     this.radRibbonBarGroup4.Text = "Import / Export";
     //
     // btnImport
     //
     this.btnImport.Image             = ((System.Drawing.Image)(resources.GetObject("btnImport.Image")));
     this.btnImport.ImageAlignment    = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnImport.Name              = "btnImport";
     this.btnImport.SmallImage        = null;
     this.btnImport.Text              = "นำข้อมูลเข้า";
     this.btnImport.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnImport.Visibility        = Telerik.WinControls.ElementVisibility.Collapsed;
     this.btnImport.Click            += new System.EventHandler(this.btnImport_Click);
     //
     // btnExport
     //
     this.btnExport.Image             = ((System.Drawing.Image)(resources.GetObject("btnExport.Image")));
     this.btnExport.ImageAlignment    = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnExport.Name              = "btnExport";
     this.btnExport.Text              = "ส่งข้อมูลออก";
     this.btnExport.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnExport.Click            += new System.EventHandler(this.btnExport_Click);
     //
     // radRibbonBarButtonGroup1
     //
     this.radRibbonBarButtonGroup1.Name          = "radRibbonBarButtonGroup1";
     this.radRibbonBarButtonGroup1.Padding       = new System.Windows.Forms.Padding(1);
     this.radRibbonBarButtonGroup1.ShowBackColor = false;
     this.radRibbonBarButtonGroup1.ShowBorder    = false;
     this.radRibbonBarButtonGroup1.Text          = "radRibbonBarButtonGroup1";
     //
     // radRibbonBarGroup3
     //
     this.radRibbonBarGroup3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(135)))), ((int)(((byte)(135)))), ((int)(((byte)(135)))));
     this.radRibbonBarGroup3.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.btnRefresh
     });
     this.radRibbonBarGroup3.Name = "radRibbonBarGroup3";
     this.radRibbonBarGroup3.Text = "Page";
     //
     // btnRefresh
     //
     this.btnRefresh.ForeColor         = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(6)))), ((int)(((byte)(197)))));
     this.btnRefresh.Image             = ((System.Drawing.Image)(resources.GetObject("btnRefresh.Image")));
     this.btnRefresh.ImageAlignment    = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnRefresh.Name              = "btnRefresh";
     this.btnRefresh.Text              = "รีเฟรช";
     this.btnRefresh.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnRefresh.Click            += new System.EventHandler(this.btnCancel_Click);
     //
     // radRibbonBarGroup5
     //
     this.radRibbonBarGroup5.AutoSizeMode  = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.radRibbonBarGroup5.FitToSizeMode = Telerik.WinControls.RadFitToSizeMode.FitToParentContent;
     this.radRibbonBarGroup5.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.radRibbonBarButtonGroup3
     });
     this.radRibbonBarGroup5.Name = "radRibbonBarGroup5";
     this.radRibbonBarGroup5.Text = "Filter";
     //
     // radRibbonBarButtonGroup3
     //
     this.radRibbonBarButtonGroup3.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.btnFilter1,
         this.btnUnfilter1,
         this.ribbonBarGroupSeparator1
     });
     this.radRibbonBarButtonGroup3.Name          = "radRibbonBarButtonGroup3";
     this.radRibbonBarButtonGroup3.Orientation   = System.Windows.Forms.Orientation.Vertical;
     this.radRibbonBarButtonGroup3.Padding       = new System.Windows.Forms.Padding(1);
     this.radRibbonBarButtonGroup3.ShowBackColor = false;
     this.radRibbonBarButtonGroup3.ShowBorder    = false;
     this.radRibbonBarButtonGroup3.Text          = "radRibbonBarButtonGroup3";
     //
     // btnFilter1
     //
     this.btnFilter1.Image             = ((System.Drawing.Image)(resources.GetObject("btnFilter1.Image")));
     this.btnFilter1.Name              = "btnFilter1";
     this.btnFilter1.ShowBorder        = false;
     this.btnFilter1.Text              = "กรอง";
     this.btnFilter1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.btnFilter1.Click            += new System.EventHandler(this.btnFilter1_Click);
     //
     // btnUnfilter1
     //
     this.btnUnfilter1.Image             = ((System.Drawing.Image)(resources.GetObject("btnUnfilter1.Image")));
     this.btnUnfilter1.Name              = "btnUnfilter1";
     this.btnUnfilter1.ShowBorder        = false;
     this.btnUnfilter1.Text              = "ยกเลิก";
     this.btnUnfilter1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.btnUnfilter1.Click            += new System.EventHandler(this.btnUnfilter1_Click);
     //
     // ribbonBarGroupSeparator1
     //
     this.ribbonBarGroupSeparator1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.ribbonBarGroupSeparator1.Name      = "ribbonBarGroupSeparator1";
     this.ribbonBarGroupSeparator1.Text      = "ribbonBarGroupSeparator1";
     //
     // radRibbonBarGroup6
     //
     this.radRibbonBarGroup6.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.radButtonElement1
     });
     this.radRibbonBarGroup6.Name       = "radRibbonBarGroup6";
     this.radRibbonBarGroup6.Text       = "Contact";
     this.radRibbonBarGroup6.Visibility = Telerik.WinControls.ElementVisibility.Collapsed;
     //
     // radButtonElement1
     //
     this.radButtonElement1.Image             = ((System.Drawing.Image)(resources.GetObject("radButtonElement1.Image")));
     this.radButtonElement1.ImageAlignment    = System.Drawing.ContentAlignment.MiddleCenter;
     this.radButtonElement1.Name              = "radButtonElement1";
     this.radButtonElement1.Text              = "ผู้ติดต่อ";
     this.radButtonElement1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.radButtonElement1.Click            += new System.EventHandler(this.radButtonElement1_Click);
     //
     // radMenuItem1
     //
     this.radMenuItem1.Image  = ((System.Drawing.Image)(resources.GetObject("radMenuItem1.Image")));
     this.radMenuItem1.Name   = "radMenuItem1";
     this.radMenuItem1.Text   = "Exit";
     this.radMenuItem1.Click += new System.EventHandler(this.radMenuItem1_Click);
     //
     // radMenuSeparatorItem1
     //
     this.radMenuSeparatorItem1.Name          = "radMenuSeparatorItem1";
     this.radMenuSeparatorItem1.Text          = "radMenuSeparatorItem1";
     this.radMenuSeparatorItem1.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // radMenuItem2
     //
     this.radMenuItem2.Image  = ((System.Drawing.Image)(resources.GetObject("radMenuItem2.Image")));
     this.radMenuItem2.Name   = "radMenuItem2";
     this.radMenuItem2.Text   = "History View";
     this.radMenuItem2.Click += new System.EventHandler(this.radMenuItem2_Click);
     //
     // btnFilter
     //
     this.btnFilter.Image             = ((System.Drawing.Image)(resources.GetObject("btnFilter.Image")));
     this.btnFilter.Name              = "btnFilter";
     this.btnFilter.Text              = "Filter";
     this.btnFilter.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     //
     // Unfilter
     //
     this.Unfilter.Image             = ((System.Drawing.Image)(resources.GetObject("Unfilter.Image")));
     this.Unfilter.Name              = "Unfilter";
     this.Unfilter.Text              = "Un Filter";
     this.Unfilter.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     //
     // RMenu3
     //
     this.RMenu3.Font  = new System.Drawing.Font("Tahoma", 8.25F);
     this.RMenu3.Image = ((System.Drawing.Image)(resources.GetObject("RMenu3.Image")));
     this.RMenu3.Name  = "RMenu3";
     this.RMenu3.Text  = "แก้ไขผู้ติดต่อ";
     //
     // RMenu4
     //
     this.RMenu4.Font  = new System.Drawing.Font("Tahoma", 8.25F);
     this.RMenu4.Image = ((System.Drawing.Image)(resources.GetObject("RMenu4.Image")));
     this.RMenu4.Name  = "RMenu4";
     this.RMenu4.Text  = "เพิ่มผู้ขาย";
     //
     // RMenu5
     //
     this.RMenu5.Font  = new System.Drawing.Font("Tahoma", 8.25F);
     this.RMenu5.Image = ((System.Drawing.Image)(resources.GetObject("RMenu5.Image")));
     this.RMenu5.Name  = "RMenu5";
     this.RMenu5.Text  = "แก้ไข";
     //
     // RMenu6
     //
     this.RMenu6.Font  = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
     this.RMenu6.Image = ((System.Drawing.Image)(resources.GetObject("RMenu6.Image")));
     this.RMenu6.Name  = "RMenu6";
     this.RMenu6.Text  = "ลบรายการ";
     //
     // tb_MasterUser
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(805, 634);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.radStatusStrip1);
     this.Controls.Add(this.radRibbonBar1);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview    = true;
     this.MainMenuStrip = null;
     this.Name          = "tb_MasterUser";
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Department (สังกัด/แผนก)";
     this.Load           += new System.EventHandler(this.Unit_Load);
     this.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.Unit_PreviewKeyDown);
     ((System.ComponentModel.ISupportInitialize)(this.radStatusStrip1)).EndInit();
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dgvData.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgvData)).EndInit();
     this.contextMenuStrip1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.radRibbonBar1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Exemple #9
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();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn2  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn3  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn4  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn5  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn6  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn7  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn8  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn9  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn10 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn11 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn12 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn1  = new Telerik.WinControls.UI.GridViewCommandColumn();
     Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn2  = new Telerik.WinControls.UI.GridViewCommandColumn();
     Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn3  = new Telerik.WinControls.UI.GridViewCommandColumn();
     Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn4  = new Telerik.WinControls.UI.GridViewCommandColumn();
     Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn5  = new Telerik.WinControls.UI.GridViewCommandColumn();
     Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn6  = new Telerik.WinControls.UI.GridViewCommandColumn();
     this.splitContainer1   = new System.Windows.Forms.SplitContainer();
     this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
     this.UcFiltrosLibros   = new LaPaz.Win.Forms.Libros.UcFiltrosLibros();
     this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
     this.BtnCrearProveedor = new Telerik.WinControls.UI.RadButton();
     this.UcProgressSpinner = new LaPaz.Win.Forms.Util.UcProgressSpinner();
     this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
     this.ucEstadoTitulos1  = new LaPaz.Win.Forms.Libros.UcEstadoTitulos();
     this.TitulosPager      = new Framework.WinForm.Controls.MetroPager();
     this.GridLibros        = new Telerik.WinControls.UI.RadGridView();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.tableLayoutPanel1.SuspendLayout();
     this.tableLayoutPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.BtnCrearProveedor)).BeginInit();
     this.tableLayoutPanel3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GridLibros)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridLibros.MasterTemplate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // splitContainer1
     //
     this.splitContainer1.Dock            = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.FixedPanel      = System.Windows.Forms.FixedPanel.Panel1;
     this.splitContainer1.IsSplitterFixed = true;
     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.tableLayoutPanel1);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.GridLibros);
     this.splitContainer1.Size             = new System.Drawing.Size(1015, 582);
     this.splitContainer1.SplitterDistance = 250;
     this.splitContainer1.TabIndex         = 9;
     //
     // 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.UcFiltrosLibros, 0, 1);
     this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel2, 0, 0);
     this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel3, 0, 2);
     this.tableLayoutPanel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
     this.tableLayoutPanel1.Name     = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 3;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 40F));
     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, 52F));
     this.tableLayoutPanel1.Size     = new System.Drawing.Size(1015, 250);
     this.tableLayoutPanel1.TabIndex = 0;
     //
     // UcFiltrosLibros
     //
     this.UcFiltrosLibros.Activos             = true;
     this.UcFiltrosLibros.AutorNombre         = "";
     this.UcFiltrosLibros.BtnBuscarTexto      = "Buscar";
     this.UcFiltrosLibros.CodigoBarra         = "";
     this.UcFiltrosLibros.CodigoLibroCompleto = null;
     this.UcFiltrosLibros.CodigoProveedor     = null;
     this.UcFiltrosLibros.ConStock            = null;
     this.UcFiltrosLibros.Dock         = System.Windows.Forms.DockStyle.Fill;
     this.UcFiltrosLibros.EditorialId  = null;
     this.UcFiltrosLibros.ISBN         = "";
     this.UcFiltrosLibros.Location     = new System.Drawing.Point(4, 44);
     this.UcFiltrosLibros.Margin       = new System.Windows.Forms.Padding(4);
     this.UcFiltrosLibros.Name         = "UcFiltrosLibros";
     this.UcFiltrosLibros.NombreTitulo = "";
     this.UcFiltrosLibros.OchoDeMarzo  = null;
     this.UcFiltrosLibros.ProveedorId  = null;
     this.UcFiltrosLibros.Size         = new System.Drawing.Size(1007, 150);
     this.UcFiltrosLibros.TabIndex     = 16;
     this.UcFiltrosLibros.TemaId       = null;
     //
     // tableLayoutPanel2
     //
     this.tableLayoutPanel2.ColumnCount = 2;
     this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel2.Controls.Add(this.BtnCrearProveedor, 0, 0);
     this.tableLayoutPanel2.Controls.Add(this.UcProgressSpinner, 1, 0);
     this.tableLayoutPanel2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel2.Location = new System.Drawing.Point(3, 3);
     this.tableLayoutPanel2.Name     = "tableLayoutPanel2";
     this.tableLayoutPanel2.RowCount = 1;
     this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel2.Size     = new System.Drawing.Size(1009, 34);
     this.tableLayoutPanel2.TabIndex = 17;
     //
     // BtnCrearProveedor
     //
     this.BtnCrearProveedor.Anchor    = System.Windows.Forms.AnchorStyles.Left;
     this.BtnCrearProveedor.Font      = new System.Drawing.Font("Segoe UI", 11F);
     this.BtnCrearProveedor.Location  = new System.Drawing.Point(3, 3);
     this.BtnCrearProveedor.Name      = "BtnCrearProveedor";
     this.BtnCrearProveedor.Size      = new System.Drawing.Size(75, 27);
     this.BtnCrearProveedor.TabIndex  = 16;
     this.BtnCrearProveedor.Text      = "Crear";
     this.BtnCrearProveedor.ThemeName = "TelerikMetroBlue";
     this.BtnCrearProveedor.Click    += new System.EventHandler(this.BtnCrearLibro_Click);
     //
     // UcProgressSpinner
     //
     this.UcProgressSpinner.Anchor   = System.Windows.Forms.AnchorStyles.Right;
     this.UcProgressSpinner.Location = new System.Drawing.Point(843, 4);
     this.UcProgressSpinner.Margin   = new System.Windows.Forms.Padding(4);
     this.UcProgressSpinner.Name     = "UcProgressSpinner";
     this.UcProgressSpinner.Size     = new System.Drawing.Size(162, 25);
     this.UcProgressSpinner.TabIndex = 17;
     //
     // tableLayoutPanel3
     //
     this.tableLayoutPanel3.ColumnCount = 2;
     this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel3.Controls.Add(this.ucEstadoTitulos1, 0, 0);
     this.tableLayoutPanel3.Controls.Add(this.TitulosPager, 1, 0);
     this.tableLayoutPanel3.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel3.Location = new System.Drawing.Point(3, 201);
     this.tableLayoutPanel3.Name     = "tableLayoutPanel3";
     this.tableLayoutPanel3.RowCount = 1;
     this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle());
     this.tableLayoutPanel3.Size     = new System.Drawing.Size(1009, 46);
     this.tableLayoutPanel3.TabIndex = 18;
     //
     // ucEstadoTitulos1
     //
     this.ucEstadoTitulos1.Anchor   = System.Windows.Forms.AnchorStyles.Left;
     this.ucEstadoTitulos1.Location = new System.Drawing.Point(4, 13);
     this.ucEstadoTitulos1.Margin   = new System.Windows.Forms.Padding(4);
     this.ucEstadoTitulos1.Name     = "ucEstadoTitulos1";
     this.ucEstadoTitulos1.Size     = new System.Drawing.Size(266, 24);
     this.ucEstadoTitulos1.TabIndex = 0;
     //
     // TitulosPager
     //
     this.TitulosPager.Anchor             = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.TitulosPager.CurrentPage        = 1;
     this.TitulosPager.Location           = new System.Drawing.Point(627, 4);
     this.TitulosPager.Margin             = new System.Windows.Forms.Padding(4);
     this.TitulosPager.Name               = "TitulosPager";
     this.TitulosPager.PageSize           = 50;
     this.TitulosPager.PageTotal          = 1;
     this.TitulosPager.RefreshAction      = null;
     this.TitulosPager.RefreshActionAsync = null;
     this.TitulosPager.Size               = new System.Drawing.Size(378, 43);
     this.TitulosPager.TabIndex           = 14;
     //
     // GridLibros
     //
     this.GridLibros.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.GridLibros.Font     = new System.Drawing.Font("Segoe UI", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
     this.GridLibros.Location = new System.Drawing.Point(0, 0);
     //
     // GridLibros
     //
     this.GridLibros.MasterTemplate.AutoGenerateColumns = false;
     this.GridLibros.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     gridViewTextBoxColumn1.FieldName           = "Id";
     gridViewTextBoxColumn1.HeaderText          = "Id";
     gridViewTextBoxColumn1.IsVisible           = false;
     gridViewTextBoxColumn1.Name                = "Id";
     gridViewTextBoxColumn1.ReadOnly            = true;
     gridViewTextBoxColumn1.Width               = 136;
     gridViewTextBoxColumn2.FieldName           = "Cod";
     gridViewTextBoxColumn2.HeaderText          = "Código";
     gridViewTextBoxColumn2.Name                = "Codigo";
     gridViewTextBoxColumn2.Width               = 97;
     gridViewTextBoxColumn3.FieldName           = "NombreTitulo";
     gridViewTextBoxColumn3.HeaderText          = "Título";
     gridViewTextBoxColumn3.Name                = "NombreTitulo";
     gridViewTextBoxColumn3.ReadOnly            = true;
     gridViewTextBoxColumn3.Width               = 201;
     gridViewTextBoxColumn4.FieldName           = "AutorNombre";
     gridViewTextBoxColumn4.HeaderText          = "Autor";
     gridViewTextBoxColumn4.Name                = "AutorNombre";
     gridViewTextBoxColumn4.Width               = 96;
     gridViewTextBoxColumn5.FieldName           = "EditorialNombre";
     gridViewTextBoxColumn5.HeaderText          = "Editorial";
     gridViewTextBoxColumn5.Name                = "EditorialNombre";
     gridViewTextBoxColumn5.Width               = 86;
     gridViewTextBoxColumn6.FieldName           = "PrecioVentaTitulo";
     gridViewTextBoxColumn6.FormatString        = "{0:c2}";
     gridViewTextBoxColumn6.HeaderText          = "Precio";
     gridViewTextBoxColumn6.Name                = "PrecioVentaTitulo";
     gridViewTextBoxColumn6.ReadOnly            = true;
     gridViewTextBoxColumn6.Width               = 81;
     gridViewTextBoxColumn7.FieldName           = "FechaModificacion";
     gridViewTextBoxColumn7.FormatString        = "{0:dd/MM/yyyy}";
     gridViewTextBoxColumn7.HeaderText          = "Modificación";
     gridViewTextBoxColumn7.Name                = "FechaModificacion";
     gridViewTextBoxColumn7.Width               = 75;
     gridViewTextBoxColumn8.FieldName           = "UsuarioUltimoPrecio";
     gridViewTextBoxColumn8.HeaderText          = "Operador";
     gridViewTextBoxColumn8.Name                = "UsuarioUltimoPrecio";
     gridViewTextBoxColumn8.Width               = 58;
     gridViewTextBoxColumn9.FieldName           = "TituloStockStkPr";
     gridViewTextBoxColumn9.HeaderText          = "St. Pr.";
     gridViewTextBoxColumn9.MaxWidth            = 40;
     gridViewTextBoxColumn9.MinWidth            = 40;
     gridViewTextBoxColumn9.Name                = "StockPropio";
     gridViewTextBoxColumn9.ReadOnly            = true;
     gridViewTextBoxColumn9.Width               = 40;
     gridViewTextBoxColumn10.FieldName          = "TituloStockStkCn";
     gridViewTextBoxColumn10.HeaderText         = "St. Cn.";
     gridViewTextBoxColumn10.MaxWidth           = 40;
     gridViewTextBoxColumn10.MinWidth           = 40;
     gridViewTextBoxColumn10.Name               = "StockConsignado";
     gridViewTextBoxColumn10.ReadOnly           = true;
     gridViewTextBoxColumn10.Width              = 40;
     gridViewTextBoxColumn11.FieldName          = "TituloStockStkPrViejo";
     gridViewTextBoxColumn11.HeaderText         = "PR 8";
     gridViewTextBoxColumn11.MaxWidth           = 40;
     gridViewTextBoxColumn11.MinWidth           = 40;
     gridViewTextBoxColumn11.Name               = "StockPropioViejo";
     gridViewTextBoxColumn11.Width              = 40;
     gridViewTextBoxColumn12.FieldName          = "TituloStockStkCnViejo";
     gridViewTextBoxColumn12.HeaderText         = "CN 8";
     gridViewTextBoxColumn12.MaxWidth           = 40;
     gridViewTextBoxColumn12.MinWidth           = 40;
     gridViewTextBoxColumn12.Name               = "StockConsignadoViejo";
     gridViewTextBoxColumn12.Width              = 40;
     gridViewCommandColumn1.HeaderText          = "";
     gridViewCommandColumn1.Image               = global::LaPaz.Win.Properties.Resources.View_Details;
     gridViewCommandColumn1.ImageLayout         = System.Windows.Forms.ImageLayout.Center;
     gridViewCommandColumn1.MaxWidth            = 30;
     gridViewCommandColumn1.MinWidth            = 30;
     gridViewCommandColumn1.Name                = "ColumnaDetalle";
     gridViewCommandColumn1.Width               = 30;
     gridViewCommandColumn2.HeaderText          = "";
     gridViewCommandColumn2.Image               = global::LaPaz.Win.Properties.Resources.Data_Edit;
     gridViewCommandColumn2.ImageLayout         = System.Windows.Forms.ImageLayout.Center;
     gridViewCommandColumn2.MaxWidth            = 30;
     gridViewCommandColumn2.MinWidth            = 30;
     gridViewCommandColumn2.Name                = "ColumnaEditar";
     gridViewCommandColumn2.Width               = 30;
     gridViewCommandColumn3.HeaderText          = "";
     gridViewCommandColumn3.HeaderTextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
     gridViewCommandColumn3.Image               = global::LaPaz.Win.Properties.Resources.Garbage_Closed;
     gridViewCommandColumn3.ImageLayout         = System.Windows.Forms.ImageLayout.Center;
     gridViewCommandColumn3.MaxWidth            = 30;
     gridViewCommandColumn3.MinWidth            = 30;
     gridViewCommandColumn3.Name                = "ColumnaEliminar";
     gridViewCommandColumn3.Width               = 30;
     gridViewCommandColumn4.HeaderText          = "";
     gridViewCommandColumn4.Image               = global::LaPaz.Win.Properties.Resources.Data_Files;
     gridViewCommandColumn4.ImageLayout         = System.Windows.Forms.ImageLayout.Center;
     gridViewCommandColumn4.MaxWidth            = 30;
     gridViewCommandColumn4.MinWidth            = 30;
     gridViewCommandColumn4.Name                = "ColumnaStock";
     gridViewCommandColumn4.Width               = 30;
     gridViewCommandColumn5.HeaderText          = "";
     gridViewCommandColumn5.Image               = global::LaPaz.Win.Properties.Resources.reporte;
     gridViewCommandColumn5.MaxWidth            = 30;
     gridViewCommandColumn5.MinWidth            = 30;
     gridViewCommandColumn5.Name                = "ColumnaReporte";
     gridViewCommandColumn5.Width               = 30;
     gridViewCommandColumn6.HeaderText          = "";
     gridViewCommandColumn6.MaxWidth            = 5;
     gridViewCommandColumn6.Name                = "column1";
     gridViewCommandColumn6.Width               = 5;
     this.GridLibros.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewTextBoxColumn1,
         gridViewTextBoxColumn2,
         gridViewTextBoxColumn3,
         gridViewTextBoxColumn4,
         gridViewTextBoxColumn5,
         gridViewTextBoxColumn6,
         gridViewTextBoxColumn7,
         gridViewTextBoxColumn8,
         gridViewTextBoxColumn9,
         gridViewTextBoxColumn10,
         gridViewTextBoxColumn11,
         gridViewTextBoxColumn12,
         gridViewCommandColumn1,
         gridViewCommandColumn2,
         gridViewCommandColumn3,
         gridViewCommandColumn4,
         gridViewCommandColumn5,
         gridViewCommandColumn6
     });
     this.GridLibros.MasterTemplate.EnableGrouping = false;
     this.GridLibros.Name                = "GridLibros";
     this.GridLibros.ReadOnly            = true;
     this.GridLibros.Size                = new System.Drawing.Size(1015, 328);
     this.GridLibros.TabIndex            = 12;
     this.GridLibros.ThemeName           = "TelerikMetroBlue";
     this.GridLibros.RowFormatting      += new Telerik.WinControls.UI.RowFormattingEventHandler(this.GridLibros_RowFormatting);
     this.GridLibros.CommandCellClick   += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.GridLibros_CommandCellClick);
     this.GridLibros.ContextMenuOpening += new Telerik.WinControls.UI.ContextMenuOpeningEventHandler(this.GridLibros_ContextMenuOpening);
     //
     // FrmLibrosListado
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1015, 582);
     this.ControlBox          = false;
     this.Controls.Add(this.splitContainer1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.KeyPreview      = true;
     this.Name            = "FrmLibrosListado";
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.Text     = "Libros";
     this.Load    += new System.EventHandler(this.FrmLibrosListado_Load);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.FrmLibrosListado_KeyDown);
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
     this.splitContainer1.ResumeLayout(false);
     this.tableLayoutPanel1.ResumeLayout(false);
     this.tableLayoutPanel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.BtnCrearProveedor)).EndInit();
     this.tableLayoutPanel3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.GridLibros.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridLibros)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
     this.ResumeLayout(false);
 }
Exemple #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();
     Telerik.WinControls.UI.GridViewDecimalColumn   gridViewDecimalColumn1  = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewDateTimeColumn  gridViewDateTimeColumn1 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn1  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn2  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewDecimalColumn   gridViewDecimalColumn2  = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn3  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewCommandColumn   gridViewCommandColumn1  = new Telerik.WinControls.UI.GridViewCommandColumn();
     Telerik.WinControls.UI.GridViewCommandColumn   gridViewCommandColumn2  = new Telerik.WinControls.UI.GridViewCommandColumn();
     Telerik.WinControls.UI.TableViewDefinition     tableViewDefinition1    = new Telerik.WinControls.UI.TableViewDefinition();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmMain));
     this.mainradStatusStrip          = new Telerik.WinControls.UI.RadStatusStrip();
     this.radLabelElement1            = new Telerik.WinControls.UI.RadLabelElement();
     this.mainradMenu                 = new Telerik.WinControls.UI.RadMenu();
     this.timer1                      = new System.Windows.Forms.Timer(this.components);
     this.telerikMetroTheme1          = new Telerik.WinControls.Themes.TelerikMetroTheme();
     this.radGridView1                = new Telerik.WinControls.UI.RadGridView();
     this.actionlogBindingSource      = new System.Windows.Forms.BindingSource(this.components);
     this.sinarekDataSet              = new NB.sinarekDataSet();
     this.radGroupBox1                = new Telerik.WinControls.UI.RadGroupBox();
     this.txtPwd                      = new Telerik.WinControls.UI.RadMaskedEditBox();
     this.btnChange                   = new Telerik.WinControls.UI.RadButton();
     this.txtKeterangan               = new Telerik.WinControls.UI.RadMaskedEditBox();
     this.actionlogTableAdapter       = new NB.sinarekDataSetTableAdapters.actionlogTableAdapter();
     this.visualStudio2012LightTheme1 = new Telerik.WinControls.Themes.VisualStudio2012LightTheme();
     ((System.ComponentModel.ISupportInitialize)(this.mainradStatusStrip)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mainradMenu)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1.MasterTemplate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.actionlogBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.sinarekDataSet)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).BeginInit();
     this.radGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtPwd)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnChange)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtKeterangan)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // mainradStatusStrip
     //
     this.mainradStatusStrip.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.radLabelElement1
     });
     this.mainradStatusStrip.Location  = new System.Drawing.Point(0, 602);
     this.mainradStatusStrip.Name      = "mainradStatusStrip";
     this.mainradStatusStrip.Size      = new System.Drawing.Size(966, 35);
     this.mainradStatusStrip.TabIndex  = 1;
     this.mainradStatusStrip.Text      = "radStatusStrip1";
     this.mainradStatusStrip.ThemeName = "Windows8";
     //
     // radLabelElement1
     //
     this.radLabelElement1.Font   = new System.Drawing.Font("Segoe UI", 12F);
     this.radLabelElement1.Margin = new System.Windows.Forms.Padding(1);
     this.radLabelElement1.Name   = "radLabelElement1";
     this.mainradStatusStrip.SetSpring(this.radLabelElement1, false);
     this.radLabelElement1.Text     = "radLabelElement1";
     this.radLabelElement1.TextWrap = true;
     //
     // mainradMenu
     //
     this.mainradMenu.Font      = new System.Drawing.Font("Segoe UI", 12F);
     this.mainradMenu.Location  = new System.Drawing.Point(0, 0);
     this.mainradMenu.Name      = "mainradMenu";
     this.mainradMenu.Padding   = new System.Windows.Forms.Padding(2, 2, 0, 0);
     this.mainradMenu.Size      = new System.Drawing.Size(966, 31);
     this.mainradMenu.TabIndex  = 2;
     this.mainradMenu.Text      = "radMenu1";
     this.mainradMenu.ThemeName = "Windows8";
     this.mainradMenu.Click    += new System.EventHandler(this.mainradMenu_Click);
     //
     // timer1
     //
     this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
     //
     // radGridView1
     //
     this.radGridView1.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.radGridView1.AutoSizeRows = true;
     this.radGridView1.Font         = new System.Drawing.Font("Segoe UI", 10F);
     this.radGridView1.Location     = new System.Drawing.Point(12, 41);
     //
     //
     //
     this.radGridView1.MasterTemplate.AllowAddNewRow      = false;
     this.radGridView1.MasterTemplate.AllowColumnReorder  = false;
     this.radGridView1.MasterTemplate.AutoGenerateColumns = false;
     gridViewDecimalColumn1.DataType         = typeof(int);
     gridViewDecimalColumn1.FieldName        = "actionid";
     gridViewDecimalColumn1.HeaderText       = "actionid";
     gridViewDecimalColumn1.IsAutoGenerated  = true;
     gridViewDecimalColumn1.IsVisible        = false;
     gridViewDecimalColumn1.Name             = "actionid";
     gridViewDateTimeColumn1.FieldName       = "Tanggal";
     gridViewDateTimeColumn1.FormatString    = "{0:dd MMM yy hh:mm tt}";
     gridViewDateTimeColumn1.HeaderText      = "Tanggal";
     gridViewDateTimeColumn1.IsAutoGenerated = true;
     gridViewDateTimeColumn1.Name            = "Tanggal";
     gridViewDateTimeColumn1.Width           = 150;
     gridViewTextBoxColumn1.FieldName        = "createdby";
     gridViewTextBoxColumn1.HeaderText       = "Nama";
     gridViewTextBoxColumn1.Name             = "createdby";
     gridViewTextBoxColumn1.Width            = 100;
     gridViewTextBoxColumn2.FieldName        = "keterangan";
     gridViewTextBoxColumn2.HeaderText       = "Keterangan";
     gridViewTextBoxColumn2.IsAutoGenerated  = true;
     gridViewTextBoxColumn2.Name             = "keterangan";
     gridViewTextBoxColumn2.Width            = 250;
     gridViewTextBoxColumn2.WrapText         = true;
     gridViewDecimalColumn2.DataType         = typeof(short);
     gridViewDecimalColumn2.FieldName        = "statusid";
     gridViewDecimalColumn2.HeaderText       = "statusid";
     gridViewDecimalColumn2.IsAutoGenerated  = true;
     gridViewDecimalColumn2.IsVisible        = false;
     gridViewDecimalColumn2.Name             = "statusid";
     gridViewTextBoxColumn3.FieldName        = "actionby";
     gridViewTextBoxColumn3.HeaderText       = "";
     gridViewTextBoxColumn3.IsAutoGenerated  = true;
     gridViewTextBoxColumn3.IsVisible        = false;
     gridViewTextBoxColumn3.Name             = "actionby";
     gridViewCommandColumn1.DefaultText      = "fixed";
     gridViewCommandColumn1.HeaderText       = "";
     gridViewCommandColumn1.Name             = "cmdFixed";
     gridViewCommandColumn1.UseDefaultText   = true;
     gridViewCommandColumn1.Width            = 80;
     gridViewCommandColumn2.DefaultText      = "Batal";
     gridViewCommandColumn2.HeaderText       = "";
     gridViewCommandColumn2.Name             = "cmd";
     gridViewCommandColumn2.UseDefaultText   = true;
     gridViewCommandColumn2.Width            = 80;
     this.radGridView1.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewDecimalColumn1,
         gridViewDateTimeColumn1,
         gridViewTextBoxColumn1,
         gridViewTextBoxColumn2,
         gridViewDecimalColumn2,
         gridViewTextBoxColumn3,
         gridViewCommandColumn1,
         gridViewCommandColumn2
     });
     this.radGridView1.MasterTemplate.DataSource     = this.actionlogBindingSource;
     this.radGridView1.MasterTemplate.ViewDefinition = tableViewDefinition1;
     this.radGridView1.Name              = "radGridView1";
     this.radGridView1.Padding           = new System.Windows.Forms.Padding(5);
     this.radGridView1.ReadOnly          = true;
     this.radGridView1.ShowGroupPanel    = false;
     this.radGridView1.Size              = new System.Drawing.Size(709, 229);
     this.radGridView1.TabIndex          = 4;
     this.radGridView1.Text              = "radGridView1";
     this.radGridView1.ThemeName         = "Windows8";
     this.radGridView1.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.radGridView1_CommandCellClick);
     //
     // actionlogBindingSource
     //
     this.actionlogBindingSource.DataMember = "actionlog";
     this.actionlogBindingSource.DataSource = this.sinarekDataSet;
     //
     // sinarekDataSet
     //
     this.sinarekDataSet.DataSetName             = "sinarekDataSet";
     this.sinarekDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // radGroupBox1
     //
     this.radGroupBox1.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.radGroupBox1.Anchor         = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.radGroupBox1.Controls.Add(this.txtPwd);
     this.radGroupBox1.Controls.Add(this.btnChange);
     this.radGroupBox1.Font       = new System.Drawing.Font("Segoe UI", 10F);
     this.radGroupBox1.HeaderText = "Change Password";
     this.radGroupBox1.Location   = new System.Drawing.Point(735, 43);
     this.radGroupBox1.Name       = "radGroupBox1";
     this.radGroupBox1.Size       = new System.Drawing.Size(222, 96);
     this.radGroupBox1.TabIndex   = 6;
     this.radGroupBox1.Text       = "Change Password";
     this.radGroupBox1.ThemeName  = "Windows8";
     //
     // txtPwd
     //
     this.txtPwd.Font      = new System.Drawing.Font("Segoe UI", 10F);
     this.txtPwd.Location  = new System.Drawing.Point(20, 33);
     this.txtPwd.Name      = "txtPwd";
     this.txtPwd.NullText  = "type new password here";
     this.txtPwd.Size      = new System.Drawing.Size(181, 23);
     this.txtPwd.TabIndex  = 1;
     this.txtPwd.TabStop   = false;
     this.txtPwd.ThemeName = "Windows8";
     //
     // btnChange
     //
     this.btnChange.Dock      = System.Windows.Forms.DockStyle.Bottom;
     this.btnChange.Font      = new System.Drawing.Font("Segoe UI", 10F);
     this.btnChange.Location  = new System.Drawing.Point(2, 72);
     this.btnChange.Name      = "btnChange";
     this.btnChange.Size      = new System.Drawing.Size(218, 22);
     this.btnChange.TabIndex  = 0;
     this.btnChange.Text      = "Simpan";
     this.btnChange.ThemeName = "Windows8";
     this.btnChange.Click    += new System.EventHandler(this.btnChange_Click);
     //
     // txtKeterangan
     //
     this.txtKeterangan.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtKeterangan.Font      = new System.Drawing.Font("Segoe UI", 10F);
     this.txtKeterangan.Location  = new System.Drawing.Point(12, 276);
     this.txtKeterangan.Name      = "txtKeterangan";
     this.txtKeterangan.NullText  = "keterangan koreksi .  .  .  .";
     this.txtKeterangan.Size      = new System.Drawing.Size(709, 23);
     this.txtKeterangan.TabIndex  = 0;
     this.txtKeterangan.TabStop   = false;
     this.txtKeterangan.ThemeName = "Windows8";
     this.txtKeterangan.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtKeterangan_KeyPress);
     this.txtKeterangan.KeyUp    += new System.Windows.Forms.KeyEventHandler(this.txtKeterangan_KeyUp);
     //
     // actionlogTableAdapter
     //
     this.actionlogTableAdapter.ClearBeforeFill = true;
     //
     // frmMain
     //
     this.AutoScaleDimensions   = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode         = System.Windows.Forms.AutoScaleMode.Font;
     this.BackgroundImage       = ((System.Drawing.Image)(resources.GetObject("$this.BackgroundImage")));
     this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.ClientSize            = new System.Drawing.Size(966, 637);
     this.Controls.Add(this.txtKeterangan);
     this.Controls.Add(this.radGroupBox1);
     this.Controls.Add(this.radGridView1);
     this.Controls.Add(this.mainradMenu);
     this.Controls.Add(this.mainradStatusStrip);
     this.Font            = new System.Drawing.Font("Segoe UI", 12F);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.IsMdiContainer  = true;
     this.KeyPreview      = true;
     this.Name            = "frmMain";
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.Text      = "Sinarek Management System";
     this.ThemeName = "Windows8";
     this.Load     += new System.EventHandler(this.frmMain_Load);
     ((System.ComponentModel.ISupportInitialize)(this.mainradStatusStrip)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mainradMenu)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.actionlogBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.sinarekDataSet)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).EndInit();
     this.radGroupBox1.ResumeLayout(false);
     this.radGroupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtPwd)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnChange)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtKeterangan)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).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(frmServices));
     Telerik.WinControls.UI.GridViewCommandColumn   gridViewCommandColumn19 = new Telerik.WinControls.UI.GridViewCommandColumn();
     Telerik.WinControls.UI.GridViewCommandColumn   gridViewCommandColumn20 = new Telerik.WinControls.UI.GridViewCommandColumn();
     Telerik.WinControls.UI.TableViewDefinition     tableViewDefinition10   = new Telerik.WinControls.UI.TableViewDefinition();
     this.pictureBox2            = new System.Windows.Forms.PictureBox();
     this.btnCancel              = new System.Windows.Forms.Button();
     this.btnSave                = new System.Windows.Forms.Button();
     this.checkboxIsPaid         = new System.Windows.Forms.CheckBox();
     this.txtCustomerName        = new Utility.SizableTextBox();
     this.comboboxPaths          = new System.Windows.Forms.ComboBox();
     this.comboboxDrivers        = new System.Windows.Forms.ComboBox();
     this.txtCustomerPhone       = new Utility.NumericTextBox();
     this.lblDate                = new System.Windows.Forms.Label();
     this.txtDelay               = new Utility.NumericTextBox();
     this.lblCost                = new System.Windows.Forms.Label();
     this.txtOriginInDetail      = new Utility.SizableTextBox();
     this.txtDestinationInDetail = new Utility.SizableTextBox();
     this.lblCar           = new System.Windows.Forms.Label();
     this.lblLicencePlate4 = new System.Windows.Forms.Label();
     this.lblLicencePlate3 = new System.Windows.Forms.Label();
     this.lblLicencePlate2 = new System.Windows.Forms.Label();
     this.lblLicencePlate1 = new System.Windows.Forms.Label();
     this.pictureBox3      = new System.Windows.Forms.PictureBox();
     this.btnSearch        = new System.Windows.Forms.Button();
     this.txtSearch        = new Utility.SizableTextBox();
     this.label1           = new System.Windows.Forms.Label();
     this.materialTheme1   = new Telerik.WinControls.Themes.MaterialTheme();
     this.gridServices     = new Utility.RadGridViewCustom();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridServices)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridServices.MasterTemplate)).BeginInit();
     this.SuspendLayout();
     //
     // btnDashboard
     //
     this.btnDashboard.FlatAppearance.BorderColor        = System.Drawing.Color.FromArgb(((int)(((byte)(246)))), ((int)(((byte)(190)))), ((int)(((byte)(100)))));
     this.btnDashboard.FlatAppearance.BorderSize         = 0;
     this.btnDashboard.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(246)))), ((int)(((byte)(190)))), ((int)(((byte)(100)))));
     this.btnDashboard.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(246)))), ((int)(((byte)(190)))), ((int)(((byte)(100)))));
     //
     // btnDrivers
     //
     this.btnDrivers.FlatAppearance.BorderColor        = System.Drawing.Color.FromArgb(((int)(((byte)(246)))), ((int)(((byte)(190)))), ((int)(((byte)(100)))));
     this.btnDrivers.FlatAppearance.BorderSize         = 0;
     this.btnDrivers.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(246)))), ((int)(((byte)(190)))), ((int)(((byte)(100)))));
     this.btnDrivers.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(246)))), ((int)(((byte)(190)))), ((int)(((byte)(100)))));
     //
     // btnServices
     //
     this.btnServices.FlatAppearance.BorderColor        = System.Drawing.Color.FromArgb(((int)(((byte)(246)))), ((int)(((byte)(190)))), ((int)(((byte)(100)))));
     this.btnServices.FlatAppearance.BorderSize         = 0;
     this.btnServices.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(246)))), ((int)(((byte)(190)))), ((int)(((byte)(100)))));
     this.btnServices.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(246)))), ((int)(((byte)(190)))), ((int)(((byte)(100)))));
     //
     // btnPaths
     //
     this.btnPaths.FlatAppearance.BorderColor        = System.Drawing.Color.FromArgb(((int)(((byte)(246)))), ((int)(((byte)(190)))), ((int)(((byte)(100)))));
     this.btnPaths.FlatAppearance.BorderSize         = 0;
     this.btnPaths.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(246)))), ((int)(((byte)(190)))), ((int)(((byte)(100)))));
     this.btnPaths.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(246)))), ((int)(((byte)(190)))), ((int)(((byte)(100)))));
     //
     // btnExit
     //
     this.btnExit.FlatAppearance.BorderColor        = System.Drawing.Color.FromArgb(((int)(((byte)(246)))), ((int)(((byte)(190)))), ((int)(((byte)(100)))));
     this.btnExit.FlatAppearance.BorderSize         = 0;
     this.btnExit.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(246)))), ((int)(((byte)(190)))), ((int)(((byte)(100)))));
     this.btnExit.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(246)))), ((int)(((byte)(190)))), ((int)(((byte)(100)))));
     //
     // pictureBox2
     //
     this.pictureBox2.Image    = ((System.Drawing.Image)(resources.GetObject("pictureBox2.Image")));
     this.pictureBox2.Location = new System.Drawing.Point(199, 486);
     this.pictureBox2.Name     = "pictureBox2";
     this.pictureBox2.Size     = new System.Drawing.Size(1123, 241);
     this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
     this.pictureBox2.TabIndex = 17;
     this.pictureBox2.TabStop  = false;
     //
     // btnCancel
     //
     this.btnCancel.BackColor             = System.Drawing.Color.White;
     this.btnCancel.BackgroundImage       = ((System.Drawing.Image)(resources.GetObject("btnCancel.BackgroundImage")));
     this.btnCancel.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
     this.btnCancel.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btnCancel.FlatAppearance.BorderColor        = System.Drawing.Color.White;
     this.btnCancel.FlatAppearance.BorderSize         = 0;
     this.btnCancel.FlatAppearance.MouseDownBackColor = System.Drawing.Color.White;
     this.btnCancel.FlatAppearance.MouseOverBackColor = System.Drawing.Color.White;
     this.btnCancel.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnCancel.Font      = new System.Drawing.Font("IRANYekan", 9.749999F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.btnCancel.Location  = new System.Drawing.Point(839, 672);
     this.btnCancel.Name      = "btnCancel";
     this.btnCancel.Size      = new System.Drawing.Size(128, 30);
     this.btnCancel.TabIndex  = 18;
     this.btnCancel.UseVisualStyleBackColor = false;
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // btnSave
     //
     this.btnSave.BackColor             = System.Drawing.Color.White;
     this.btnSave.BackgroundImage       = ((System.Drawing.Image)(resources.GetObject("btnSave.BackgroundImage")));
     this.btnSave.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
     this.btnSave.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btnSave.FlatAppearance.BorderColor        = System.Drawing.Color.White;
     this.btnSave.FlatAppearance.BorderSize         = 0;
     this.btnSave.FlatAppearance.MouseDownBackColor = System.Drawing.Color.White;
     this.btnSave.FlatAppearance.MouseOverBackColor = System.Drawing.Color.White;
     this.btnSave.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnSave.Font      = new System.Drawing.Font("IRANYekan", 9.749999F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.btnSave.Location  = new System.Drawing.Point(992, 673);
     this.btnSave.Name      = "btnSave";
     this.btnSave.Size      = new System.Drawing.Size(272, 30);
     this.btnSave.TabIndex  = 17;
     this.btnSave.UseVisualStyleBackColor = false;
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // checkboxIsPaid
     //
     this.checkboxIsPaid.Font     = new System.Drawing.Font("IRANYekan", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.checkboxIsPaid.Location = new System.Drawing.Point(712, 688);
     this.checkboxIsPaid.Name     = "checkboxIsPaid";
     this.checkboxIsPaid.Size     = new System.Drawing.Size(14, 14);
     this.checkboxIsPaid.TabIndex = 14;
     this.checkboxIsPaid.UseVisualStyleBackColor = true;
     //
     // txtCustomerName
     //
     this.txtCustomerName.AutoCompleteMode   = System.Windows.Forms.AutoCompleteMode.Suggest;
     this.txtCustomerName.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.CustomSource;
     this.txtCustomerName.BackColor          = System.Drawing.Color.FromArgb(((int)(((byte)(244)))), ((int)(((byte)(244)))), ((int)(((byte)(245)))));
     this.txtCustomerName.BorderStyle        = System.Windows.Forms.BorderStyle.None;
     this.txtCustomerName.Font      = new System.Drawing.Font("IRANYekan", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.txtCustomerName.Location  = new System.Drawing.Point(312, 567);
     this.txtCustomerName.MaxLength = 75;
     this.txtCustomerName.Multiline = true;
     this.txtCustomerName.Name      = "txtCustomerName";
     this.txtCustomerName.Size      = new System.Drawing.Size(163, 24);
     this.txtCustomerName.TabIndex  = 9;
     this.txtCustomerName.Leave    += new System.EventHandler(this.txtCustomerName_Leave);
     //
     // comboboxPaths
     //
     this.comboboxPaths.AutoCompleteMode   = System.Windows.Forms.AutoCompleteMode.Suggest;
     this.comboboxPaths.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.comboboxPaths.BackColor          = System.Drawing.Color.FromArgb(((int)(((byte)(244)))), ((int)(((byte)(244)))), ((int)(((byte)(245)))));
     this.comboboxPaths.FlatStyle          = System.Windows.Forms.FlatStyle.Flat;
     this.comboboxPaths.Font = new System.Drawing.Font("IRANYekan", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.comboboxPaths.FormattingEnabled = true;
     this.comboboxPaths.Location          = new System.Drawing.Point(578, 566);
     this.comboboxPaths.MaxLength         = 75;
     this.comboboxPaths.Name         = "comboboxPaths";
     this.comboboxPaths.Size         = new System.Drawing.Size(165, 30);
     this.comboboxPaths.Sorted       = true;
     this.comboboxPaths.TabIndex     = 12;
     this.comboboxPaths.TextChanged += new System.EventHandler(this.comboboxPaths_TextChanged);
     //
     // comboboxDrivers
     //
     this.comboboxDrivers.AutoCompleteMode   = System.Windows.Forms.AutoCompleteMode.Suggest;
     this.comboboxDrivers.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.comboboxDrivers.BackColor          = System.Drawing.Color.FromArgb(((int)(((byte)(244)))), ((int)(((byte)(244)))), ((int)(((byte)(245)))));
     this.comboboxDrivers.FlatStyle          = System.Windows.Forms.FlatStyle.Flat;
     this.comboboxDrivers.Font = new System.Drawing.Font("IRANYekan", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.comboboxDrivers.FormattingEnabled = true;
     this.comboboxDrivers.Location          = new System.Drawing.Point(578, 618);
     this.comboboxDrivers.MaxLength         = 75;
     this.comboboxDrivers.Name         = "comboboxDrivers";
     this.comboboxDrivers.Size         = new System.Drawing.Size(165, 30);
     this.comboboxDrivers.Sorted       = true;
     this.comboboxDrivers.TabIndex     = 13;
     this.comboboxDrivers.TextChanged += new System.EventHandler(this.comboboxDrivers_TextChanged);
     //
     // txtCustomerPhone
     //
     this.txtCustomerPhone.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(244)))), ((int)(((byte)(244)))), ((int)(((byte)(245)))));
     this.txtCustomerPhone.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.txtCustomerPhone.Font        = new System.Drawing.Font("IRANYekan", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.txtCustomerPhone.Location    = new System.Drawing.Point(312, 622);
     this.txtCustomerPhone.MaxLength   = 11;
     this.txtCustomerPhone.Name        = "txtCustomerPhone";
     this.txtCustomerPhone.ReadOnly    = true;
     this.txtCustomerPhone.Size        = new System.Drawing.Size(163, 24);
     this.txtCustomerPhone.TabIndex    = 10;
     this.txtCustomerPhone.Text        = "09";
     //
     // lblDate
     //
     this.lblDate.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(244)))), ((int)(((byte)(244)))), ((int)(((byte)(245)))));
     this.lblDate.Font      = new System.Drawing.Font("IRANYekan", 6F);
     this.lblDate.Location  = new System.Drawing.Point(312, 674);
     this.lblDate.Name      = "lblDate";
     this.lblDate.Size      = new System.Drawing.Size(90, 28);
     this.lblDate.TabIndex  = 64;
     //
     // txtDelay
     //
     this.txtDelay.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(244)))), ((int)(((byte)(244)))), ((int)(((byte)(245)))));
     this.txtDelay.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.txtDelay.Font        = new System.Drawing.Font("IRANYekan", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.txtDelay.Location    = new System.Drawing.Point(448, 675);
     this.txtDelay.MaxLength   = 3;
     this.txtDelay.Multiline   = true;
     this.txtDelay.Name        = "txtDelay";
     this.txtDelay.Size        = new System.Drawing.Size(27, 28);
     this.txtDelay.TabIndex    = 11;
     //
     // lblCost
     //
     this.lblCost.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(244)))), ((int)(((byte)(244)))), ((int)(((byte)(245)))));
     this.lblCost.Font      = new System.Drawing.Font("IRANYekan", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.lblCost.Location  = new System.Drawing.Point(578, 675);
     this.lblCost.Name      = "lblCost";
     this.lblCost.Size      = new System.Drawing.Size(91, 28);
     this.lblCost.TabIndex  = 66;
     //
     // txtOriginInDetail
     //
     this.txtOriginInDetail.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(244)))), ((int)(((byte)(244)))), ((int)(((byte)(245)))));
     this.txtOriginInDetail.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.txtOriginInDetail.Font        = new System.Drawing.Font("IRANYekan", 7F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.txtOriginInDetail.Location    = new System.Drawing.Point(866, 568);
     this.txtOriginInDetail.MaxLength   = 50;
     this.txtOriginInDetail.Multiline   = true;
     this.txtOriginInDetail.Name        = "txtOriginInDetail";
     this.txtOriginInDetail.Size        = new System.Drawing.Size(171, 28);
     this.txtOriginInDetail.TabIndex    = 15;
     //
     // txtDestinationInDetail
     //
     this.txtDestinationInDetail.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(244)))), ((int)(((byte)(244)))), ((int)(((byte)(245)))));
     this.txtDestinationInDetail.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.txtDestinationInDetail.Font        = new System.Drawing.Font("IRANYekan", 7F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.txtDestinationInDetail.Location    = new System.Drawing.Point(1102, 568);
     this.txtDestinationInDetail.MaxLength   = 50;
     this.txtDestinationInDetail.Multiline   = true;
     this.txtDestinationInDetail.Name        = "txtDestinationInDetail";
     this.txtDestinationInDetail.Size        = new System.Drawing.Size(175, 28);
     this.txtDestinationInDetail.TabIndex    = 16;
     //
     // lblCar
     //
     this.lblCar.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(244)))), ((int)(((byte)(244)))), ((int)(((byte)(245)))));
     this.lblCar.Font      = new System.Drawing.Font("IRANYekan", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.lblCar.Location  = new System.Drawing.Point(889, 618);
     this.lblCar.Name      = "lblCar";
     this.lblCar.Size      = new System.Drawing.Size(265, 28);
     this.lblCar.TabIndex  = 69;
     //
     // lblLicencePlate4
     //
     this.lblLicencePlate4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(252)))), ((int)(((byte)(213)))), ((int)(((byte)(81)))));
     this.lblLicencePlate4.Font      = new System.Drawing.Font("IRANYekan", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblLicencePlate4.ForeColor = System.Drawing.Color.Black;
     this.lblLicencePlate4.Location  = new System.Drawing.Point(1160, 622);
     this.lblLicencePlate4.Name      = "lblLicencePlate4";
     this.lblLicencePlate4.Size      = new System.Drawing.Size(21, 22);
     this.lblLicencePlate4.TabIndex  = 70;
     this.lblLicencePlate4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // lblLicencePlate3
     //
     this.lblLicencePlate3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(252)))), ((int)(((byte)(213)))), ((int)(((byte)(81)))));
     this.lblLicencePlate3.Font      = new System.Drawing.Font("IRANYekan", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblLicencePlate3.ForeColor = System.Drawing.Color.Black;
     this.lblLicencePlate3.Location  = new System.Drawing.Point(1187, 622);
     this.lblLicencePlate3.Name      = "lblLicencePlate3";
     this.lblLicencePlate3.Size      = new System.Drawing.Size(28, 22);
     this.lblLicencePlate3.TabIndex  = 71;
     this.lblLicencePlate3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // lblLicencePlate2
     //
     this.lblLicencePlate2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(252)))), ((int)(((byte)(213)))), ((int)(((byte)(81)))));
     this.lblLicencePlate2.Font      = new System.Drawing.Font("IRANYekan", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblLicencePlate2.ForeColor = System.Drawing.Color.Black;
     this.lblLicencePlate2.Location  = new System.Drawing.Point(1219, 622);
     this.lblLicencePlate2.Name      = "lblLicencePlate2";
     this.lblLicencePlate2.Size      = new System.Drawing.Size(20, 22);
     this.lblLicencePlate2.TabIndex  = 72;
     this.lblLicencePlate2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // lblLicencePlate1
     //
     this.lblLicencePlate1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(252)))), ((int)(((byte)(213)))), ((int)(((byte)(81)))));
     this.lblLicencePlate1.Font      = new System.Drawing.Font("IRANYekan", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblLicencePlate1.ForeColor = System.Drawing.Color.Black;
     this.lblLicencePlate1.Location  = new System.Drawing.Point(1242, 622);
     this.lblLicencePlate1.Name      = "lblLicencePlate1";
     this.lblLicencePlate1.Size      = new System.Drawing.Size(22, 22);
     this.lblLicencePlate1.TabIndex  = 73;
     this.lblLicencePlate1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // pictureBox3
     //
     this.pictureBox3.Image    = ((System.Drawing.Image)(resources.GetObject("pictureBox3.Image")));
     this.pictureBox3.Location = new System.Drawing.Point(212, 123);
     this.pictureBox3.Name     = "pictureBox3";
     this.pictureBox3.Size     = new System.Drawing.Size(1098, 373);
     this.pictureBox3.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
     this.pictureBox3.TabIndex = 74;
     this.pictureBox3.TabStop  = false;
     //
     // btnSearch
     //
     this.btnSearch.BackColor             = System.Drawing.Color.White;
     this.btnSearch.BackgroundImage       = global::WND.Properties.Resources.search;
     this.btnSearch.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.btnSearch.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btnSearch.FlatAppearance.BorderColor        = System.Drawing.Color.White;
     this.btnSearch.FlatAppearance.BorderSize         = 0;
     this.btnSearch.FlatAppearance.MouseDownBackColor = System.Drawing.Color.White;
     this.btnSearch.FlatAppearance.MouseOverBackColor = System.Drawing.Color.White;
     this.btnSearch.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnSearch.Font      = new System.Drawing.Font("IRANYekan", 9.749999F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.btnSearch.Location  = new System.Drawing.Point(940, 161);
     this.btnSearch.Name      = "btnSearch";
     this.btnSearch.Size      = new System.Drawing.Size(38, 25);
     this.btnSearch.TabIndex  = 7;
     this.btnSearch.UseVisualStyleBackColor = false;
     this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
     //
     // txtSearch
     //
     this.txtSearch.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest;
     this.txtSearch.BackColor        = System.Drawing.Color.White;
     this.txtSearch.BorderStyle      = System.Windows.Forms.BorderStyle.None;
     this.txtSearch.Font             = new System.Drawing.Font("IRANYekan", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.txtSearch.Location         = new System.Drawing.Point(578, 161);
     this.txtSearch.MaxLength        = 75;
     this.txtSearch.Multiline        = true;
     this.txtSearch.Name             = "txtSearch";
     this.txtSearch.Size             = new System.Drawing.Size(360, 25);
     this.txtSearch.TabIndex         = 6;
     //
     // label1
     //
     this.label1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(244)))), ((int)(((byte)(219)))), ((int)(((byte)(178)))));
     this.label1.Font      = new System.Drawing.Font("IRANYekan", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.Color.Black;
     this.label1.Location  = new System.Drawing.Point(266, 516);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(141, 22);
     this.label1.TabIndex  = 79;
     this.label1.Text      = "مشخصات سرویس";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // gridServices
     //
     this.gridServices.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.gridServices.Cursor    = System.Windows.Forms.Cursors.Hand;
     this.gridServices.Font      = new System.Drawing.Font("IRANYekan", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.gridServices.Location  = new System.Drawing.Point(222, 196);
     //
     //
     //
     this.gridServices.MasterTemplate.AllowAddNewRow      = false;
     this.gridServices.MasterTemplate.AllowColumnReorder  = false;
     this.gridServices.MasterTemplate.AllowDragToGroup    = false;
     this.gridServices.MasterTemplate.AllowEditRow        = false;
     this.gridServices.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     gridViewCommandColumn19.AllowHide  = false;
     gridViewCommandColumn19.HeaderText = "ویرایش";
     gridViewCommandColumn19.Image      = global::WND.Properties.Resources.Icon_feather_edit;
     gridViewCommandColumn19.MaxWidth   = 60;
     gridViewCommandColumn19.Name       = "GridEditBtn";
     gridViewCommandColumn19.Width      = 60;
     gridViewCommandColumn20.AllowHide  = false;
     gridViewCommandColumn20.HeaderText = "حذف";
     gridViewCommandColumn20.Image      = global::WND.Properties.Resources.Icon_material_delete_forever;
     gridViewCommandColumn20.MaxWidth   = 50;
     gridViewCommandColumn20.Name       = "GridDeleteBtn";
     this.gridServices.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewCommandColumn19,
         gridViewCommandColumn20
     });
     this.gridServices.MasterTemplate.EnableGrouping = false;
     this.gridServices.MasterTemplate.SelectionMode  = Telerik.WinControls.UI.GridViewSelectionMode.None;
     this.gridServices.MasterTemplate.ViewDefinition = tableViewDefinition10;
     this.gridServices.Name     = "gridServices";
     this.gridServices.ReadOnly = true;
     //
     //
     //
     this.gridServices.RootElement.AutoSizeMode  = Telerik.WinControls.RadAutoSizeMode.Auto;
     this.gridServices.RootElement.ControlBounds = new System.Drawing.Rectangle(222, 196, 240, 150);
     this.gridServices.Size       = new System.Drawing.Size(1078, 271);
     this.gridServices.TabIndex   = 8;
     this.gridServices.ThemeName  = "Material";
     this.gridServices.CellClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.gridServices_CellClick);
     //
     // frmServices
     //
     this.AcceptButton        = this.btnSave;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1370, 749);
     this.Controls.Add(this.gridServices);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.txtSearch);
     this.Controls.Add(this.btnSearch);
     this.Controls.Add(this.pictureBox3);
     this.Controls.Add(this.lblLicencePlate1);
     this.Controls.Add(this.lblLicencePlate2);
     this.Controls.Add(this.lblLicencePlate3);
     this.Controls.Add(this.lblLicencePlate4);
     this.Controls.Add(this.lblCar);
     this.Controls.Add(this.txtDestinationInDetail);
     this.Controls.Add(this.txtOriginInDetail);
     this.Controls.Add(this.lblCost);
     this.Controls.Add(this.txtDelay);
     this.Controls.Add(this.lblDate);
     this.Controls.Add(this.txtCustomerPhone);
     this.Controls.Add(this.comboboxDrivers);
     this.Controls.Add(this.comboboxPaths);
     this.Controls.Add(this.txtCustomerName);
     this.Controls.Add(this.checkboxIsPaid);
     this.Controls.Add(this.btnSave);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.pictureBox2);
     this.Location = new System.Drawing.Point(0, 0);
     this.Name     = "frmServices";
     this.ShowIcon = false;
     this.Text     = "سرویس‌ها";
     this.Controls.SetChildIndex(this.btnDashboard, 0);
     this.Controls.SetChildIndex(this.btnDrivers, 0);
     this.Controls.SetChildIndex(this.btnServices, 0);
     this.Controls.SetChildIndex(this.btnPaths, 0);
     this.Controls.SetChildIndex(this.btnExit, 0);
     this.Controls.SetChildIndex(this.pictureBox2, 0);
     this.Controls.SetChildIndex(this.btnCancel, 0);
     this.Controls.SetChildIndex(this.btnSave, 0);
     this.Controls.SetChildIndex(this.checkboxIsPaid, 0);
     this.Controls.SetChildIndex(this.txtCustomerName, 0);
     this.Controls.SetChildIndex(this.comboboxPaths, 0);
     this.Controls.SetChildIndex(this.comboboxDrivers, 0);
     this.Controls.SetChildIndex(this.txtCustomerPhone, 0);
     this.Controls.SetChildIndex(this.lblDate, 0);
     this.Controls.SetChildIndex(this.txtDelay, 0);
     this.Controls.SetChildIndex(this.lblCost, 0);
     this.Controls.SetChildIndex(this.txtOriginInDetail, 0);
     this.Controls.SetChildIndex(this.txtDestinationInDetail, 0);
     this.Controls.SetChildIndex(this.lblCar, 0);
     this.Controls.SetChildIndex(this.lblLicencePlate4, 0);
     this.Controls.SetChildIndex(this.lblLicencePlate3, 0);
     this.Controls.SetChildIndex(this.lblLicencePlate2, 0);
     this.Controls.SetChildIndex(this.lblLicencePlate1, 0);
     this.Controls.SetChildIndex(this.pictureBox3, 0);
     this.Controls.SetChildIndex(this.btnSearch, 0);
     this.Controls.SetChildIndex(this.txtSearch, 0);
     this.Controls.SetChildIndex(this.label1, 0);
     this.Controls.SetChildIndex(this.gridServices, 0);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridServices.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridServices)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Exemple #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();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn2  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn3  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn4  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn5  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn6  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn7  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn1  = new Telerik.WinControls.UI.GridViewCommandColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn8  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn9  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn10 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn11 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn12 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn13 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn14 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn15 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn16 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     this.ucFiltrosCompras       = new LaPaz.Win.Forms.Compras.UcFiltrosCompras();
     this.radPanel1              = new Telerik.WinControls.UI.RadPanel();
     this.pnlCompras             = new Telerik.WinControls.UI.RadPanel();
     this.TxtCompras             = new Telerik.WinControls.UI.RadTextBox();
     this.TxtCantidad            = new Telerik.WinControls.UI.RadTextBox();
     this.radLabel1              = new Telerik.WinControls.UI.RadLabel();
     this.metroLabel4            = new Telerik.WinControls.UI.RadLabel();
     this.ComprasPager           = new Framework.WinForm.Controls.MetroPager();
     this.ucProgressSpinner1     = new LaPaz.Win.Forms.Util.UcProgressSpinner();
     this.GridCompras            = new Telerik.WinControls.UI.RadGridView();
     this.MovimientosProveedores = new Telerik.WinControls.UI.RadGridView();
     this.radPanel2              = new Telerik.WinControls.UI.RadPanel();
     ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).BeginInit();
     this.radPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pnlCompras)).BeginInit();
     this.pnlCompras.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TxtCompras)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtCantidad)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.metroLabel4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridCompras)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridCompras.MasterTemplate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.MovimientosProveedores)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.MovimientosProveedores.MasterTemplate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radPanel2)).BeginInit();
     this.radPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // ucFiltrosCompras
     //
     this.ucFiltrosCompras.FechaHasta     = new System.DateTime(2015, 2, 4, 17, 33, 8, 710);
     this.ucFiltrosCompras.FechaInicio    = new System.DateTime(2015, 1, 19, 0, 0, 0, 0);
     this.ucFiltrosCompras.Location       = new System.Drawing.Point(10, 6);
     this.ucFiltrosCompras.Margin         = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.ucFiltrosCompras.Name           = "ucFiltrosCompras";
     this.ucFiltrosCompras.NroComprobante = "";
     this.ucFiltrosCompras.ProveedorId    = null;
     this.ucFiltrosCompras.Size           = new System.Drawing.Size(1045, 88);
     this.ucFiltrosCompras.TabIndex       = 0;
     this.ucFiltrosCompras.TipoId         = null;
     //
     // radPanel1
     //
     this.radPanel1.Controls.Add(this.ucFiltrosCompras);
     this.radPanel1.Location = new System.Drawing.Point(12, 12);
     this.radPanel1.Name     = "radPanel1";
     this.radPanel1.Size     = new System.Drawing.Size(1071, 100);
     this.radPanel1.TabIndex = 1;
     //
     // pnlCompras
     //
     this.pnlCompras.Controls.Add(this.TxtCompras);
     this.pnlCompras.Controls.Add(this.TxtCantidad);
     this.pnlCompras.Controls.Add(this.radLabel1);
     this.pnlCompras.Controls.Add(this.metroLabel4);
     this.pnlCompras.Controls.Add(this.ComprasPager);
     this.pnlCompras.Controls.Add(this.ucProgressSpinner1);
     this.pnlCompras.Controls.Add(this.GridCompras);
     this.pnlCompras.Location = new System.Drawing.Point(12, 118);
     this.pnlCompras.Name     = "pnlCompras";
     this.pnlCompras.Size     = new System.Drawing.Size(1071, 334);
     this.pnlCompras.TabIndex = 2;
     //
     // TxtCompras
     //
     this.TxtCompras.Font      = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.TxtCompras.Location  = new System.Drawing.Point(210, 56);
     this.TxtCompras.MaxLength = 11;
     this.TxtCompras.Name      = "TxtCompras";
     this.TxtCompras.Size      = new System.Drawing.Size(127, 31);
     this.TxtCompras.TabIndex  = 46;
     this.TxtCompras.TabStop   = false;
     this.TxtCompras.ThemeName = "TelerikMetroBlue";
     //
     // TxtCantidad
     //
     this.TxtCantidad.Font      = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.TxtCantidad.Location  = new System.Drawing.Point(210, 19);
     this.TxtCantidad.MaxLength = 11;
     this.TxtCantidad.Name      = "TxtCantidad";
     this.TxtCantidad.Size      = new System.Drawing.Size(127, 31);
     this.TxtCantidad.TabIndex  = 45;
     this.TxtCantidad.TabStop   = false;
     this.TxtCantidad.ThemeName = "TelerikMetroBlue";
     //
     // radLabel1
     //
     this.radLabel1.Font      = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel1.Location  = new System.Drawing.Point(44, 58);
     this.radLabel1.Name      = "radLabel1";
     this.radLabel1.Size      = new System.Drawing.Size(160, 29);
     this.radLabel1.TabIndex  = 42;
     this.radLabel1.Text      = "Total de compras:";
     this.radLabel1.ThemeName = "TelerikMetroBlue";
     //
     // metroLabel4
     //
     this.metroLabel4.Font      = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.metroLabel4.Location  = new System.Drawing.Point(10, 19);
     this.metroLabel4.Name      = "metroLabel4";
     this.metroLabel4.Size      = new System.Drawing.Size(194, 29);
     this.metroLabel4.TabIndex  = 41;
     this.metroLabel4.Text      = "Cantidad de compras:";
     this.metroLabel4.ThemeName = "TelerikMetroBlue";
     //
     // ComprasPager
     //
     this.ComprasPager.CurrentPage        = 1;
     this.ComprasPager.Location           = new System.Drawing.Point(518, 33);
     this.ComprasPager.Margin             = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.ComprasPager.Name               = "ComprasPager";
     this.ComprasPager.PageSize           = 50;
     this.ComprasPager.PageTotal          = 1;
     this.ComprasPager.RefreshAction      = null;
     this.ComprasPager.RefreshActionAsync = null;
     this.ComprasPager.Size               = new System.Drawing.Size(511, 54);
     this.ComprasPager.TabIndex           = 2;
     //
     // ucProgressSpinner1
     //
     this.ucProgressSpinner1.Location = new System.Drawing.Point(865, 7);
     this.ucProgressSpinner1.Margin   = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.ucProgressSpinner1.Name     = "ucProgressSpinner1";
     this.ucProgressSpinner1.Size     = new System.Drawing.Size(154, 27);
     this.ucProgressSpinner1.TabIndex = 1;
     //
     // GridCompras
     //
     this.GridCompras.AllowDrop = true;
     this.GridCompras.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.GridCompras.AutoScroll = true;
     this.GridCompras.Location   = new System.Drawing.Point(10, 109);
     //
     // GridCompras
     //
     this.GridCompras.MasterTemplate.AllowAddNewRow      = false;
     this.GridCompras.MasterTemplate.AllowColumnReorder  = false;
     this.GridCompras.MasterTemplate.AllowDeleteRow      = false;
     this.GridCompras.MasterTemplate.AllowDragToGroup    = false;
     this.GridCompras.MasterTemplate.AllowEditRow        = false;
     this.GridCompras.MasterTemplate.AllowRowResize      = false;
     this.GridCompras.MasterTemplate.AutoGenerateColumns = false;
     this.GridCompras.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     gridViewTextBoxColumn1.FieldName    = "ProveedorDenominacion";
     gridViewTextBoxColumn1.HeaderText   = "Proveedor";
     gridViewTextBoxColumn1.Name         = "Proveedor";
     gridViewTextBoxColumn1.Width        = 303;
     gridViewTextBoxColumn2.FieldName    = "TipoComprobanteId";
     gridViewTextBoxColumn2.FormatString = "";
     gridViewTextBoxColumn2.HeaderText   = "Tipo";
     gridViewTextBoxColumn2.Name         = "TipoComprobanteId";
     gridViewTextBoxColumn2.Width        = 195;
     gridViewTextBoxColumn3.FieldName    = "Observaciones";
     gridViewTextBoxColumn3.HeaderText   = "Observaciones";
     gridViewTextBoxColumn3.Name         = "Observaciones";
     gridViewTextBoxColumn3.Width        = 252;
     gridViewTextBoxColumn4.FieldName    = "FechaAlta";
     gridViewTextBoxColumn4.FormatString = "";
     gridViewTextBoxColumn4.HeaderText   = "Fecha";
     gridViewTextBoxColumn4.Name         = "FechaAlta";
     gridViewTextBoxColumn4.Width        = 133;
     gridViewTextBoxColumn5.FieldName    = "LCN";
     gridViewTextBoxColumn5.FormatString = "";
     gridViewTextBoxColumn5.HeaderText   = "LCN";
     gridViewTextBoxColumn5.IsVisible    = false;
     gridViewTextBoxColumn5.Name         = "LCN";
     gridViewTextBoxColumn5.Width        = 116;
     gridViewTextBoxColumn6.FieldName    = "ImporteNeto";
     gridViewTextBoxColumn6.FormatString = "";
     gridViewTextBoxColumn6.HeaderText   = "Importe";
     gridViewTextBoxColumn6.Name         = "ImporteNeto";
     gridViewTextBoxColumn6.Width        = 114;
     gridViewTextBoxColumn7.FieldName    = "FechaVencimiento";
     gridViewTextBoxColumn7.FormatString = "";
     gridViewTextBoxColumn7.HeaderText   = "Vencimiento";
     gridViewTextBoxColumn7.IsVisible    = false;
     gridViewTextBoxColumn7.Name         = "FechaVencimiento";
     gridViewTextBoxColumn7.Width        = 328;
     gridViewCommandColumn1.FormatString = "";
     gridViewCommandColumn1.HeaderText   = "";
     gridViewCommandColumn1.Image        = global::LaPaz.Win.Properties.Resources.View_Details;
     gridViewCommandColumn1.MaxWidth     = 30;
     gridViewCommandColumn1.MinWidth     = 30;
     gridViewCommandColumn1.Name         = "Detalle";
     gridViewCommandColumn1.Width        = 30;
     this.GridCompras.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewTextBoxColumn1,
         gridViewTextBoxColumn2,
         gridViewTextBoxColumn3,
         gridViewTextBoxColumn4,
         gridViewTextBoxColumn5,
         gridViewTextBoxColumn6,
         gridViewTextBoxColumn7,
         gridViewCommandColumn1
     });
     this.GridCompras.Name              = "GridCompras";
     this.GridCompras.ReadOnly          = true;
     this.GridCompras.Size              = new System.Drawing.Size(1044, 206);
     this.GridCompras.TabIndex          = 0;
     this.GridCompras.ThemeName         = "TelerikMetroBlue";
     this.GridCompras.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.GridCompras_CommandCellClick);
     this.GridCompras.DoubleClick      += new System.EventHandler(this.GridCompras_DoubleClick);
     //
     // MovimientosProveedores
     //
     this.MovimientosProveedores.Location = new System.Drawing.Point(10, 12);
     //
     // MovimientosProveedores
     //
     this.MovimientosProveedores.MasterTemplate.AllowAddNewRow      = false;
     this.MovimientosProveedores.MasterTemplate.AllowColumnReorder  = false;
     this.MovimientosProveedores.MasterTemplate.AllowDragToGroup    = false;
     this.MovimientosProveedores.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     gridViewTextBoxColumn8.FieldName     = "Fecha";
     gridViewTextBoxColumn8.FormatString  = "";
     gridViewTextBoxColumn8.HeaderText    = "Fecha";
     gridViewTextBoxColumn8.Name          = "Fecha";
     gridViewTextBoxColumn8.Width         = 123;
     gridViewTextBoxColumn9.FieldName     = "Concepto";
     gridViewTextBoxColumn9.FormatString  = "";
     gridViewTextBoxColumn9.HeaderText    = "Concepto";
     gridViewTextBoxColumn9.Name          = "Concepto";
     gridViewTextBoxColumn9.Width         = 191;
     gridViewTextBoxColumn10.FieldName    = "Importe";
     gridViewTextBoxColumn10.FormatString = "";
     gridViewTextBoxColumn10.HeaderText   = "Compras";
     gridViewTextBoxColumn10.Name         = "Importe";
     gridViewTextBoxColumn10.Width        = 102;
     gridViewTextBoxColumn11.FieldName    = "Pagos";
     gridViewTextBoxColumn11.FormatString = "";
     gridViewTextBoxColumn11.HeaderText   = "Pagos";
     gridViewTextBoxColumn11.Name         = "Pagos";
     gridViewTextBoxColumn11.Width        = 101;
     gridViewTextBoxColumn12.FieldName    = "Efectivo";
     gridViewTextBoxColumn12.HeaderText   = "Efectivo";
     gridViewTextBoxColumn12.Name         = "Efectivo";
     gridViewTextBoxColumn12.Width        = 95;
     gridViewTextBoxColumn13.FieldName    = "Tarjeta";
     gridViewTextBoxColumn13.HeaderText   = "Tarjeta";
     gridViewTextBoxColumn13.Name         = "Tarjeta";
     gridViewTextBoxColumn13.Width        = 95;
     gridViewTextBoxColumn14.FieldName    = "Cheque";
     gridViewTextBoxColumn14.HeaderText   = "Cheque";
     gridViewTextBoxColumn14.Name         = "Cheque";
     gridViewTextBoxColumn14.Width        = 95;
     gridViewTextBoxColumn15.FieldName    = "Deposito";
     gridViewTextBoxColumn15.HeaderText   = "Deposito";
     gridViewTextBoxColumn15.Name         = "Deposito";
     gridViewTextBoxColumn15.Width        = 95;
     gridViewTextBoxColumn16.FieldName    = "Transferencia";
     gridViewTextBoxColumn16.HeaderText   = "Transferencia";
     gridViewTextBoxColumn16.Name         = "Transferencia";
     gridViewTextBoxColumn16.Width        = 134;
     this.MovimientosProveedores.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewTextBoxColumn8,
         gridViewTextBoxColumn9,
         gridViewTextBoxColumn10,
         gridViewTextBoxColumn11,
         gridViewTextBoxColumn12,
         gridViewTextBoxColumn13,
         gridViewTextBoxColumn14,
         gridViewTextBoxColumn15,
         gridViewTextBoxColumn16
     });
     this.MovimientosProveedores.Name      = "MovimientosProveedores";
     this.MovimientosProveedores.ReadOnly  = true;
     this.MovimientosProveedores.Size      = new System.Drawing.Size(1045, 284);
     this.MovimientosProveedores.TabIndex  = 48;
     this.MovimientosProveedores.Text      = "radGridView1";
     this.MovimientosProveedores.ThemeName = "TelerikMetroBlue";
     //
     // radPanel2
     //
     this.radPanel2.Controls.Add(this.MovimientosProveedores);
     this.radPanel2.Location = new System.Drawing.Point(12, 458);
     this.radPanel2.Name     = "radPanel2";
     this.radPanel2.Size     = new System.Drawing.Size(1071, 307);
     this.radPanel2.TabIndex = 49;
     //
     // FrmComprasListado
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1595, 1092);
     this.Controls.Add(this.radPanel2);
     this.Controls.Add(this.pnlCompras);
     this.Controls.Add(this.radPanel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Margin          = new System.Windows.Forms.Padding(4);
     this.Name            = "FrmComprasListado";
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.Text  = "Listado de Compras";
     this.Load += new System.EventHandler(this.FrmListadoCompras_Load);
     ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).EndInit();
     this.radPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pnlCompras)).EndInit();
     this.pnlCompras.ResumeLayout(false);
     this.pnlCompras.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TxtCompras)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtCantidad)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.metroLabel4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridCompras.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridCompras)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.MovimientosProveedores.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.MovimientosProveedores)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radPanel2)).EndInit();
     this.radPanel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this)).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();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn2 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn3 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn1 = new Telerik.WinControls.UI.GridViewCommandColumn();
     this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
     this.UcFiltrosCompras  = new LaPaz.Win.Forms.Compras.UcFiltrosCompras();
     this.GridDevoluciones  = new Telerik.WinControls.UI.RadGridView();
     this.tableLayoutPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GridDevoluciones)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridDevoluciones.MasterTemplate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // tableLayoutPanel1
     //
     this.tableLayoutPanel1.ColumnCount = 1;
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel1.Controls.Add(this.UcFiltrosCompras, 0, 0);
     this.tableLayoutPanel1.Controls.Add(this.GridDevoluciones, 0, 1);
     this.tableLayoutPanel1.Location = new System.Drawing.Point(12, 12);
     this.tableLayoutPanel1.Name     = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 2;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25.37563F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 74.62437F));
     this.tableLayoutPanel1.Size     = new System.Drawing.Size(1253, 599);
     this.tableLayoutPanel1.TabIndex = 0;
     //
     // UcFiltrosCompras
     //
     this.UcFiltrosCompras.FechaHasta     = new System.DateTime(2015, 2, 4, 17, 33, 8, 710);
     this.UcFiltrosCompras.FechaInicio    = new System.DateTime(2015, 1, 19, 0, 0, 0, 0);
     this.UcFiltrosCompras.Location       = new System.Drawing.Point(4, 4);
     this.UcFiltrosCompras.Margin         = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.UcFiltrosCompras.Name           = "UcFiltrosCompras";
     this.UcFiltrosCompras.NroComprobante = "";
     this.UcFiltrosCompras.ProveedorId    = null;
     this.UcFiltrosCompras.Size           = new System.Drawing.Size(1087, 122);
     this.UcFiltrosCompras.TabIndex       = 0;
     this.UcFiltrosCompras.TipoId         = null;
     //
     // GridDevoluciones
     //
     this.GridDevoluciones.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.GridDevoluciones.Location = new System.Drawing.Point(3, 155);
     //
     // GridDevoluciones
     //
     this.GridDevoluciones.MasterTemplate.AllowAddNewRow      = false;
     this.GridDevoluciones.MasterTemplate.AllowColumnReorder  = false;
     this.GridDevoluciones.MasterTemplate.AllowDragToGroup    = false;
     this.GridDevoluciones.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     gridViewTextBoxColumn1.FieldName  = "FechaAlta";
     gridViewTextBoxColumn1.HeaderText = "FechaAlta";
     gridViewTextBoxColumn1.Name       = "FechaAlta";
     gridViewTextBoxColumn1.Width      = 406;
     gridViewTextBoxColumn2.FieldName  = "LCN";
     gridViewTextBoxColumn2.HeaderText = "Numero";
     gridViewTextBoxColumn2.Name       = "LCN";
     gridViewTextBoxColumn2.Width      = 350;
     gridViewTextBoxColumn3.FieldName  = "ProveedoreDenominacion";
     gridViewTextBoxColumn3.HeaderText = "Proveedor";
     gridViewTextBoxColumn3.Name       = "Proveedor";
     gridViewTextBoxColumn3.Width      = 442;
     gridViewCommandColumn1.HeaderText = "";
     gridViewCommandColumn1.Image      = global::LaPaz.Win.Properties.Resources.Print_16x16;
     gridViewCommandColumn1.MaxWidth   = 30;
     gridViewCommandColumn1.MinWidth   = 30;
     gridViewCommandColumn1.Name       = "Imprimir";
     gridViewCommandColumn1.Width      = 30;
     this.GridDevoluciones.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewTextBoxColumn1,
         gridViewTextBoxColumn2,
         gridViewTextBoxColumn3,
         gridViewCommandColumn1
     });
     this.GridDevoluciones.Name              = "GridDevoluciones";
     this.GridDevoluciones.ReadOnly          = true;
     this.GridDevoluciones.Size              = new System.Drawing.Size(1247, 441);
     this.GridDevoluciones.TabIndex          = 1;
     this.GridDevoluciones.ThemeName         = "TelerikMetroBlue";
     this.GridDevoluciones.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.GridDevoluciones_CommandCellClick);
     //
     // FrmHistorialDevolucion
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1277, 623);
     this.Controls.Add(this.tableLayoutPanel1);
     this.Name = "FrmHistorialDevolucion";
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.Text  = "Historial Devoluciones";
     this.Load += new System.EventHandler(this.FrmHistorialDevolucion_Load);
     this.tableLayoutPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.GridDevoluciones.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridDevoluciones)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
     this.ResumeLayout(false);
 }
Exemple #14
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();
     Telerik.WinControls.UI.GridViewDecimalColumn  gridViewDecimalColumn1  = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn1  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewDecimalColumn  gridViewDecimalColumn2  = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn2  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewCommandColumn  gridViewCommandColumn1  = new Telerik.WinControls.UI.GridViewCommandColumn();
     Telerik.WinControls.UI.GridViewCommandColumn  gridViewCommandColumn2  = new Telerik.WinControls.UI.GridViewCommandColumn();
     Telerik.WinControls.UI.GridViewDecimalColumn  gridViewDecimalColumn3  = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewDateTimeColumn gridViewDateTimeColumn1 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn3  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn1 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     Telerik.WinControls.UI.GridViewDecimalColumn  gridViewDecimalColumn4  = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn1 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
     Telerik.WinControls.UI.GridViewDateTimeColumn gridViewDateTimeColumn2 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
     Telerik.WinControls.UI.GridViewDateTimeColumn gridViewDateTimeColumn3 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
     Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn2 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
     Telerik.WinControls.UI.GridViewDecimalColumn  gridViewDecimalColumn5  = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewDecimalColumn  gridViewDecimalColumn6  = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewDateTimeColumn gridViewDateTimeColumn4 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
     Telerik.WinControls.UI.GridViewDateTimeColumn gridViewDateTimeColumn5 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
     Telerik.WinControls.UI.GridViewDecimalColumn  gridViewDecimalColumn7  = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewDecimalColumn  gridViewDecimalColumn8  = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewDecimalColumn  gridViewDecimalColumn9  = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewDateTimeColumn gridViewDateTimeColumn6 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn4  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewDateTimeColumn gridViewDateTimeColumn7 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
     Telerik.WinControls.UI.GridViewDecimalColumn  gridViewDecimalColumn10 = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewDecimalColumn  gridViewDecimalColumn11 = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn2 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn3 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn4 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     Telerik.WinControls.UI.GridViewDecimalColumn  gridViewDecimalColumn12 = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewDateTimeColumn gridViewDateTimeColumn8 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
     Telerik.WinControls.UI.GridViewDecimalColumn  gridViewDecimalColumn13 = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewCommandColumn  gridViewCommandColumn3  = new Telerik.WinControls.UI.GridViewCommandColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn5  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     this.supBindingSource     = new System.Windows.Forms.BindingSource(this.components);
     this.sinarekDataSet       = new NB.sinarekDataSet();
     this.statbotBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.radGroupBox1         = new Telerik.WinControls.UI.RadGroupBox();
     this.radSeparator1        = new Telerik.WinControls.UI.RadSeparator();
     this.btnLihat             = new Telerik.WinControls.UI.RadButton();
     this.btnDeactive          = new Telerik.WinControls.UI.RadButton();
     this.btnAdd              = new Telerik.WinControls.UI.RadButton();
     this.txtKapasitas        = new Telerik.WinControls.UI.RadMaskedEditBox();
     this.txtNama             = new Telerik.WinControls.UI.RadTextBox();
     this.radLabel2           = new Telerik.WinControls.UI.RadLabel();
     this.radLabel1           = new Telerik.WinControls.UI.RadLabel();
     this.radGridView1        = new Telerik.WinControls.UI.RadGridView();
     this.tierBindingSource   = new System.Windows.Forms.BindingSource(this.components);
     this.tierTableAdapter    = new NB.sinarekDataSetTableAdapters.tierTableAdapter();
     this.radGridView2        = new Telerik.WinControls.UI.RadGridView();
     this.storeBindingSource  = new System.Windows.Forms.BindingSource(this.components);
     this.storeTableAdapter   = new NB.sinarekDataSetTableAdapters.storeTableAdapter();
     this.supTableAdapter     = new NB.sinarekDataSetTableAdapters.supTableAdapter();
     this.statbotTableAdapter = new NB.sinarekDataSetTableAdapters.statbotTableAdapter();
     ((System.ComponentModel.ISupportInitialize)(this.supBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.sinarekDataSet)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.statbotBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).BeginInit();
     this.radGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radSeparator1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnLihat)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnDeactive)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnAdd)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtKapasitas)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNama)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tierBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.storeBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // supBindingSource
     //
     this.supBindingSource.DataMember = "sup";
     this.supBindingSource.DataSource = this.sinarekDataSet;
     //
     // sinarekDataSet
     //
     this.sinarekDataSet.DataSetName             = "sinarekDataSet";
     this.sinarekDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // statbotBindingSource
     //
     this.statbotBindingSource.DataMember = "statbot";
     this.statbotBindingSource.DataSource = this.sinarekDataSet;
     //
     // radGroupBox1
     //
     this.radGroupBox1.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.radGroupBox1.Controls.Add(this.radSeparator1);
     this.radGroupBox1.Controls.Add(this.btnLihat);
     this.radGroupBox1.Controls.Add(this.btnDeactive);
     this.radGroupBox1.Controls.Add(this.btnAdd);
     this.radGroupBox1.Controls.Add(this.txtKapasitas);
     this.radGroupBox1.Controls.Add(this.txtNama);
     this.radGroupBox1.Controls.Add(this.radLabel2);
     this.radGroupBox1.Controls.Add(this.radLabel1);
     this.radGroupBox1.Dock             = System.Windows.Forms.DockStyle.Top;
     this.radGroupBox1.Font             = new System.Drawing.Font("Segoe UI", 10F);
     this.radGroupBox1.FooterImageIndex = -1;
     this.radGroupBox1.FooterImageKey   = "";
     this.radGroupBox1.GroupBoxStyle    = Telerik.WinControls.UI.RadGroupBoxStyle.Office;
     this.radGroupBox1.HeaderImageIndex = -1;
     this.radGroupBox1.HeaderImageKey   = "";
     this.radGroupBox1.HeaderMargin     = new System.Windows.Forms.Padding(0);
     this.radGroupBox1.HeaderText       = "Tier Baru";
     this.radGroupBox1.Location         = new System.Drawing.Point(0, 0);
     this.radGroupBox1.Name             = "radGroupBox1";
     this.radGroupBox1.Padding          = new System.Windows.Forms.Padding(2, 18, 2, 2);
     //
     //
     //
     this.radGroupBox1.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
     this.radGroupBox1.Size     = new System.Drawing.Size(1002, 123);
     this.radGroupBox1.TabIndex = 0;
     this.radGroupBox1.Text     = "Tier Baru";
     //
     // radSeparator1
     //
     this.radSeparator1.Location     = new System.Drawing.Point(283, 28);
     this.radSeparator1.Name         = "radSeparator1";
     this.radSeparator1.Orientation  = System.Windows.Forms.Orientation.Vertical;
     this.radSeparator1.ShadowOffset = new System.Drawing.Point(0, 0);
     this.radSeparator1.Size         = new System.Drawing.Size(8, 93);
     this.radSeparator1.TabIndex     = 7;
     this.radSeparator1.Text         = "radSeparator1";
     //
     // btnLihat
     //
     this.btnLihat.Font     = new System.Drawing.Font("Segoe UI", 10F);
     this.btnLihat.Location = new System.Drawing.Point(297, 58);
     this.btnLihat.Name     = "btnLihat";
     this.btnLihat.Size     = new System.Drawing.Size(142, 22);
     this.btnLihat.TabIndex = 6;
     this.btnLihat.Text     = "&Lihat History";
     //
     // btnDeactive
     //
     this.btnDeactive.Font     = new System.Drawing.Font("Segoe UI", 10F);
     this.btnDeactive.Location = new System.Drawing.Point(297, 29);
     this.btnDeactive.Name     = "btnDeactive";
     this.btnDeactive.Size     = new System.Drawing.Size(142, 22);
     this.btnDeactive.TabIndex = 5;
     this.btnDeactive.Text     = "&Tidak Aktif";
     //
     // btnAdd
     //
     this.btnAdd.Font     = new System.Drawing.Font("Segoe UI", 10F);
     this.btnAdd.Location = new System.Drawing.Point(93, 87);
     this.btnAdd.Name     = "btnAdd";
     this.btnAdd.Size     = new System.Drawing.Size(173, 22);
     this.btnAdd.TabIndex = 4;
     this.btnAdd.Text     = "&Add";
     this.btnAdd.Click   += new System.EventHandler(this.btnAdd_Click);
     //
     // txtKapasitas
     //
     this.txtKapasitas.AllowPromptAsInput = false;
     this.txtKapasitas.AutoSize           = true;
     this.txtKapasitas.Font     = new System.Drawing.Font("Segoe UI", 10F);
     this.txtKapasitas.Location = new System.Drawing.Point(93, 57);
     this.txtKapasitas.Mask     = "d4";
     this.txtKapasitas.MaskType = Telerik.WinControls.UI.MaskType.Numeric;
     this.txtKapasitas.Name     = "txtKapasitas";
     this.txtKapasitas.Size     = new System.Drawing.Size(173, 23);
     this.txtKapasitas.TabIndex = 3;
     this.txtKapasitas.TabStop  = false;
     this.txtKapasitas.Text     = "0000";
     this.txtKapasitas.Value    = "0000";
     //
     // txtNama
     //
     this.txtNama.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtNama.Font            = new System.Drawing.Font("Segoe UI", 10F);
     this.txtNama.Location        = new System.Drawing.Point(93, 28);
     this.txtNama.Name            = "txtNama";
     this.txtNama.NullText        = "Nama Tier";
     this.txtNama.Size            = new System.Drawing.Size(173, 23);
     this.txtNama.TabIndex        = 2;
     this.txtNama.TabStop         = false;
     //
     // radLabel2
     //
     this.radLabel2.Location = new System.Drawing.Point(15, 58);
     this.radLabel2.Name     = "radLabel2";
     this.radLabel2.Size     = new System.Drawing.Size(70, 21);
     this.radLabel2.TabIndex = 1;
     this.radLabel2.Text     = "Kapasitas :";
     //
     // radLabel1
     //
     this.radLabel1.Location = new System.Drawing.Point(15, 28);
     this.radLabel1.Name     = "radLabel1";
     this.radLabel1.Size     = new System.Drawing.Size(50, 21);
     this.radLabel1.TabIndex = 0;
     this.radLabel1.Text     = "Nama :";
     //
     // radGridView1
     //
     this.radGridView1.Dock     = System.Windows.Forms.DockStyle.Left;
     this.radGridView1.Font     = new System.Drawing.Font("Segoe UI", 10F);
     this.radGridView1.Location = new System.Drawing.Point(0, 123);
     //
     // radGridView1
     //
     this.radGridView1.MasterTemplate.AllowAddNewRow     = false;
     this.radGridView1.MasterTemplate.AllowColumnReorder = false;
     gridViewDecimalColumn1.DataType         = typeof(int);
     gridViewDecimalColumn1.FieldName        = "TierID";
     gridViewDecimalColumn1.FormatString     = "";
     gridViewDecimalColumn1.HeaderText       = "TierID";
     gridViewDecimalColumn1.IsAutoGenerated  = true;
     gridViewDecimalColumn1.IsVisible        = false;
     gridViewDecimalColumn1.Name             = "TierID";
     gridViewDecimalColumn1.TextAlignment    = System.Drawing.ContentAlignment.MiddleRight;
     gridViewTextBoxColumn1.FieldName        = "Nama";
     gridViewTextBoxColumn1.FormatString     = "";
     gridViewTextBoxColumn1.HeaderText       = "Nama";
     gridViewTextBoxColumn1.IsAutoGenerated  = true;
     gridViewTextBoxColumn1.Name             = "Nama";
     gridViewTextBoxColumn1.Width            = 100;
     gridViewDecimalColumn2.DataType         = typeof(int);
     gridViewDecimalColumn2.FieldName        = "Capacity";
     gridViewDecimalColumn2.FormatString     = "{0:#,###}";
     gridViewDecimalColumn2.HeaderText       = "Kapasitas (KRG)";
     gridViewDecimalColumn2.IsAutoGenerated  = true;
     gridViewDecimalColumn2.Name             = "Capacity";
     gridViewDecimalColumn2.TextAlignment    = System.Drawing.ContentAlignment.MiddleRight;
     gridViewDecimalColumn2.Width            = 150;
     gridViewTextBoxColumn2.HeaderText       = "Status";
     gridViewTextBoxColumn2.IsVisible        = false;
     gridViewTextBoxColumn2.Name             = "Status";
     gridViewTextBoxColumn2.Width            = 100;
     gridViewCommandColumn1.DefaultText      = "&Kartu";
     gridViewCommandColumn1.HeaderText       = "Kartu";
     gridViewCommandColumn1.IsVisible        = false;
     gridViewCommandColumn1.Name             = "column1";
     gridViewCommandColumn1.UseDefaultText   = true;
     gridViewCommandColumn2.DefaultText      = "&Isi";
     gridViewCommandColumn2.HeaderText       = "Isi";
     gridViewCommandColumn2.Name             = "Isi";
     gridViewCommandColumn2.UseDefaultText   = true;
     gridViewDecimalColumn3.DataType         = typeof(int);
     gridViewDecimalColumn3.FieldName        = "Location";
     gridViewDecimalColumn3.FormatString     = "";
     gridViewDecimalColumn3.HeaderText       = "Location";
     gridViewDecimalColumn3.IsAutoGenerated  = true;
     gridViewDecimalColumn3.IsVisible        = false;
     gridViewDecimalColumn3.Name             = "Location";
     gridViewDecimalColumn3.TextAlignment    = System.Drawing.ContentAlignment.MiddleRight;
     gridViewDateTimeColumn1.FieldName       = "Modified";
     gridViewDateTimeColumn1.FormatString    = "";
     gridViewDateTimeColumn1.HeaderText      = "Modified";
     gridViewDateTimeColumn1.IsAutoGenerated = true;
     gridViewDateTimeColumn1.IsVisible       = false;
     gridViewDateTimeColumn1.Name            = "Modified";
     gridViewTextBoxColumn3.FieldName        = "ModifiedBy";
     gridViewTextBoxColumn3.FormatString     = "";
     gridViewTextBoxColumn3.HeaderText       = "";
     gridViewTextBoxColumn3.IsAutoGenerated  = true;
     gridViewTextBoxColumn3.Name             = "ModifiedBy";
     gridViewCheckBoxColumn1.FieldName       = "Active";
     gridViewCheckBoxColumn1.FormatString    = "";
     gridViewCheckBoxColumn1.HeaderText      = "Active";
     gridViewCheckBoxColumn1.IsAutoGenerated = true;
     gridViewCheckBoxColumn1.IsVisible       = false;
     gridViewCheckBoxColumn1.Name            = "Active";
     this.radGridView1.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewDecimalColumn1,
         gridViewTextBoxColumn1,
         gridViewDecimalColumn2,
         gridViewTextBoxColumn2,
         gridViewCommandColumn1,
         gridViewCommandColumn2,
         gridViewDecimalColumn3,
         gridViewDateTimeColumn1,
         gridViewTextBoxColumn3,
         gridViewCheckBoxColumn1
     });
     this.radGridView1.MasterTemplate.DataSource = this.tierBindingSource;
     this.radGridView1.Name               = "radGridView1";
     this.radGridView1.ShowGroupPanel     = false;
     this.radGridView1.Size               = new System.Drawing.Size(399, 338);
     this.radGridView1.TabIndex           = 1;
     this.radGridView1.Text               = "radGridView1";
     this.radGridView1.CurrentRowChanged += new Telerik.WinControls.UI.CurrentRowChangedEventHandler(this.radGridView1_CurrentRowChanged);
     this.radGridView1.CommandCellClick  += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.radGridView1_CommandCellClick);
     //
     // tierBindingSource
     //
     this.tierBindingSource.DataMember = "tier";
     this.tierBindingSource.DataSource = this.sinarekDataSet;
     //
     // tierTableAdapter
     //
     this.tierTableAdapter.ClearBeforeFill = true;
     //
     // radGridView2
     //
     this.radGridView2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.radGridView2.Font     = new System.Drawing.Font("Segoe UI", 10F);
     this.radGridView2.Location = new System.Drawing.Point(399, 123);
     //
     // radGridView2
     //
     this.radGridView2.MasterTemplate.AllowAddNewRow     = false;
     this.radGridView2.MasterTemplate.AllowColumnReorder = false;
     gridViewDecimalColumn4.HeaderText       = "#";
     gridViewDecimalColumn4.Name             = "NoRow";
     gridViewDecimalColumn4.TextAlignment    = System.Drawing.ContentAlignment.MiddleRight;
     gridViewDecimalColumn4.Width            = 40;
     gridViewComboBoxColumn1.DataSource      = this.supBindingSource;
     gridViewComboBoxColumn1.DataType        = typeof(int);
     gridViewComboBoxColumn1.DisplayMember   = "Name";
     gridViewComboBoxColumn1.FieldName       = "supid";
     gridViewComboBoxColumn1.HeaderText      = "Supplier";
     gridViewComboBoxColumn1.Name            = "Supplier";
     gridViewComboBoxColumn1.ValueMember     = "SupID";
     gridViewComboBoxColumn1.Width           = 110;
     gridViewDateTimeColumn2.FieldName       = "StartDate";
     gridViewDateTimeColumn2.FormatString    = "{0:dd MMM yy}";
     gridViewDateTimeColumn2.HeaderText      = "TGL Masuk";
     gridViewDateTimeColumn2.IsAutoGenerated = true;
     gridViewDateTimeColumn2.Name            = "StartDate";
     gridViewDateTimeColumn2.Width           = 100;
     gridViewDateTimeColumn3.FieldName       = "StartUseDate";
     gridViewDateTimeColumn3.FormatString    = "{0:dd MMM yy}";
     gridViewDateTimeColumn3.HeaderText      = "TGL Pakai";
     gridViewDateTimeColumn3.IsAutoGenerated = true;
     gridViewDateTimeColumn3.Name            = "StartUseDate";
     gridViewDateTimeColumn3.Width           = 100;
     gridViewComboBoxColumn2.DataSource      = this.statbotBindingSource;
     gridViewComboBoxColumn2.DataType        = typeof(int);
     gridViewComboBoxColumn2.DisplayMember   = "Nama";
     gridViewComboBoxColumn2.FieldName       = "statusid";
     gridViewComboBoxColumn2.HeaderText      = "Status";
     gridViewComboBoxColumn2.Name            = "Status";
     gridViewComboBoxColumn2.ValueMember     = "statusid";
     gridViewComboBoxColumn2.Width           = 100;
     gridViewDecimalColumn5.DataType         = typeof(int);
     gridViewDecimalColumn5.FieldName        = "StoreID";
     gridViewDecimalColumn5.FormatString     = "";
     gridViewDecimalColumn5.HeaderText       = "StoreID";
     gridViewDecimalColumn5.IsAutoGenerated  = true;
     gridViewDecimalColumn5.IsVisible        = false;
     gridViewDecimalColumn5.Name             = "StoreID";
     gridViewDecimalColumn5.TextAlignment    = System.Drawing.ContentAlignment.MiddleRight;
     gridViewDecimalColumn6.DataType         = typeof(int);
     gridViewDecimalColumn6.FieldName        = "TierID";
     gridViewDecimalColumn6.FormatString     = "";
     gridViewDecimalColumn6.HeaderText       = "TierID";
     gridViewDecimalColumn6.IsAutoGenerated  = true;
     gridViewDecimalColumn6.IsVisible        = false;
     gridViewDecimalColumn6.Name             = "TierID";
     gridViewDecimalColumn6.TextAlignment    = System.Drawing.ContentAlignment.MiddleRight;
     gridViewDateTimeColumn4.FieldName       = "EndDate";
     gridViewDateTimeColumn4.FormatString    = "";
     gridViewDateTimeColumn4.HeaderText      = "EndDate";
     gridViewDateTimeColumn4.IsAutoGenerated = true;
     gridViewDateTimeColumn4.IsVisible       = false;
     gridViewDateTimeColumn4.Name            = "EndDate";
     gridViewDateTimeColumn5.FieldName       = "EndUseDate";
     gridViewDateTimeColumn5.FormatString    = "";
     gridViewDateTimeColumn5.HeaderText      = "EndUseDate";
     gridViewDateTimeColumn5.IsAutoGenerated = true;
     gridViewDateTimeColumn5.IsVisible       = false;
     gridViewDateTimeColumn5.Name            = "EndUseDate";
     gridViewDecimalColumn7.FieldName        = "PanjarPercent";
     gridViewDecimalColumn7.FormatString     = "";
     gridViewDecimalColumn7.HeaderText       = "PanjarPercent";
     gridViewDecimalColumn7.IsAutoGenerated  = true;
     gridViewDecimalColumn7.IsVisible        = false;
     gridViewDecimalColumn7.Name             = "PanjarPercent";
     gridViewDecimalColumn7.TextAlignment    = System.Drawing.ContentAlignment.MiddleRight;
     gridViewDecimalColumn8.FieldName        = "PanjarCuci";
     gridViewDecimalColumn8.FormatString     = "";
     gridViewDecimalColumn8.HeaderText       = "PanjarCuci";
     gridViewDecimalColumn8.IsAutoGenerated  = true;
     gridViewDecimalColumn8.IsVisible        = false;
     gridViewDecimalColumn8.Name             = "PanjarCuci";
     gridViewDecimalColumn8.TextAlignment    = System.Drawing.ContentAlignment.MiddleRight;
     gridViewDecimalColumn9.DataType         = typeof(int);
     gridViewDecimalColumn9.FieldName        = "StatusID";
     gridViewDecimalColumn9.HeaderText       = "StatusID";
     gridViewDecimalColumn9.IsAutoGenerated  = true;
     gridViewDecimalColumn9.IsVisible        = false;
     gridViewDecimalColumn9.Name             = "StatusID";
     gridViewDecimalColumn9.TextAlignment    = System.Drawing.ContentAlignment.MiddleRight;
     gridViewDateTimeColumn6.FieldName       = "Created";
     gridViewDateTimeColumn6.HeaderText      = "Created";
     gridViewDateTimeColumn6.IsAutoGenerated = true;
     gridViewDateTimeColumn6.IsVisible       = false;
     gridViewDateTimeColumn6.Name            = "Created";
     gridViewTextBoxColumn4.FieldName        = "CreatedBy";
     gridViewTextBoxColumn4.HeaderText       = "CreatedBy";
     gridViewTextBoxColumn4.IsAutoGenerated  = true;
     gridViewTextBoxColumn4.IsVisible        = false;
     gridViewTextBoxColumn4.Name             = "CreatedBy";
     gridViewDateTimeColumn7.FieldName       = "Modified";
     gridViewDateTimeColumn7.HeaderText      = "Modified";
     gridViewDateTimeColumn7.IsAutoGenerated = true;
     gridViewDateTimeColumn7.IsVisible       = false;
     gridViewDateTimeColumn7.Name            = "Modified";
     gridViewDecimalColumn10.DataType        = typeof(int);
     gridViewDecimalColumn10.FieldName       = "SupID";
     gridViewDecimalColumn10.HeaderText      = "SupID";
     gridViewDecimalColumn10.IsAutoGenerated = true;
     gridViewDecimalColumn10.IsVisible       = false;
     gridViewDecimalColumn10.Name            = "SupID";
     gridViewDecimalColumn10.TextAlignment   = System.Drawing.ContentAlignment.MiddleRight;
     gridViewDecimalColumn11.DataType        = typeof(int);
     gridViewDecimalColumn11.FieldName       = "KasID";
     gridViewDecimalColumn11.HeaderText      = "KasID";
     gridViewDecimalColumn11.IsAutoGenerated = true;
     gridViewDecimalColumn11.IsVisible       = false;
     gridViewDecimalColumn11.Name            = "KasID";
     gridViewDecimalColumn11.TextAlignment   = System.Drawing.ContentAlignment.MiddleRight;
     gridViewCheckBoxColumn2.FieldName       = "PrintedM";
     gridViewCheckBoxColumn2.HeaderText      = "PrintedM";
     gridViewCheckBoxColumn2.IsAutoGenerated = true;
     gridViewCheckBoxColumn2.IsVisible       = false;
     gridViewCheckBoxColumn2.Name            = "PrintedM";
     gridViewCheckBoxColumn3.FieldName       = "PrintedP";
     gridViewCheckBoxColumn3.HeaderText      = "PrintedP";
     gridViewCheckBoxColumn3.IsAutoGenerated = true;
     gridViewCheckBoxColumn3.IsVisible       = false;
     gridViewCheckBoxColumn3.Name            = "PrintedP";
     gridViewCheckBoxColumn4.FieldName       = "PrintedL";
     gridViewCheckBoxColumn4.HeaderText      = "PrintedL";
     gridViewCheckBoxColumn4.IsAutoGenerated = true;
     gridViewCheckBoxColumn4.IsVisible       = false;
     gridViewCheckBoxColumn4.Name            = "PrintedL";
     gridViewDecimalColumn12.FieldName       = "TotalLunas";
     gridViewDecimalColumn12.HeaderText      = "TotalLunas";
     gridViewDecimalColumn12.IsAutoGenerated = true;
     gridViewDecimalColumn12.IsVisible       = false;
     gridViewDecimalColumn12.Name            = "TotalLunas";
     gridViewDecimalColumn12.TextAlignment   = System.Drawing.ContentAlignment.MiddleRight;
     gridViewDateTimeColumn8.FieldName       = "TanggalLunas";
     gridViewDateTimeColumn8.HeaderText      = "TanggalLunas";
     gridViewDateTimeColumn8.IsAutoGenerated = true;
     gridViewDateTimeColumn8.IsVisible       = false;
     gridViewDateTimeColumn8.Name            = "TanggalLunas";
     gridViewDecimalColumn13.FieldName       = "TotalNilai";
     gridViewDecimalColumn13.HeaderText      = "TotalNilai";
     gridViewDecimalColumn13.IsAutoGenerated = true;
     gridViewDecimalColumn13.IsVisible       = false;
     gridViewDecimalColumn13.Name            = "TotalNilai";
     gridViewDecimalColumn13.TextAlignment   = System.Drawing.ContentAlignment.MiddleRight;
     gridViewCommandColumn3.DefaultText      = "&View";
     gridViewCommandColumn3.FormatString     = "";
     gridViewCommandColumn3.HeaderText       = "";
     gridViewCommandColumn3.Name             = "cmdView";
     gridViewCommandColumn3.UseDefaultText   = true;
     gridViewTextBoxColumn5.FieldName        = "ModifiedBy";
     gridViewTextBoxColumn5.HeaderText       = "";
     gridViewTextBoxColumn5.IsAutoGenerated  = true;
     gridViewTextBoxColumn5.Name             = "ModifiedBy";
     this.radGridView2.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewDecimalColumn4,
         gridViewComboBoxColumn1,
         gridViewDateTimeColumn2,
         gridViewDateTimeColumn3,
         gridViewComboBoxColumn2,
         gridViewDecimalColumn5,
         gridViewDecimalColumn6,
         gridViewDateTimeColumn4,
         gridViewDateTimeColumn5,
         gridViewDecimalColumn7,
         gridViewDecimalColumn8,
         gridViewDecimalColumn9,
         gridViewDateTimeColumn6,
         gridViewTextBoxColumn4,
         gridViewDateTimeColumn7,
         gridViewDecimalColumn10,
         gridViewDecimalColumn11,
         gridViewCheckBoxColumn2,
         gridViewCheckBoxColumn3,
         gridViewCheckBoxColumn4,
         gridViewDecimalColumn12,
         gridViewDateTimeColumn8,
         gridViewDecimalColumn13,
         gridViewCommandColumn3,
         gridViewTextBoxColumn5
     });
     this.radGridView2.MasterTemplate.DataSource          = this.storeBindingSource;
     this.radGridView2.MasterTemplate.ShowRowHeaderColumn = false;
     this.radGridView2.Name              = "radGridView2";
     this.radGridView2.ReadOnly          = true;
     this.radGridView2.ShowGroupPanel    = false;
     this.radGridView2.Size              = new System.Drawing.Size(603, 338);
     this.radGridView2.TabIndex          = 2;
     this.radGridView2.Text              = "radGridView2";
     this.radGridView2.RowsChanged      += new Telerik.WinControls.UI.GridViewCollectionChangedEventHandler(this.radGridView2_RowsChanged);
     this.radGridView2.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.radGridView2_CommandCellClick);
     //
     // storeBindingSource
     //
     this.storeBindingSource.DataMember = "store";
     this.storeBindingSource.DataSource = this.sinarekDataSet;
     //
     // storeTableAdapter
     //
     this.storeTableAdapter.ClearBeforeFill = true;
     //
     // supTableAdapter
     //
     this.supTableAdapter.ClearBeforeFill = true;
     //
     // statbotTableAdapter
     //
     this.statbotTableAdapter.ClearBeforeFill = true;
     //
     // frmTier
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1002, 461);
     this.Controls.Add(this.radGridView2);
     this.Controls.Add(this.radGridView1);
     this.Controls.Add(this.radGroupBox1);
     this.Font            = new System.Drawing.Font("Segoe UI", 10F);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Name            = "frmTier";
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.Text      = "Gudang Botol";
     this.ThemeName = "ControlDefault";
     this.Load     += new System.EventHandler(this.frmTier_Load);
     ((System.ComponentModel.ISupportInitialize)(this.supBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.sinarekDataSet)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.statbotBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).EndInit();
     this.radGroupBox1.ResumeLayout(false);
     this.radGroupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radSeparator1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnLihat)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnDeactive)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnAdd)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtKapasitas)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNama)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tierBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.storeBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).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()
        {
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewHyperlinkColumn gridViewHyperlinkColumn1 = new Telerik.WinControls.UI.GridViewHyperlinkColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn2 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn3 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn4 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn5 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn6 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn7 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn8 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn9 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn1 = new Telerik.WinControls.UI.GridViewCommandColumn();
            this.radPanel1 = new Telerik.WinControls.UI.RadPanel();
            this.statusStrip1 = new System.Windows.Forms.StatusStrip();
            this.statusMessage = new System.Windows.Forms.ToolStripStatusLabel();
            this.statusF5 = new System.Windows.Forms.ToolStripStatusLabel();
            this.radGroupBox1 = new Telerik.WinControls.UI.RadGroupBox();
            this.GridViewShowData = new Telerik.WinControls.UI.RadGridView();
            ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).BeginInit();
            this.radPanel1.SuspendLayout();
            this.statusStrip1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).BeginInit();
            this.radGroupBox1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.GridViewShowData)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.GridViewShowData.MasterTemplate)).BeginInit();
            this.SuspendLayout();
            // 
            // radPanel1
            // 
            this.radPanel1.Controls.Add(this.statusStrip1);
            this.radPanel1.Controls.Add(this.radGroupBox1);
            this.radPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.radPanel1.Location = new System.Drawing.Point(0, 0);
            this.radPanel1.Margin = new System.Windows.Forms.Padding(4);
            this.radPanel1.Name = "radPanel1";
            this.radPanel1.Size = new System.Drawing.Size(784, 561);
            this.radPanel1.TabIndex = 0;
            // 
            // statusStrip1
            // 
            this.statusStrip1.BackColor = System.Drawing.Color.Khaki;
            this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.statusMessage,
            this.statusF5});
            this.statusStrip1.Location = new System.Drawing.Point(0, 539);
            this.statusStrip1.Name = "statusStrip1";
            this.statusStrip1.Padding = new System.Windows.Forms.Padding(1, 0, 19, 0);
            this.statusStrip1.Size = new System.Drawing.Size(784, 22);
            this.statusStrip1.TabIndex = 1;
            this.statusStrip1.Text = "statusStrip1";
            // 
            // statusMessage
            // 
            this.statusMessage.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.statusMessage.Name = "statusMessage";
            this.statusMessage.Size = new System.Drawing.Size(646, 17);
            this.statusMessage.Spring = true;
            this.statusMessage.Text = "toolStripStatusLabel1";
            this.statusMessage.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // statusF5
            // 
            this.statusF5.Name = "statusF5";
            this.statusF5.Size = new System.Drawing.Size(118, 17);
            this.statusF5.Text = "toolStripStatusLabel2";
            this.statusF5.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // radGroupBox1
            // 
            this.radGroupBox1.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox1.Controls.Add(this.GridViewShowData);
            this.radGroupBox1.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.radGroupBox1.GroupBoxStyle = Telerik.WinControls.UI.RadGroupBoxStyle.Office;
            this.radGroupBox1.HeaderText = "แสดงข้อมูล";
            this.radGroupBox1.Location = new System.Drawing.Point(7, 4);
            this.radGroupBox1.Margin = new System.Windows.Forms.Padding(4);
            this.radGroupBox1.Name = "radGroupBox1";
            this.radGroupBox1.Padding = new System.Windows.Forms.Padding(3, 22, 3, 2);
            // 
            // 
            // 
            this.radGroupBox1.RootElement.Padding = new System.Windows.Forms.Padding(3, 22, 3, 2);
            this.radGroupBox1.Size = new System.Drawing.Size(764, 520);
            this.radGroupBox1.TabIndex = 0;
            this.radGroupBox1.Text = "แสดงข้อมูล";
            // 
            // GridViewShowData
            // 
            this.GridViewShowData.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.GridViewShowData.Location = new System.Drawing.Point(16, 26);
            this.GridViewShowData.Margin = new System.Windows.Forms.Padding(4);
            // 
            // GridViewShowData
            // 
            gridViewTextBoxColumn1.FieldName = "DocId";
            gridViewTextBoxColumn1.HeaderText = "เลขที่เอกสาร";
            gridViewTextBoxColumn1.Name = "DocId";
            gridViewTextBoxColumn1.ReadOnly = true;
            gridViewHyperlinkColumn1.FieldName = "OutOfficeId";
            gridViewHyperlinkColumn1.HeaderText = "ลำดับ";
            gridViewHyperlinkColumn1.Name = "OutOfficeId";
            gridViewTextBoxColumn2.FieldName = "EmplId";
            gridViewTextBoxColumn2.HeaderText = "รหัสพนักงาน";
            gridViewTextBoxColumn2.Name = "EmplId";
            gridViewTextBoxColumn2.ReadOnly = true;
            gridViewTextBoxColumn3.FieldName = "EmplFullName";
            gridViewTextBoxColumn3.HeaderText = "ชื่อ-สกุล";
            gridViewTextBoxColumn3.Name = "EmplFullName";
            gridViewTextBoxColumn3.ReadOnly = true;
            gridViewTextBoxColumn4.FieldName = "Dimention";
            gridViewTextBoxColumn4.HeaderText = "แผนก";
            gridViewTextBoxColumn4.Name = "Dimention";
            gridViewTextBoxColumn4.ReadOnly = true;
            gridViewTextBoxColumn5.FieldName = "Dept";
            gridViewTextBoxColumn5.HeaderText = "ตำแหน่ง";
            gridViewTextBoxColumn5.Name = "Dept";
            gridViewTextBoxColumn5.ReadOnly = true;
            gridViewTextBoxColumn6.FieldName = "OutType";
            gridViewTextBoxColumn6.HeaderText = "ออกนอก";
            gridViewTextBoxColumn6.Name = "OutType";
            gridViewTextBoxColumn6.ReadOnly = true;
            gridViewTextBoxColumn7.FieldName = "CreatedName";
            gridViewTextBoxColumn7.HeaderText = "สร้างโดย";
            gridViewTextBoxColumn7.Name = "CreatedName";
            gridViewTextBoxColumn7.ReadOnly = true;
            gridViewTextBoxColumn8.FieldName = "HeadApproved";
            gridViewTextBoxColumn8.HeaderText = "หน./ผช.";
            gridViewTextBoxColumn8.Name = "HeadApproved";
            gridViewTextBoxColumn8.ReadOnly = true;
            gridViewTextBoxColumn9.FieldName = "HeadApprovedName";
            gridViewTextBoxColumn9.HeaderText = "ผู้อนุมัติ";
            gridViewTextBoxColumn9.Name = "HeadApprovedName";
            gridViewTextBoxColumn9.ReadOnly = true;
            gridViewCommandColumn1.HeaderText = "ยกเลิก";
            gridViewCommandColumn1.Name = "Delete";
            this.GridViewShowData.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn1,
            gridViewHyperlinkColumn1,
            gridViewTextBoxColumn2,
            gridViewTextBoxColumn3,
            gridViewTextBoxColumn4,
            gridViewTextBoxColumn5,
            gridViewTextBoxColumn6,
            gridViewTextBoxColumn7,
            gridViewTextBoxColumn8,
            gridViewTextBoxColumn9,
            gridViewCommandColumn1});
            this.GridViewShowData.MasterTemplate.ShowGroupedColumns = true;
            this.GridViewShowData.Name = "GridViewShowData";
            this.GridViewShowData.ShowGroupPanel = false;
            this.GridViewShowData.Size = new System.Drawing.Size(739, 488);
            this.GridViewShowData.TabIndex = 1;
            this.GridViewShowData.CellClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.GridViewShowData_CellClick);
            this.GridViewShowData.CellFormatting += new Telerik.WinControls.UI.CellFormattingEventHandler(this.GridViewShowData_CellFormatting);
            this.GridViewShowData.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.GridViewShowData_CommandCellClick);
            // 
            // FormDeleteEmpl
            // 
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
            this.AutoScroll = true;
            this.ClientSize = new System.Drawing.Size(784, 561);
            this.Controls.Add(this.radPanel1);
            this.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.Margin = new System.Windows.Forms.Padding(4);
            this.Name = "FormDeleteEmpl";
            this.Text = "ลบเอกสารออกนอกออนไลน์";
            this.Load += new System.EventHandler(this.FormReportEmpl_Load);
            ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).EndInit();
            this.radPanel1.ResumeLayout(false);
            this.radPanel1.PerformLayout();
            this.statusStrip1.ResumeLayout(false);
            this.statusStrip1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).EndInit();
            this.radGroupBox1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.GridViewShowData.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.GridViewShowData)).EndInit();
            this.ResumeLayout(false);

        }
Exemple #16
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn2 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn3 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn1 = new Telerik.WinControls.UI.GridViewCommandColumn();
     this.TxtImporteDebe      = new Framework.WinForm.Controls.CustomControls.DecimalTextBox();
     this.TxtImporte          = new Framework.WinForm.Controls.CustomControls.DecimalTextBox();
     this.radLabel4           = new Telerik.WinControls.UI.RadLabel();
     this.radLabel5           = new Telerik.WinControls.UI.RadLabel();
     this.radLabel7           = new Telerik.WinControls.UI.RadLabel();
     this.BtnGuardar          = new Telerik.WinControls.UI.RadButton();
     this.BtnCancelar         = new Telerik.WinControls.UI.RadButton();
     this.metroLabel4         = new Telerik.WinControls.UI.RadLabel();
     this.metroLabel10        = new Telerik.WinControls.UI.RadLabel();
     this.metroLabel9         = new Telerik.WinControls.UI.RadLabel();
     this.metroLabel8         = new Telerik.WinControls.UI.RadLabel();
     this.radLabel2           = new Telerik.WinControls.UI.RadLabel();
     this.ckdRegistraIVA      = new Telerik.WinControls.UI.RadCheckBox();
     this.DtpFecha            = new Telerik.WinControls.UI.RadDateTimePicker();
     this.radLabel3           = new Telerik.WinControls.UI.RadLabel();
     this.radLabel1           = new Telerik.WinControls.UI.RadLabel();
     this.TxtConcepto         = new Telerik.WinControls.UI.RadTextBox();
     this.metroLabel3         = new Telerik.WinControls.UI.RadLabel();
     this.CbxSucursal         = new LaPaz.Win.Forms.Util.UcFiltroSucursal();
     this.radLabel6           = new Telerik.WinControls.UI.RadLabel();
     this.CbxTipoGastos       = new LaPaz.Win.Forms.Util.UcFiltroTiposGastos();
     this.CbxCentroCosto      = new LaPaz.Win.Forms.Util.UcFiltroCentrosCostos();
     this.CbxProveedor        = new LaPaz.Win.Forms.Util.UcFiltroProveedor();
     this.CbxSucursalGasto    = new LaPaz.Win.Forms.Util.UcFiltroSucursal();
     this.CbxTipoComprobante  = new LaPaz.Win.Forms.Util.UcFiltroTiposComprobantes();
     this.radLabel8           = new Telerik.WinControls.UI.RadLabel();
     this.TxtSubTotal         = new Framework.WinForm.Controls.CustomControls.DecimalTextBox();
     this.DtpFechaImputacion  = new Telerik.WinControls.UI.RadDateTimePicker();
     this.radLabel9           = new Telerik.WinControls.UI.RadLabel();
     this.TxtNroComprobante2  = new Framework.WinForm.Controls.CustomControls.NumericTextBox();
     this.radLabel10          = new Telerik.WinControls.UI.RadLabel();
     this.CbxLetraComprobante = new LaPaz.Win.Forms.Util.UcFiltroLetraComprobante();
     this.BtnAgregarTipoGasto = new Telerik.WinControls.UI.RadButton();
     this.TxtNroComprobante1  = new Framework.WinForm.Controls.CustomControls.NumericTextBox();
     this.BtnAgregarProveedor = new Telerik.WinControls.UI.RadButton();
     this.radGroupBox1        = new Telerik.WinControls.UI.RadGroupBox();
     this.radGroupBox3        = new Telerik.WinControls.UI.RadGroupBox();
     this.TxtRecargo          = new Framework.WinForm.Controls.CustomControls.DecimalTextBox();
     this.BtnAgregar          = new Telerik.WinControls.UI.RadButton();
     this.GridPagos           = new Telerik.WinControls.UI.RadGridView();
     ((System.ComponentModel.ISupportInitialize)(this.TxtImporteDebe)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtImporte)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BtnGuardar)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BtnCancelar)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.metroLabel4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.metroLabel10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.metroLabel9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.metroLabel8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckdRegistraIVA)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DtpFecha)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtConcepto)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.metroLabel3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtSubTotal)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DtpFechaImputacion)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtNroComprobante2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BtnAgregarTipoGasto)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtNroComprobante1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BtnAgregarProveedor)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).BeginInit();
     this.radGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox3)).BeginInit();
     this.radGroupBox3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TxtRecargo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BtnAgregar)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridPagos)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridPagos.MasterTemplate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // TxtImporteDebe
     //
     this.TxtImporteDebe.AceptaNegativos = false;
     this.TxtImporteDebe.Enabled         = false;
     this.TxtImporteDebe.Font            = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.TxtImporteDebe.Location        = new System.Drawing.Point(147, 343);
     this.TxtImporteDebe.MaxLength       = 10;
     this.TxtImporteDebe.Name            = "TxtImporteDebe";
     this.TxtImporteDebe.Size            = new System.Drawing.Size(170, 26);
     this.TxtImporteDebe.TabIndex        = 0;
     this.TxtImporteDebe.TabStop         = false;
     this.TxtImporteDebe.TextAlign       = System.Windows.Forms.HorizontalAlignment.Right;
     this.TxtImporteDebe.ThemeName       = "TelerikMetroBlue";
     //
     // TxtImporte
     //
     this.TxtImporte.AceptaNegativos = false;
     this.TxtImporte.Enabled         = false;
     this.TxtImporte.Font            = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.TxtImporte.Location        = new System.Drawing.Point(147, 104);
     this.TxtImporte.MaxLength       = 10;
     this.TxtImporte.Name            = "TxtImporte";
     this.TxtImporte.Size            = new System.Drawing.Size(170, 26);
     this.TxtImporte.TabIndex        = 0;
     this.TxtImporte.TabStop         = false;
     this.TxtImporte.TextAlign       = System.Windows.Forms.HorizontalAlignment.Right;
     this.TxtImporte.ThemeName       = "TelerikMetroBlue";
     //
     // radLabel4
     //
     this.radLabel4.Font      = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel4.Location  = new System.Drawing.Point(44, 107);
     this.radLabel4.Name      = "radLabel4";
     this.radLabel4.Size      = new System.Drawing.Size(103, 24);
     this.radLabel4.TabIndex  = 0;
     this.radLabel4.Text      = "Importe Total:";
     this.radLabel4.ThemeName = "TelerikMetroBlue";
     //
     // radLabel5
     //
     this.radLabel5.Font      = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel5.Location  = new System.Drawing.Point(44, 65);
     this.radLabel5.Name      = "radLabel5";
     this.radLabel5.Size      = new System.Drawing.Size(67, 24);
     this.radLabel5.TabIndex  = 0;
     this.radLabel5.Text      = "Recargo:";
     this.radLabel5.ThemeName = "TelerikMetroBlue";
     //
     // radLabel7
     //
     this.radLabel7.Font      = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel7.Location  = new System.Drawing.Point(44, 344);
     this.radLabel7.Name      = "radLabel7";
     this.radLabel7.Size      = new System.Drawing.Size(87, 24);
     this.radLabel7.TabIndex  = 0;
     this.radLabel7.Text      = "Falta pagar:";
     this.radLabel7.ThemeName = "TelerikMetroBlue";
     //
     // BtnGuardar
     //
     this.BtnGuardar.Font      = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.BtnGuardar.Location  = new System.Drawing.Point(1058, 419);
     this.BtnGuardar.Name      = "BtnGuardar";
     this.BtnGuardar.Size      = new System.Drawing.Size(100, 30);
     this.BtnGuardar.TabIndex  = 2;
     this.BtnGuardar.Text      = "Guardar";
     this.BtnGuardar.ThemeName = "TelerikMetroBlue";
     this.BtnGuardar.Click    += new System.EventHandler(this.BtnGuardar_Click);
     //
     // BtnCancelar
     //
     this.BtnCancelar.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.BtnCancelar.Font         = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.BtnCancelar.Location     = new System.Drawing.Point(1171, 419);
     this.BtnCancelar.Name         = "BtnCancelar";
     this.BtnCancelar.Size         = new System.Drawing.Size(100, 30);
     this.BtnCancelar.TabIndex     = 3;
     this.BtnCancelar.Text         = "Cancelar";
     this.BtnCancelar.ThemeName    = "TelerikMetroBlue";
     //
     // metroLabel4
     //
     this.metroLabel4.Font      = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.metroLabel4.Location  = new System.Drawing.Point(14, 63);
     this.metroLabel4.Name      = "metroLabel4";
     this.metroLabel4.Size      = new System.Drawing.Size(50, 24);
     this.metroLabel4.TabIndex  = 60;
     this.metroLabel4.Text      = "Fecha:";
     this.metroLabel4.ThemeName = "TelerikMetroBlue";
     //
     // metroLabel10
     //
     this.metroLabel10.Font      = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.metroLabel10.Location  = new System.Drawing.Point(14, 186);
     this.metroLabel10.Name      = "metroLabel10";
     this.metroLabel10.Size      = new System.Drawing.Size(81, 24);
     this.metroLabel10.TabIndex  = 75;
     this.metroLabel10.Text      = "Proveedor:";
     this.metroLabel10.ThemeName = "TelerikMetroBlue";
     //
     // metroLabel9
     //
     this.metroLabel9.Font      = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.metroLabel9.Location  = new System.Drawing.Point(14, 307);
     this.metroLabel9.Name      = "metroLabel9";
     this.metroLabel9.Size      = new System.Drawing.Size(106, 24);
     this.metroLabel9.TabIndex  = 74;
     this.metroLabel9.Text      = "Tipo de Gasto:";
     this.metroLabel9.ThemeName = "TelerikMetroBlue";
     //
     // metroLabel8
     //
     this.metroLabel8.Font      = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.metroLabel8.Location  = new System.Drawing.Point(14, 146);
     this.metroLabel8.Name      = "metroLabel8";
     this.metroLabel8.Size      = new System.Drawing.Size(67, 24);
     this.metroLabel8.TabIndex  = 73;
     this.metroLabel8.Text      = "Sucursal:";
     this.metroLabel8.ThemeName = "TelerikMetroBlue";
     //
     // radLabel2
     //
     this.radLabel2.Font      = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel2.Location  = new System.Drawing.Point(14, 267);
     this.radLabel2.Name      = "radLabel2";
     this.radLabel2.Size      = new System.Drawing.Size(132, 24);
     this.radLabel2.TabIndex  = 81;
     this.radLabel2.Text      = "Sucursal de Gasto:";
     this.radLabel2.ThemeName = "TelerikMetroBlue";
     //
     // ckdRegistraIVA
     //
     this.ckdRegistraIVA.Font      = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ckdRegistraIVA.Location  = new System.Drawing.Point(528, 186);
     this.ckdRegistraIVA.Name      = "ckdRegistraIVA";
     this.ckdRegistraIVA.Size      = new System.Drawing.Size(210, 24);
     this.ckdRegistraIVA.TabIndex  = 15;
     this.ckdRegistraIVA.Text      = "Registra I.V.A. para Compra";
     this.ckdRegistraIVA.ThemeName = "TelerikMetroBlue";
     //
     // DtpFecha
     //
     this.DtpFecha.Enabled       = false;
     this.DtpFecha.Font          = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.DtpFecha.Format        = System.Windows.Forms.DateTimePickerFormat.Short;
     this.DtpFecha.Location      = new System.Drawing.Point(146, 61);
     this.DtpFecha.MaxDate       = new System.DateTime(9998, 12, 31, 0, 0, 0, 0);
     this.DtpFecha.MinDate       = new System.DateTime(((long)(0)));
     this.DtpFecha.Name          = "DtpFecha";
     this.DtpFecha.NullableValue = new System.DateTime(2014, 11, 25, 20, 7, 31, 826);
     this.DtpFecha.NullDate      = new System.DateTime(((long)(0)));
     this.DtpFecha.Size          = new System.Drawing.Size(100, 29);
     this.DtpFecha.TabIndex      = 2;
     this.DtpFecha.TabStop       = false;
     this.DtpFecha.Text          = "25/11/2014";
     this.DtpFecha.ThemeName     = "TelerikMetroBlue";
     this.DtpFecha.Value         = new System.DateTime(2014, 11, 25, 20, 7, 31, 826);
     //
     // radLabel3
     //
     this.radLabel3.Font      = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel3.Location  = new System.Drawing.Point(14, 227);
     this.radLabel3.Name      = "radLabel3";
     this.radLabel3.Size      = new System.Drawing.Size(122, 24);
     this.radLabel3.TabIndex  = 88;
     this.radLabel3.Text      = "Centro de Costo:";
     this.radLabel3.ThemeName = "TelerikMetroBlue";
     //
     // radLabel1
     //
     this.radLabel1.Font      = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel1.Location  = new System.Drawing.Point(528, 63);
     this.radLabel1.Name      = "radLabel1";
     this.radLabel1.Size      = new System.Drawing.Size(105, 24);
     this.radLabel1.TabIndex  = 89;
     this.radLabel1.Text      = "Comprobante:";
     this.radLabel1.ThemeName = "TelerikMetroBlue";
     //
     // TxtConcepto
     //
     this.TxtConcepto.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.TxtConcepto.Font            = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.TxtConcepto.Location        = new System.Drawing.Point(146, 20);
     this.TxtConcepto.MaxLength       = 100;
     this.TxtConcepto.Name            = "TxtConcepto";
     this.TxtConcepto.Size            = new System.Drawing.Size(738, 26);
     this.TxtConcepto.TabIndex        = 1;
     this.TxtConcepto.TabStop         = false;
     this.TxtConcepto.ThemeName       = "TelerikMetroBlue";
     //
     // metroLabel3
     //
     this.metroLabel3.Font      = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.metroLabel3.Location  = new System.Drawing.Point(14, 21);
     this.metroLabel3.Name      = "metroLabel3";
     this.metroLabel3.Size      = new System.Drawing.Size(77, 24);
     this.metroLabel3.TabIndex  = 91;
     this.metroLabel3.Text      = "Concepto:";
     this.metroLabel3.ThemeName = "TelerikMetroBlue";
     //
     // CbxSucursal
     //
     this.CbxSucursal.Location   = new System.Drawing.Point(146, 145);
     this.CbxSucursal.Name       = "CbxSucursal";
     this.CbxSucursal.Size       = new System.Drawing.Size(277, 27);
     this.CbxSucursal.SucursalId = null;
     this.CbxSucursal.TabIndex   = 4;
     //
     // radLabel6
     //
     this.radLabel6.Font      = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel6.Location  = new System.Drawing.Point(44, 23);
     this.radLabel6.Name      = "radLabel6";
     this.radLabel6.Size      = new System.Drawing.Size(65, 24);
     this.radLabel6.TabIndex  = 0;
     this.radLabel6.Text      = "Importe:";
     this.radLabel6.ThemeName = "TelerikMetroBlue";
     //
     // CbxTipoGastos
     //
     this.CbxTipoGastos.Location    = new System.Drawing.Point(146, 306);
     this.CbxTipoGastos.Name        = "CbxTipoGastos";
     this.CbxTipoGastos.Size        = new System.Drawing.Size(277, 27);
     this.CbxTipoGastos.TabIndex    = 9;
     this.CbxTipoGastos.TipoGastoId = null;
     //
     // CbxCentroCosto
     //
     this.CbxCentroCosto.CentrosCostoId = null;
     this.CbxCentroCosto.Location       = new System.Drawing.Point(146, 226);
     this.CbxCentroCosto.Name           = "CbxCentroCosto";
     this.CbxCentroCosto.Size           = new System.Drawing.Size(277, 27);
     this.CbxCentroCosto.TabIndex       = 7;
     //
     // CbxProveedor
     //
     this.CbxProveedor.EsGasto     = false;
     this.CbxProveedor.Location    = new System.Drawing.Point(146, 185);
     this.CbxProveedor.Name        = "CbxProveedor";
     this.CbxProveedor.ProveedorId = null;
     this.CbxProveedor.Size        = new System.Drawing.Size(277, 27);
     this.CbxProveedor.TabIndex    = 5;
     //
     // CbxSucursalGasto
     //
     this.CbxSucursalGasto.Location   = new System.Drawing.Point(146, 266);
     this.CbxSucursalGasto.Name       = "CbxSucursalGasto";
     this.CbxSucursalGasto.Size       = new System.Drawing.Size(277, 27);
     this.CbxSucursalGasto.SucursalId = null;
     this.CbxSucursalGasto.TabIndex   = 8;
     //
     // CbxTipoComprobante
     //
     this.CbxTipoComprobante.Location = new System.Drawing.Point(668, 62);
     this.CbxTipoComprobante.Name     = "CbxTipoComprobante";
     this.CbxTipoComprobante.Size     = new System.Drawing.Size(216, 27);
     this.CbxTipoComprobante.TabIndex = 11;
     //
     // radLabel8
     //
     this.radLabel8.Font      = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel8.Location  = new System.Drawing.Point(14, 106);
     this.radLabel8.Name      = "radLabel8";
     this.radLabel8.Size      = new System.Drawing.Size(116, 24);
     this.radLabel8.TabIndex  = 62;
     this.radLabel8.Text      = "Fecha Contable:";
     this.radLabel8.ThemeName = "TelerikMetroBlue";
     //
     // TxtSubTotal
     //
     this.TxtSubTotal.AceptaNegativos = false;
     this.TxtSubTotal.Font            = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.TxtSubTotal.Location        = new System.Drawing.Point(147, 19);
     this.TxtSubTotal.MaxLength       = 10;
     this.TxtSubTotal.Name            = "TxtSubTotal";
     this.TxtSubTotal.Size            = new System.Drawing.Size(170, 26);
     this.TxtSubTotal.TabIndex        = 1;
     this.TxtSubTotal.TabStop         = false;
     this.TxtSubTotal.TextAlign       = System.Windows.Forms.HorizontalAlignment.Right;
     this.TxtSubTotal.ThemeName       = "TelerikMetroBlue";
     this.TxtSubTotal.Validated      += new System.EventHandler(this.TxtSubTotal_Validated);
     //
     // DtpFechaImputacion
     //
     this.DtpFechaImputacion.Font          = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.DtpFechaImputacion.Format        = System.Windows.Forms.DateTimePickerFormat.Short;
     this.DtpFechaImputacion.Location      = new System.Drawing.Point(146, 104);
     this.DtpFechaImputacion.MaxDate       = new System.DateTime(9998, 12, 31, 0, 0, 0, 0);
     this.DtpFechaImputacion.MinDate       = new System.DateTime(((long)(0)));
     this.DtpFechaImputacion.Name          = "DtpFechaImputacion";
     this.DtpFechaImputacion.NullableValue = new System.DateTime(2014, 11, 25, 20, 7, 31, 826);
     this.DtpFechaImputacion.NullDate      = new System.DateTime(((long)(0)));
     this.DtpFechaImputacion.Size          = new System.Drawing.Size(100, 29);
     this.DtpFechaImputacion.TabIndex      = 3;
     this.DtpFechaImputacion.TabStop       = false;
     this.DtpFechaImputacion.Text          = "25/11/2014";
     this.DtpFechaImputacion.ThemeName     = "TelerikMetroBlue";
     this.DtpFechaImputacion.Value         = new System.DateTime(2014, 11, 25, 20, 7, 31, 826);
     //
     // radLabel9
     //
     this.radLabel9.Font      = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel9.Location  = new System.Drawing.Point(528, 146);
     this.radLabel9.Name      = "radLabel9";
     this.radLabel9.Size      = new System.Drawing.Size(139, 24);
     this.radLabel9.TabIndex  = 90;
     this.radLabel9.Text      = "Nro. Comprobante:";
     this.radLabel9.ThemeName = "TelerikMetroBlue";
     //
     // TxtNroComprobante2
     //
     this.TxtNroComprobante2.DecimalNumbers = 2;
     this.TxtNroComprobante2.DecimalText    = new decimal(new int[] {
         0,
         0,
         0,
         0
     });
     this.TxtNroComprobante2.Font         = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.TxtNroComprobante2.ForeColor    = System.Drawing.Color.Black;
     this.TxtNroComprobante2.Format       = "^(\\-?)(\\d*)(\\,?)(\\d?)(\\d?)$";
     this.TxtNroComprobante2.HasNegatives = true;
     this.TxtNroComprobante2.Location     = new System.Drawing.Point(744, 145);
     this.TxtNroComprobante2.MaxLength    = 8;
     this.TxtNroComprobante2.Name         = "TxtNroComprobante2";
     this.TxtNroComprobante2.Size         = new System.Drawing.Size(140, 26);
     this.TxtNroComprobante2.TabIndex     = 14;
     this.TxtNroComprobante2.TabStop      = false;
     this.TxtNroComprobante2.Text         = "0";
     this.TxtNroComprobante2.TextAlign    = System.Windows.Forms.HorizontalAlignment.Right;
     this.TxtNroComprobante2.ThemeName    = "TelerikMetroBlue";
     //
     // radLabel10
     //
     this.radLabel10.Font      = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel10.Location  = new System.Drawing.Point(528, 105);
     this.radLabel10.Name      = "radLabel10";
     this.radLabel10.Size      = new System.Drawing.Size(45, 24);
     this.radLabel10.TabIndex  = 91;
     this.radLabel10.Text      = "Letra:";
     this.radLabel10.ThemeName = "TelerikMetroBlue";
     //
     // CbxLetraComprobante
     //
     this.CbxLetraComprobante.Letra    = "";
     this.CbxLetraComprobante.Location = new System.Drawing.Point(668, 104);
     this.CbxLetraComprobante.Name     = "CbxLetraComprobante";
     this.CbxLetraComprobante.Size     = new System.Drawing.Size(169, 27);
     this.CbxLetraComprobante.TabIndex = 12;
     //
     // BtnAgregarTipoGasto
     //
     this.BtnAgregarTipoGasto.DisplayStyle   = Telerik.WinControls.DisplayStyle.Image;
     this.BtnAgregarTipoGasto.Image          = global::LaPaz.Win.Properties.Resources.Add_New_blue;
     this.BtnAgregarTipoGasto.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.BtnAgregarTipoGasto.Location       = new System.Drawing.Point(456, 304);
     this.BtnAgregarTipoGasto.Name           = "BtnAgregarTipoGasto";
     this.BtnAgregarTipoGasto.Size           = new System.Drawing.Size(30, 30);
     this.BtnAgregarTipoGasto.TabIndex       = 10;
     this.BtnAgregarTipoGasto.ThemeName      = "TelerikMetroBlue";
     this.BtnAgregarTipoGasto.Click         += new System.EventHandler(this.BtnAgregarTipoGasto_Click);
     //
     // TxtNroComprobante1
     //
     this.TxtNroComprobante1.DecimalNumbers = 2;
     this.TxtNroComprobante1.DecimalText    = new decimal(new int[] {
         0,
         0,
         0,
         0
     });
     this.TxtNroComprobante1.Font         = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.TxtNroComprobante1.ForeColor    = System.Drawing.Color.Black;
     this.TxtNroComprobante1.Format       = "^(\\-?)(\\d*)(\\,?)(\\d?)(\\d?)$";
     this.TxtNroComprobante1.HasNegatives = true;
     this.TxtNroComprobante1.Location     = new System.Drawing.Point(668, 145);
     this.TxtNroComprobante1.MaxLength    = 4;
     this.TxtNroComprobante1.Name         = "TxtNroComprobante1";
     this.TxtNroComprobante1.Size         = new System.Drawing.Size(70, 26);
     this.TxtNroComprobante1.TabIndex     = 13;
     this.TxtNroComprobante1.TabStop      = false;
     this.TxtNroComprobante1.Text         = "0";
     this.TxtNroComprobante1.TextAlign    = System.Windows.Forms.HorizontalAlignment.Right;
     this.TxtNroComprobante1.ThemeName    = "TelerikMetroBlue";
     //
     // BtnAgregarProveedor
     //
     this.BtnAgregarProveedor.DisplayStyle   = Telerik.WinControls.DisplayStyle.Image;
     this.BtnAgregarProveedor.Image          = global::LaPaz.Win.Properties.Resources.Add_New_blue;
     this.BtnAgregarProveedor.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.BtnAgregarProveedor.Location       = new System.Drawing.Point(456, 183);
     this.BtnAgregarProveedor.Name           = "BtnAgregarProveedor";
     this.BtnAgregarProveedor.Size           = new System.Drawing.Size(30, 30);
     this.BtnAgregarProveedor.TabIndex       = 6;
     this.BtnAgregarProveedor.ThemeName      = "TelerikMetroBlue";
     this.BtnAgregarProveedor.Click         += new System.EventHandler(this.BtnAgregarProveedor_Click);
     //
     // radGroupBox1
     //
     this.radGroupBox1.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.radGroupBox1.Controls.Add(this.metroLabel3);
     this.radGroupBox1.Controls.Add(this.BtnAgregarProveedor);
     this.radGroupBox1.Controls.Add(this.CbxSucursal);
     this.radGroupBox1.Controls.Add(this.TxtNroComprobante1);
     this.radGroupBox1.Controls.Add(this.TxtConcepto);
     this.radGroupBox1.Controls.Add(this.CbxTipoGastos);
     this.radGroupBox1.Controls.Add(this.BtnAgregarTipoGasto);
     this.radGroupBox1.Controls.Add(this.radLabel1);
     this.radGroupBox1.Controls.Add(this.CbxCentroCosto);
     this.radGroupBox1.Controls.Add(this.CbxLetraComprobante);
     this.radGroupBox1.Controls.Add(this.radLabel3);
     this.radGroupBox1.Controls.Add(this.radLabel10);
     this.radGroupBox1.Controls.Add(this.CbxProveedor);
     this.radGroupBox1.Controls.Add(this.DtpFecha);
     this.radGroupBox1.Controls.Add(this.TxtNroComprobante2);
     this.radGroupBox1.Controls.Add(this.CbxSucursalGasto);
     this.radGroupBox1.Controls.Add(this.metroLabel4);
     this.radGroupBox1.Controls.Add(this.ckdRegistraIVA);
     this.radGroupBox1.Controls.Add(this.radLabel9);
     this.radGroupBox1.Controls.Add(this.CbxTipoComprobante);
     this.radGroupBox1.Controls.Add(this.metroLabel10);
     this.radGroupBox1.Controls.Add(this.radLabel2);
     this.radGroupBox1.Controls.Add(this.DtpFechaImputacion);
     this.radGroupBox1.Controls.Add(this.radLabel8);
     this.radGroupBox1.Controls.Add(this.metroLabel9);
     this.radGroupBox1.Controls.Add(this.metroLabel8);
     this.radGroupBox1.FooterImageIndex = -1;
     this.radGroupBox1.FooterImageKey   = "";
     this.radGroupBox1.HeaderImageIndex = -1;
     this.radGroupBox1.HeaderImageKey   = "";
     this.radGroupBox1.HeaderMargin     = new System.Windows.Forms.Padding(0);
     this.radGroupBox1.HeaderText       = "";
     this.radGroupBox1.Location         = new System.Drawing.Point(15, 12);
     this.radGroupBox1.Name             = "radGroupBox1";
     this.radGroupBox1.Padding          = new System.Windows.Forms.Padding(2, 18, 2, 2);
     this.radGroupBox1.Size             = new System.Drawing.Size(933, 388);
     this.radGroupBox1.TabIndex         = 0;
     //
     // radGroupBox3
     //
     this.radGroupBox3.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.radGroupBox3.Controls.Add(this.TxtRecargo);
     this.radGroupBox3.Controls.Add(this.BtnAgregar);
     this.radGroupBox3.Controls.Add(this.TxtImporteDebe);
     this.radGroupBox3.Controls.Add(this.radLabel7);
     this.radGroupBox3.Controls.Add(this.radLabel6);
     this.radGroupBox3.Controls.Add(this.GridPagos);
     this.radGroupBox3.Controls.Add(this.radLabel4);
     this.radGroupBox3.Controls.Add(this.TxtImporte);
     this.radGroupBox3.Controls.Add(this.radLabel5);
     this.radGroupBox3.Controls.Add(this.TxtSubTotal);
     this.radGroupBox3.FooterImageIndex = -1;
     this.radGroupBox3.FooterImageKey   = "";
     this.radGroupBox3.HeaderImageIndex = -1;
     this.radGroupBox3.HeaderImageKey   = "";
     this.radGroupBox3.HeaderMargin     = new System.Windows.Forms.Padding(0);
     this.radGroupBox3.HeaderText       = "";
     this.radGroupBox3.Location         = new System.Drawing.Point(954, 12);
     this.radGroupBox3.Name             = "radGroupBox3";
     this.radGroupBox3.Padding          = new System.Windows.Forms.Padding(2, 18, 2, 2);
     this.radGroupBox3.Size             = new System.Drawing.Size(327, 388);
     this.radGroupBox3.TabIndex         = 1;
     //
     // TxtRecargo
     //
     this.TxtRecargo.AceptaNegativos = false;
     this.TxtRecargo.Font            = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.TxtRecargo.Location        = new System.Drawing.Point(147, 64);
     this.TxtRecargo.MaxLength       = 10;
     this.TxtRecargo.Name            = "TxtRecargo";
     this.TxtRecargo.Size            = new System.Drawing.Size(170, 26);
     this.TxtRecargo.TabIndex        = 2;
     this.TxtRecargo.TabStop         = false;
     this.TxtRecargo.TextAlign       = System.Windows.Forms.HorizontalAlignment.Right;
     this.TxtRecargo.ThemeName       = "TelerikMetroBlue";
     this.TxtRecargo.Validated      += new System.EventHandler(this.TxtRecargo_Validated);
     //
     // BtnAgregar
     //
     this.BtnAgregar.Font      = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.BtnAgregar.Location  = new System.Drawing.Point(217, 141);
     this.BtnAgregar.Name      = "BtnAgregar";
     this.BtnAgregar.Size      = new System.Drawing.Size(100, 30);
     this.BtnAgregar.TabIndex  = 3;
     this.BtnAgregar.Text      = "Agregar";
     this.BtnAgregar.ThemeName = "TelerikMetroBlue";
     this.BtnAgregar.Click    += new System.EventHandler(this.BtnAgregar_Click);
     //
     // GridPagos
     //
     this.GridPagos.Font     = new System.Drawing.Font("Segoe UI", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
     this.GridPagos.Location = new System.Drawing.Point(3, 180);
     //
     // GridPagos
     //
     this.GridPagos.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     gridViewTextBoxColumn1.FieldName     = "TipoPago";
     gridViewTextBoxColumn1.HeaderText    = "Tipo Pago";
     gridViewTextBoxColumn1.Name          = "TipoPago";
     gridViewTextBoxColumn1.ReadOnly      = true;
     gridViewTextBoxColumn1.Width         = 79;
     gridViewTextBoxColumn2.FieldName     = "Descripcion";
     gridViewTextBoxColumn2.HeaderText    = "Descripción";
     gridViewTextBoxColumn2.Name          = "Descripcion";
     gridViewTextBoxColumn2.ReadOnly      = true;
     gridViewTextBoxColumn2.Width         = 89;
     gridViewTextBoxColumn3.FieldName     = "Importe";
     gridViewTextBoxColumn3.FormatString  = "{0:c2}";
     gridViewTextBoxColumn3.HeaderText    = "Importe";
     gridViewTextBoxColumn3.Name          = "Importe";
     gridViewTextBoxColumn3.ReadOnly      = true;
     gridViewTextBoxColumn3.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
     gridViewTextBoxColumn3.Width         = 102;
     gridViewCommandColumn1.HeaderText    = "";
     gridViewCommandColumn1.Image         = global::LaPaz.Win.Properties.Resources.Garbage_Closed;
     gridViewCommandColumn1.ImageLayout   = System.Windows.Forms.ImageLayout.Center;
     gridViewCommandColumn1.MaxWidth      = 30;
     gridViewCommandColumn1.MinWidth      = 30;
     gridViewCommandColumn1.Name          = "Eliminar";
     gridViewCommandColumn1.Width         = 30;
     this.GridPagos.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewTextBoxColumn1,
         gridViewTextBoxColumn2,
         gridViewTextBoxColumn3,
         gridViewCommandColumn1
     });
     this.GridPagos.MasterTemplate.EnableGrouping = false;
     this.GridPagos.Name              = "GridPagos";
     this.GridPagos.ReadOnly          = true;
     this.GridPagos.Size              = new System.Drawing.Size(319, 146);
     this.GridPagos.TabIndex          = 0;
     this.GridPagos.ThemeName         = "TelerikMetroBlue";
     this.GridPagos.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.GridPagos_CommandCellClick);
     //
     // FrmCrearEditarOrdenPago
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1283, 461);
     this.Controls.Add(this.radGroupBox3);
     this.Controls.Add(this.radGroupBox1);
     this.Controls.Add(this.BtnGuardar);
     this.Controls.Add(this.BtnCancelar);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "FrmCrearEditarOrdenPago";
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.Text  = "Agregar Orden de Pago";
     this.Load += new System.EventHandler(this.FrmCrearEditarOrdenPago_Load);
     ((System.ComponentModel.ISupportInitialize)(this.TxtImporteDebe)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtImporte)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BtnGuardar)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BtnCancelar)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.metroLabel4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.metroLabel10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.metroLabel9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.metroLabel8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckdRegistraIVA)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DtpFecha)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtConcepto)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.metroLabel3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtSubTotal)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DtpFechaImputacion)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtNroComprobante2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BtnAgregarTipoGasto)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtNroComprobante1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BtnAgregarProveedor)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).EndInit();
     this.radGroupBox1.ResumeLayout(false);
     this.radGroupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox3)).EndInit();
     this.radGroupBox3.ResumeLayout(false);
     this.radGroupBox3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TxtRecargo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BtnAgregar)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridPagos.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridPagos)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).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()
        {
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn2 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn3 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn4 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn5 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn6 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn1 = new Telerik.WinControls.UI.GridViewCommandColumn();
            Telerik.WinControls.UI.TableViewDefinition tableViewDefinition1 = new Telerik.WinControls.UI.TableViewDefinition();
            this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
            this.gvBatches = new Telerik.WinControls.UI.RadGridView();
            this.btnCreateBatch = new Telerik.WinControls.UI.RadButton();
            this.tableLayoutPanel2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gvBatches)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gvBatches.MasterTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnCreateBatch)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            this.SuspendLayout();
            // 
            // tableLayoutPanel2
            // 
            this.tableLayoutPanel2.ColumnCount = 1;
            this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
            this.tableLayoutPanel2.Controls.Add(this.gvBatches, 0, 0);
            this.tableLayoutPanel2.Controls.Add(this.btnCreateBatch, 0, 1);
            this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tableLayoutPanel2.Location = new System.Drawing.Point(0, 0);
            this.tableLayoutPanel2.Name = "tableLayoutPanel2";
            this.tableLayoutPanel2.RowCount = 2;
            this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 90F));
            this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
            this.tableLayoutPanel2.Size = new System.Drawing.Size(1061, 492);
            this.tableLayoutPanel2.TabIndex = 1;
            // 
            // gvBatches
            // 
            this.gvBatches.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gvBatches.Font = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.gvBatches.Location = new System.Drawing.Point(4, 4);
            this.gvBatches.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
            // 
            // 
            // 
            this.gvBatches.MasterTemplate.AllowAddNewRow = false;
            this.gvBatches.MasterTemplate.AllowDeleteRow = false;
            this.gvBatches.MasterTemplate.AllowDragToGroup = false;
            this.gvBatches.MasterTemplate.AllowEditRow = false;
            this.gvBatches.MasterTemplate.AutoGenerateColumns = false;
            this.gvBatches.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
            gridViewTextBoxColumn1.FieldName = "Number";
            gridViewTextBoxColumn1.HeaderText = "Número";
            gridViewTextBoxColumn1.MinWidth = 120;
            gridViewTextBoxColumn1.Name = "Number";
            gridViewTextBoxColumn1.Width = 123;
            gridViewTextBoxColumn2.FieldName = "GeneticLineName";
            gridViewTextBoxColumn2.HeaderText = "Linea Genética";
            gridViewTextBoxColumn2.Name = "GeneticLineName";
            gridViewTextBoxColumn2.Width = 218;
            gridViewTextBoxColumn3.FieldName = "DateOfBirth";
            gridViewTextBoxColumn3.FormatString = "{0: dd/M/yyyy}";
            gridViewTextBoxColumn3.HeaderText = "Fecha de Nac.";
            gridViewTextBoxColumn3.MinWidth = 160;
            gridViewTextBoxColumn3.Name = "DateOfBirth";
            gridViewTextBoxColumn3.Width = 168;
            gridViewTextBoxColumn4.FieldName = "Week";
            gridViewTextBoxColumn4.HeaderText = "Semana Actual";
            gridViewTextBoxColumn4.MinWidth = 160;
            gridViewTextBoxColumn4.Name = "Week";
            gridViewTextBoxColumn4.Width = 160;
            gridViewTextBoxColumn5.FieldName = "StageName";
            gridViewTextBoxColumn5.HeaderText = "Estado";
            gridViewTextBoxColumn5.MinWidth = 120;
            gridViewTextBoxColumn5.Name = "StageName";
            gridViewTextBoxColumn5.Width = 120;
            gridViewTextBoxColumn6.FieldName = "Barns";
            gridViewTextBoxColumn6.HeaderText = "Galpón";
            gridViewTextBoxColumn6.MinWidth = 100;
            gridViewTextBoxColumn6.Name = "Barns";
            gridViewTextBoxColumn6.Width = 100;
            gridViewCommandColumn1.AllowResize = false;
            gridViewCommandColumn1.AllowSort = false;
            gridViewCommandColumn1.DefaultText = "Seleccionar";
            gridViewCommandColumn1.HeaderText = "";
            gridViewCommandColumn1.Name = "SelectColumn";
            gridViewCommandColumn1.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            gridViewCommandColumn1.UseDefaultText = true;
            gridViewCommandColumn1.Width = 150;
            this.gvBatches.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn1,
            gridViewTextBoxColumn2,
            gridViewTextBoxColumn3,
            gridViewTextBoxColumn4,
            gridViewTextBoxColumn5,
            gridViewTextBoxColumn6,
            gridViewCommandColumn1});
            this.gvBatches.MasterTemplate.ViewDefinition = tableViewDefinition1;
            this.gvBatches.Name = "gvBatches";
            this.gvBatches.Size = new System.Drawing.Size(1053, 434);
            this.gvBatches.TabIndex = 1;
            this.gvBatches.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.gvBatches_CommandCellClick);
            // 
            // btnCreateBatch
            // 
            this.btnCreateBatch.Anchor = System.Windows.Forms.AnchorStyles.Right;
            this.btnCreateBatch.Location = new System.Drawing.Point(896, 452);
            this.btnCreateBatch.Name = "btnCreateBatch";
            this.btnCreateBatch.Size = new System.Drawing.Size(162, 30);
            this.btnCreateBatch.TabIndex = 2;
            this.btnCreateBatch.Text = "Crear Lote";
            this.btnCreateBatch.Click += new System.EventHandler(this.btnCreateBatch_Click);
            // 
            // FrmBatchSelection
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1061, 492);
            this.Controls.Add(this.tableLayoutPanel2);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
            this.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
            this.Name = "FrmBatchSelection";
            // 
            // 
            // 
            this.RootElement.ApplyShapeToControl = true;
            this.Text = "FrmBatchSelection";
            this.Load += new System.EventHandler(this.FrmBatchSelection_Load);
            this.tableLayoutPanel2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.gvBatches.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gvBatches)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnCreateBatch)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this)).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()
 {
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn2 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn3 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn4 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn5 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn1 = new Telerik.WinControls.UI.GridViewCommandColumn();
     Telerik.WinControls.UI.TableViewDefinition   tableViewDefinition1   = new Telerik.WinControls.UI.TableViewDefinition();
     this.tableLayoutPanel1       = new System.Windows.Forms.TableLayoutPanel();
     this.gvPendingOrders         = new Telerik.WinControls.UI.RadGridView();
     this.tableLayoutPanel2       = new System.Windows.Forms.TableLayoutPanel();
     this.lbTitle                 = new Telerik.WinControls.UI.RadLabel();
     this.btnBackToDepositManager = new Telerik.WinControls.UI.RadButton();
     this.tableLayoutPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gvPendingOrders)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPendingOrders.MasterTemplate)).BeginInit();
     this.tableLayoutPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lbTitle)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnBackToDepositManager)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // 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.gvPendingOrders, 0, 1);
     this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel2, 0, 0);
     this.tableLayoutPanel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
     this.tableLayoutPanel1.Name     = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 2;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 90F));
     this.tableLayoutPanel1.Size     = new System.Drawing.Size(1038, 551);
     this.tableLayoutPanel1.TabIndex = 0;
     //
     // gvPendingOrders
     //
     this.gvPendingOrders.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.gvPendingOrders.Location = new System.Drawing.Point(8, 63);
     this.gvPendingOrders.Margin   = new System.Windows.Forms.Padding(8);
     //
     //
     //
     this.gvPendingOrders.MasterTemplate.AllowAddNewRow      = false;
     this.gvPendingOrders.MasterTemplate.AllowColumnReorder  = false;
     this.gvPendingOrders.MasterTemplate.AllowDeleteRow      = false;
     this.gvPendingOrders.MasterTemplate.AllowDragToGroup    = false;
     this.gvPendingOrders.MasterTemplate.AllowEditRow        = false;
     this.gvPendingOrders.MasterTemplate.AllowRowReorder     = true;
     this.gvPendingOrders.MasterTemplate.AutoGenerateColumns = false;
     this.gvPendingOrders.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     gridViewTextBoxColumn1.FieldName      = "OrderId";
     gridViewTextBoxColumn1.HeaderText     = "OrderId";
     gridViewTextBoxColumn1.IsVisible      = false;
     gridViewTextBoxColumn1.Name           = "OrderId";
     gridViewTextBoxColumn2.FieldName      = "ClientName";
     gridViewTextBoxColumn2.HeaderText     = "Cliente";
     gridViewTextBoxColumn2.MaxWidth       = 5000;
     gridViewTextBoxColumn2.MinWidth       = 200;
     gridViewTextBoxColumn2.Name           = "ClientName";
     gridViewTextBoxColumn2.Width          = 325;
     gridViewTextBoxColumn3.DataType       = typeof(System.DateTime);
     gridViewTextBoxColumn3.FieldName      = "CreatedDate";
     gridViewTextBoxColumn3.FormatString   = "{0: dd/M/yyyy}";
     gridViewTextBoxColumn3.HeaderText     = "Fecha Pedido";
     gridViewTextBoxColumn3.MinWidth       = 120;
     gridViewTextBoxColumn3.Name           = "CreatedDate";
     gridViewTextBoxColumn3.Width          = 195;
     gridViewTextBoxColumn4.FieldName      = "Dozens";
     gridViewTextBoxColumn4.HeaderText     = "Docenas";
     gridViewTextBoxColumn4.MinWidth       = 120;
     gridViewTextBoxColumn4.Name           = "Dozens";
     gridViewTextBoxColumn4.Width          = 195;
     gridViewTextBoxColumn5.FieldName      = "OrderStatusName";
     gridViewTextBoxColumn5.HeaderText     = "Estado";
     gridViewTextBoxColumn5.Name           = "OrderStatusName";
     gridViewTextBoxColumn5.Width          = 244;
     gridViewCommandColumn1.DefaultText    = "Armar";
     gridViewCommandColumn1.HeaderText     = "";
     gridViewCommandColumn1.Name           = "BuildOrder";
     gridViewCommandColumn1.TextAlignment  = System.Drawing.ContentAlignment.MiddleCenter;
     gridViewCommandColumn1.UseDefaultText = true;
     gridViewCommandColumn1.Width          = 47;
     this.gvPendingOrders.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewTextBoxColumn1,
         gridViewTextBoxColumn2,
         gridViewTextBoxColumn3,
         gridViewTextBoxColumn4,
         gridViewTextBoxColumn5,
         gridViewCommandColumn1
     });
     this.gvPendingOrders.MasterTemplate.EnablePaging   = true;
     this.gvPendingOrders.MasterTemplate.ViewDefinition = tableViewDefinition1;
     this.gvPendingOrders.Name     = "gvPendingOrders";
     this.gvPendingOrders.ReadOnly = true;
     this.gvPendingOrders.ShowGroupPanelScrollbars = false;
     this.gvPendingOrders.Size              = new System.Drawing.Size(1022, 480);
     this.gvPendingOrders.TabIndex          = 8;
     this.gvPendingOrders.ThemeName         = "TelerikMetroBlue";
     this.gvPendingOrders.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.gvPendingOrders_CommandCellClick);
     //
     // tableLayoutPanel2
     //
     this.tableLayoutPanel2.ColumnCount = 2;
     this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 10F));
     this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 90F));
     this.tableLayoutPanel2.Controls.Add(this.lbTitle, 0, 0);
     this.tableLayoutPanel2.Controls.Add(this.btnBackToDepositManager, 0, 0);
     this.tableLayoutPanel2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel2.Location = new System.Drawing.Point(3, 3);
     this.tableLayoutPanel2.Name     = "tableLayoutPanel2";
     this.tableLayoutPanel2.RowCount = 1;
     this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel2.Size     = new System.Drawing.Size(1032, 49);
     this.tableLayoutPanel2.TabIndex = 9;
     //
     // lbTitle
     //
     this.lbTitle.Dock     = System.Windows.Forms.DockStyle.Top;
     this.lbTitle.Font     = new System.Drawing.Font("Segoe UI", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbTitle.Location = new System.Drawing.Point(106, 3);
     this.lbTitle.Name     = "lbTitle";
     this.lbTitle.Size     = new System.Drawing.Size(363, 41);
     this.lbTitle.TabIndex = 13;
     this.lbTitle.Text     = "Armar Pedidos Pendiendes";
     //
     // btnBackToDepositManager
     //
     this.btnBackToDepositManager.Location = new System.Drawing.Point(8, 12);
     this.btnBackToDepositManager.Margin   = new System.Windows.Forms.Padding(8, 12, 8, 8);
     this.btnBackToDepositManager.Name     = "btnBackToDepositManager";
     this.btnBackToDepositManager.Size     = new System.Drawing.Size(87, 24);
     this.btnBackToDepositManager.TabIndex = 10;
     this.btnBackToDepositManager.Text     = "Volver";
     this.btnBackToDepositManager.Click   += new System.EventHandler(this.btnBackToDepositManager_Click);
     //
     // FrmPendingOrders
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1038, 551);
     this.Controls.Add(this.tableLayoutPanel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name            = "FrmPendingOrders";
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.Text  = "FrmPendingOrders";
     this.Load += new System.EventHandler(this.FrmPendingOrders_Load);
     this.tableLayoutPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gvPendingOrders.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPendingOrders)).EndInit();
     this.tableLayoutPanel2.ResumeLayout(false);
     this.tableLayoutPanel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lbTitle)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnBackToDepositManager)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).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()
        {
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn2 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn3 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn1 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn4 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn1 = new Telerik.WinControls.UI.GridViewCommandColumn();
            this.radLabel2 = new Telerik.WinControls.UI.RadLabel();
            this.TxtMovil = new Telerik.WinControls.UI.RadTextBox();
            this.BtnCrear = new System.Windows.Forms.Button();
            this.DgvTalleresMoviles = new Telerik.WinControls.UI.RadGridView();
            this.BtnLimpiar = new Telerik.WinControls.UI.RadButton();
            this.panel1 = new System.Windows.Forms.Panel();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.TxtMovil)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.DgvTalleresMoviles)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.DgvTalleresMoviles.MasterTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.BtnLimpiar)).BeginInit();
            this.panel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            this.SuspendLayout();
            // 
            // radLabel2
            // 
            this.radLabel2.Font = new System.Drawing.Font("Consolas", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.radLabel2.Location = new System.Drawing.Point(3, 15);
            this.radLabel2.Name = "radLabel2";
            this.radLabel2.Size = new System.Drawing.Size(70, 25);
            this.radLabel2.TabIndex = 23;
            this.radLabel2.Text = "Movil:";
            // 
            // TxtMovil
            // 
            this.TxtMovil.Font = new System.Drawing.Font("Consolas", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.TxtMovil.Location = new System.Drawing.Point(79, 12);
            this.TxtMovil.Name = "TxtMovil";
            this.TxtMovil.Size = new System.Drawing.Size(357, 28);
            this.TxtMovil.TabIndex = 17;
            this.TxtMovil.TabStop = false;
            this.TxtMovil.ThemeName = "TelerikMetro";
            this.TxtMovil.TextChanged += new System.EventHandler(this.TxtMovil_TextChanged);
            // 
            // BtnCrear
            // 
            this.BtnCrear.BackColor = System.Drawing.Color.Yellow;
            this.BtnCrear.FlatAppearance.BorderSize = 0;
            this.BtnCrear.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.BtnCrear.Location = new System.Drawing.Point(12, -6);
            this.BtnCrear.Name = "BtnCrear";
            this.BtnCrear.Size = new System.Drawing.Size(153, 41);
            this.BtnCrear.TabIndex = 11;
            this.BtnCrear.Text = "Crear";
            this.BtnCrear.UseVisualStyleBackColor = false;
            this.BtnCrear.Click += new System.EventHandler(this.BtnCrear_Click);
            // 
            // DgvTalleresMoviles
            // 
            this.DgvTalleresMoviles.Location = new System.Drawing.Point(12, 96);
            // 
            // DgvTalleresMoviles
            // 
            this.DgvTalleresMoviles.MasterTemplate.AllowAddNewRow = false;
            this.DgvTalleresMoviles.MasterTemplate.AllowDeleteRow = false;
            this.DgvTalleresMoviles.MasterTemplate.AllowDragToGroup = false;
            gridViewTextBoxColumn1.FieldName = "MovilNumero";
            gridViewTextBoxColumn1.FormatString = "";
            gridViewTextBoxColumn1.HeaderText = "Movil";
            gridViewTextBoxColumn1.Name = "Movil";
            gridViewTextBoxColumn1.ReadOnly = true;
            gridViewTextBoxColumn1.Width = 70;
            gridViewTextBoxColumn2.FieldName = "FechaDesde";
            gridViewTextBoxColumn2.FormatString = "";
            gridViewTextBoxColumn2.HeaderText = "Fecha Desde";
            gridViewTextBoxColumn2.Name = "FechaDesde";
            gridViewTextBoxColumn2.ReadOnly = true;
            gridViewTextBoxColumn2.Width = 150;
            gridViewTextBoxColumn3.FieldName = "FechaHasta";
            gridViewTextBoxColumn3.FormatString = "";
            gridViewTextBoxColumn3.HeaderText = "Fecha Hasta";
            gridViewTextBoxColumn3.Name = "FechaHasta";
            gridViewTextBoxColumn3.ReadOnly = true;
            gridViewTextBoxColumn3.Width = 150;
            gridViewCheckBoxColumn1.FieldName = "Activo";
            gridViewCheckBoxColumn1.HeaderText = "Activo";
            gridViewCheckBoxColumn1.Name = "Activo";
            gridViewCheckBoxColumn1.ReadOnly = true;
            gridViewCheckBoxColumn1.Width = 80;
            gridViewTextBoxColumn4.FieldName = "Observaciones";
            gridViewTextBoxColumn4.HeaderText = "Observaciones";
            gridViewTextBoxColumn4.MinWidth = 350;
            gridViewTextBoxColumn4.Name = "Observaciones";
            gridViewTextBoxColumn4.ReadOnly = true;
            gridViewTextBoxColumn4.Width = 350;
            gridViewCommandColumn1.HeaderText = "";
            gridViewCommandColumn1.Image = global::GestionAdministrativa.Win.Properties.Resources.Reload_16x16;
            gridViewCommandColumn1.MaxWidth = 25;
            gridViewCommandColumn1.MinWidth = 25;
            gridViewCommandColumn1.Name = "Fin";
            gridViewCommandColumn1.RowSpan = 16;
            gridViewCommandColumn1.Width = 25;
            this.DgvTalleresMoviles.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn1,
            gridViewTextBoxColumn2,
            gridViewTextBoxColumn3,
            gridViewCheckBoxColumn1,
            gridViewTextBoxColumn4,
            gridViewCommandColumn1});
            this.DgvTalleresMoviles.Name = "DgvTalleresMoviles";
            this.DgvTalleresMoviles.Size = new System.Drawing.Size(1254, 607);
            this.DgvTalleresMoviles.TabIndex = 0;
            this.DgvTalleresMoviles.Text = "radGridView1";
            this.DgvTalleresMoviles.ThemeName = "TelerikMetro";
            this.DgvTalleresMoviles.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.DgvTalleresMoviles_CommandCellClick);
            // 
            // BtnLimpiar
            // 
            this.BtnLimpiar.Font = new System.Drawing.Font("Consolas", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.BtnLimpiar.Location = new System.Drawing.Point(1045, 4);
            this.BtnLimpiar.Margin = new System.Windows.Forms.Padding(4);
            this.BtnLimpiar.Name = "BtnLimpiar";
            this.BtnLimpiar.Size = new System.Drawing.Size(205, 41);
            this.BtnLimpiar.TabIndex = 24;
            this.BtnLimpiar.Text = "Limpiar Filtros";
            this.BtnLimpiar.ThemeName = "TelerikMetro";
            this.BtnLimpiar.Click += new System.EventHandler(this.BtnLimpiar_Click);
            // 
            // panel1
            // 
            this.panel1.Controls.Add(this.radLabel2);
            this.panel1.Controls.Add(this.BtnLimpiar);
            this.panel1.Controls.Add(this.TxtMovil);
            this.panel1.Location = new System.Drawing.Point(12, 41);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(1254, 49);
            this.panel1.TabIndex = 25;
            // 
            // FrmTalleresListado
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1268, 705);
            this.ControlBox = false;
            this.Controls.Add(this.panel1);
            this.Controls.Add(this.BtnCrear);
            this.Controls.Add(this.DgvTalleresMoviles);
            this.Margin = new System.Windows.Forms.Padding(4);
            this.Name = "FrmTalleresListado";
            // 
            // 
            // 
            this.RootElement.ApplyShapeToControl = true;
            this.Text = "Listado Talleres";
            this.Load += new System.EventHandler(this.FrmTalleresListado_Load);
            ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.TxtMovil)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.DgvTalleresMoviles.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.DgvTalleresMoviles)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.BtnLimpiar)).EndInit();
            this.panel1.ResumeLayout(false);
            this.panel1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this)).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()
 {
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn2 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn3 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn1 = new Telerik.WinControls.UI.GridViewCommandColumn();
     this.TxtSubtotal           = new Telerik.WinControls.UI.RadTextBox();
     this.metroLabel7           = new Telerik.WinControls.UI.RadLabel();
     this.metroLabel1           = new Telerik.WinControls.UI.RadLabel();
     this.metroLabel2           = new Telerik.WinControls.UI.RadLabel();
     this.TxtTotalPagar         = new Telerik.WinControls.UI.RadTextBox();
     this.metroLabel3           = new Telerik.WinControls.UI.RadLabel();
     this.GrillaPagos           = new Telerik.WinControls.UI.RadGridView();
     this.Eliminar              = new LaPaz.Win.Controls.DeleteCell.DeleteColumn();
     this.BtnAgregarPago        = new Telerik.WinControls.UI.RadButton();
     this.metroLabel4           = new Telerik.WinControls.UI.RadLabel();
     this.TxtCreditosDevolucion = new Framework.WinForm.Controls.CustomControls.DecimalTextBox();
     this.TxtSenas              = new Framework.WinForm.Controls.CustomControls.DecimalTextBox();
     this.TxtFaltaPagar         = new Telerik.WinControls.UI.RadTextBox();
     this.radLabel1             = new Telerik.WinControls.UI.RadLabel();
     this.txtDesc         = new Framework.WinForm.Controls.CustomControls.IntegerTextBox();
     this.txtRecargo      = new Framework.WinForm.Controls.CustomControls.IntegerTextBox();
     this.radLabel2       = new Telerik.WinControls.UI.RadLabel();
     this.TxtSenasDisp    = new Framework.WinForm.Controls.CustomControls.DecimalTextBox();
     this.TxtCreditosDisp = new Framework.WinForm.Controls.CustomControls.DecimalTextBox();
     ((System.ComponentModel.ISupportInitialize)(this.TxtSubtotal)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.metroLabel7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.metroLabel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.metroLabel2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtTotalPagar)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.metroLabel3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GrillaPagos)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GrillaPagos.MasterTemplate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BtnAgregarPago)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.metroLabel4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtCreditosDevolucion)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtSenas)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtFaltaPagar)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDesc)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRecargo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtSenasDisp)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtCreditosDisp)).BeginInit();
     this.SuspendLayout();
     //
     // TxtSubtotal
     //
     this.TxtSubtotal.Enabled   = false;
     this.TxtSubtotal.Font      = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.TxtSubtotal.Location  = new System.Drawing.Point(189, 6);
     this.TxtSubtotal.MaxLength = 11;
     this.TxtSubtotal.Name      = "TxtSubtotal";
     this.TxtSubtotal.Size      = new System.Drawing.Size(141, 26);
     this.TxtSubtotal.TabIndex  = 1;
     this.TxtSubtotal.TabStop   = false;
     this.TxtSubtotal.ThemeName = "TelerikMetroBlue";
     //
     // metroLabel7
     //
     this.metroLabel7.Font      = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.metroLabel7.Location  = new System.Drawing.Point(8, 7);
     this.metroLabel7.Name      = "metroLabel7";
     this.metroLabel7.Size      = new System.Drawing.Size(75, 24);
     this.metroLabel7.TabIndex  = 32;
     this.metroLabel7.Text      = "Sub Total:";
     this.metroLabel7.ThemeName = "TelerikMetroBlue";
     //
     // metroLabel1
     //
     this.metroLabel1.Font      = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.metroLabel1.Location  = new System.Drawing.Point(8, 38);
     this.metroLabel1.Name      = "metroLabel1";
     this.metroLabel1.Size      = new System.Drawing.Size(50, 24);
     this.metroLabel1.TabIndex  = 34;
     this.metroLabel1.Text      = "Señas:";
     this.metroLabel1.ThemeName = "TelerikMetroBlue";
     //
     // metroLabel2
     //
     this.metroLabel2.Font      = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.metroLabel2.Location  = new System.Drawing.Point(8, 68);
     this.metroLabel2.Name      = "metroLabel2";
     this.metroLabel2.Size      = new System.Drawing.Size(176, 24);
     this.metroLabel2.TabIndex  = 36;
     this.metroLabel2.Text      = "Créditos por Devolución:";
     this.metroLabel2.ThemeName = "TelerikMetroBlue";
     //
     // TxtTotalPagar
     //
     this.TxtTotalPagar.Enabled      = false;
     this.TxtTotalPagar.Font         = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.TxtTotalPagar.Location     = new System.Drawing.Point(189, 164);
     this.TxtTotalPagar.MaxLength    = 11;
     this.TxtTotalPagar.Name         = "TxtTotalPagar";
     this.TxtTotalPagar.Size         = new System.Drawing.Size(142, 26);
     this.TxtTotalPagar.TabIndex     = 5;
     this.TxtTotalPagar.TabStop      = false;
     this.TxtTotalPagar.ThemeName    = "TelerikMetroBlue";
     this.TxtTotalPagar.TextChanged += new System.EventHandler(this.TxtTotalPagar_TextChanged);
     this.TxtTotalPagar.KeyUp       += new System.Windows.Forms.KeyEventHandler(this.TxtTotalPagar_KeyUp);
     //
     // metroLabel3
     //
     this.metroLabel3.Font      = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.metroLabel3.Location  = new System.Drawing.Point(11, 164);
     this.metroLabel3.Name      = "metroLabel3";
     this.metroLabel3.Size      = new System.Drawing.Size(100, 24);
     this.metroLabel3.TabIndex  = 38;
     this.metroLabel3.Text      = "Total a Pagar:";
     this.metroLabel3.ThemeName = "TelerikMetroBlue";
     //
     // GrillaPagos
     //
     this.GrillaPagos.Font     = new System.Drawing.Font("Segoe UI", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
     this.GrillaPagos.Location = new System.Drawing.Point(11, 228);
     //
     // GrillaPagos
     //
     this.GrillaPagos.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     gridViewTextBoxColumn1.FieldName   = "TipoPago";
     gridViewTextBoxColumn1.HeaderText  = "Tipo Pago";
     gridViewTextBoxColumn1.Name        = "TipoPago";
     gridViewTextBoxColumn1.ReadOnly    = true;
     gridViewTextBoxColumn1.Width       = 79;
     gridViewTextBoxColumn2.FieldName   = "Descripcion";
     gridViewTextBoxColumn2.HeaderText  = "Descripción";
     gridViewTextBoxColumn2.Name        = "Descripcion";
     gridViewTextBoxColumn2.ReadOnly    = true;
     gridViewTextBoxColumn2.Width       = 89;
     gridViewTextBoxColumn3.FieldName   = "Importe";
     gridViewTextBoxColumn3.HeaderText  = "Importe";
     gridViewTextBoxColumn3.Name        = "Importe";
     gridViewTextBoxColumn3.ReadOnly    = true;
     gridViewTextBoxColumn3.Width       = 102;
     gridViewCommandColumn1.HeaderText  = "";
     gridViewCommandColumn1.Image       = global::LaPaz.Win.Properties.Resources.Garbage_Closed;
     gridViewCommandColumn1.ImageLayout = System.Windows.Forms.ImageLayout.Center;
     gridViewCommandColumn1.MaxWidth    = 30;
     gridViewCommandColumn1.MinWidth    = 30;
     gridViewCommandColumn1.Name        = "Eliminar";
     gridViewCommandColumn1.Width       = 30;
     this.GrillaPagos.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewTextBoxColumn1,
         gridViewTextBoxColumn2,
         gridViewTextBoxColumn3,
         gridViewCommandColumn1
     });
     this.GrillaPagos.MasterTemplate.EnableGrouping = false;
     this.GrillaPagos.Name              = "GrillaPagos";
     this.GrillaPagos.ReadOnly          = true;
     this.GrillaPagos.Size              = new System.Drawing.Size(319, 137);
     this.GrillaPagos.TabIndex          = 6;
     this.GrillaPagos.ThemeName         = "TelerikMetroBlue";
     this.GrillaPagos.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.GrillaPagos_CommandCellClick);
     this.GrillaPagos.KeyUp            += new System.Windows.Forms.KeyEventHandler(this.GrillaPagos_KeyUp);
     //
     // Eliminar
     //
     this.Eliminar.FillWeight = 25F;
     this.Eliminar.FlatStyle  = System.Windows.Forms.FlatStyle.Flat;
     this.Eliminar.HeaderText = "";
     this.Eliminar.Name       = "Eliminar";
     this.Eliminar.ReadOnly   = true;
     this.Eliminar.Resizable  = System.Windows.Forms.DataGridViewTriState.False;
     this.Eliminar.Width      = 30;
     //
     // BtnAgregarPago
     //
     this.BtnAgregarPago.Font      = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.BtnAgregarPago.Location  = new System.Drawing.Point(255, 196);
     this.BtnAgregarPago.Name      = "BtnAgregarPago";
     this.BtnAgregarPago.Size      = new System.Drawing.Size(75, 29);
     this.BtnAgregarPago.TabIndex  = 6;
     this.BtnAgregarPago.Text      = "Agregar";
     this.BtnAgregarPago.ThemeName = "TelerikMetroBlue";
     this.BtnAgregarPago.Click    += new System.EventHandler(this.BtnAgregarPago_Click);
     //
     // metroLabel4
     //
     this.metroLabel4.Font      = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.metroLabel4.Location  = new System.Drawing.Point(8, 98);
     this.metroLabel4.Name      = "metroLabel4";
     this.metroLabel4.Size      = new System.Drawing.Size(110, 24);
     this.metroLabel4.TabIndex  = 42;
     this.metroLabel4.Text      = "Descuento (%):";
     this.metroLabel4.ThemeName = "TelerikMetroBlue";
     //
     // TxtCreditosDevolucion
     //
     this.TxtCreditosDevolucion.AceptaNegativos = false;
     this.TxtCreditosDevolucion.Font            = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.TxtCreditosDevolucion.Location        = new System.Drawing.Point(270, 70);
     this.TxtCreditosDevolucion.Name            = "TxtCreditosDevolucion";
     this.TxtCreditosDevolucion.Size            = new System.Drawing.Size(60, 26);
     this.TxtCreditosDevolucion.TabIndex        = 3;
     this.TxtCreditosDevolucion.TabStop         = false;
     this.TxtCreditosDevolucion.TextAlign       = System.Windows.Forms.HorizontalAlignment.Right;
     this.TxtCreditosDevolucion.ThemeName       = "TelerikMetroBlue";
     this.TxtCreditosDevolucion.TextChanged    += new System.EventHandler(this.TxtCreditosDevolucion_TextChanged);
     //
     // TxtSenas
     //
     this.TxtSenas.AceptaNegativos = false;
     this.TxtSenas.Font            = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.TxtSenas.Location        = new System.Drawing.Point(269, 38);
     this.TxtSenas.Name            = "TxtSenas";
     this.TxtSenas.Size            = new System.Drawing.Size(61, 26);
     this.TxtSenas.TabIndex        = 2;
     this.TxtSenas.TabStop         = false;
     this.TxtSenas.TextAlign       = System.Windows.Forms.HorizontalAlignment.Right;
     this.TxtSenas.ThemeName       = "TelerikMetroBlue";
     this.TxtSenas.KeyUp          += new System.Windows.Forms.KeyEventHandler(this.TxtSenas_KeyUp);
     //
     // TxtFaltaPagar
     //
     this.TxtFaltaPagar.Enabled      = false;
     this.TxtFaltaPagar.Font         = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.TxtFaltaPagar.Location     = new System.Drawing.Point(189, 371);
     this.TxtFaltaPagar.MaxLength    = 11;
     this.TxtFaltaPagar.Name         = "TxtFaltaPagar";
     this.TxtFaltaPagar.Size         = new System.Drawing.Size(141, 26);
     this.TxtFaltaPagar.TabIndex     = 7;
     this.TxtFaltaPagar.TabStop      = false;
     this.TxtFaltaPagar.ThemeName    = "TelerikMetroBlue";
     this.TxtFaltaPagar.TextChanged += new System.EventHandler(this.TxtFaltaPagar_TextChanged);
     //
     // radLabel1
     //
     this.radLabel1.Font      = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel1.Location  = new System.Drawing.Point(8, 372);
     this.radLabel1.Name      = "radLabel1";
     this.radLabel1.Size      = new System.Drawing.Size(86, 24);
     this.radLabel1.TabIndex  = 44;
     this.radLabel1.Text      = "Falta Pagar:";
     this.radLabel1.ThemeName = "TelerikMetroBlue";
     //
     // txtDesc
     //
     this.txtDesc.Font      = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtDesc.Location  = new System.Drawing.Point(189, 102);
     this.txtDesc.Name      = "txtDesc";
     this.txtDesc.Size      = new System.Drawing.Size(141, 25);
     this.txtDesc.TabIndex  = 4;
     this.txtDesc.TabStop   = false;
     this.txtDesc.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.txtDesc.KeyUp    += new System.Windows.Forms.KeyEventHandler(this.txtDesc_KeyUp);
     //
     // txtRecargo
     //
     this.txtRecargo.Font         = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtRecargo.Location     = new System.Drawing.Point(189, 133);
     this.txtRecargo.Name         = "txtRecargo";
     this.txtRecargo.Size         = new System.Drawing.Size(142, 25);
     this.txtRecargo.TabIndex     = 5;
     this.txtRecargo.TabStop      = false;
     this.txtRecargo.TextAlign    = System.Windows.Forms.HorizontalAlignment.Right;
     this.txtRecargo.TextChanged += new System.EventHandler(this.txtRecargo_TextChanged);
     this.txtRecargo.KeyUp       += new System.Windows.Forms.KeyEventHandler(this.txtRecargo_KeyUp);
     //
     // radLabel2
     //
     this.radLabel2.Font      = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel2.Location  = new System.Drawing.Point(11, 128);
     this.radLabel2.Name      = "radLabel2";
     this.radLabel2.Size      = new System.Drawing.Size(93, 24);
     this.radLabel2.TabIndex  = 43;
     this.radLabel2.Text      = "Recargo (%):";
     this.radLabel2.ThemeName = "TelerikMetroBlue";
     //
     // TxtSenasDisp
     //
     this.TxtSenasDisp.AceptaNegativos = false;
     this.TxtSenasDisp.Enabled         = false;
     this.TxtSenasDisp.Font            = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.TxtSenasDisp.Location        = new System.Drawing.Point(189, 38);
     this.TxtSenasDisp.Name            = "TxtSenasDisp";
     this.TxtSenasDisp.Size            = new System.Drawing.Size(62, 26);
     this.TxtSenasDisp.TabIndex        = 3;
     this.TxtSenasDisp.TabStop         = false;
     this.TxtSenasDisp.TextAlign       = System.Windows.Forms.HorizontalAlignment.Right;
     this.TxtSenasDisp.ThemeName       = "TelerikMetroBlue";
     //
     // TxtCreditosDisp
     //
     this.TxtCreditosDisp.AceptaNegativos = false;
     this.TxtCreditosDisp.Enabled         = false;
     this.TxtCreditosDisp.Font            = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.TxtCreditosDisp.Location        = new System.Drawing.Point(189, 70);
     this.TxtCreditosDisp.Name            = "TxtCreditosDisp";
     this.TxtCreditosDisp.Size            = new System.Drawing.Size(62, 26);
     this.TxtCreditosDisp.TabIndex        = 4;
     this.TxtCreditosDisp.TabStop         = false;
     this.TxtCreditosDisp.TextAlign       = System.Windows.Forms.HorizontalAlignment.Right;
     this.TxtCreditosDisp.ThemeName       = "TelerikMetroBlue";
     //
     // UcTotalesVenta
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.TxtCreditosDisp);
     this.Controls.Add(this.TxtSenasDisp);
     this.Controls.Add(this.radLabel2);
     this.Controls.Add(this.txtRecargo);
     this.Controls.Add(this.txtDesc);
     this.Controls.Add(this.TxtFaltaPagar);
     this.Controls.Add(this.radLabel1);
     this.Controls.Add(this.TxtSenas);
     this.Controls.Add(this.TxtCreditosDevolucion);
     this.Controls.Add(this.metroLabel4);
     this.Controls.Add(this.BtnAgregarPago);
     this.Controls.Add(this.GrillaPagos);
     this.Controls.Add(this.TxtTotalPagar);
     this.Controls.Add(this.metroLabel3);
     this.Controls.Add(this.metroLabel2);
     this.Controls.Add(this.metroLabel1);
     this.Controls.Add(this.TxtSubtotal);
     this.Controls.Add(this.metroLabel7);
     this.Name  = "UcTotalesVenta";
     this.Size  = new System.Drawing.Size(340, 405);
     this.Load += new System.EventHandler(this.UcTotalesVenta_Load);
     ((System.ComponentModel.ISupportInitialize)(this.TxtSubtotal)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.metroLabel7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.metroLabel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.metroLabel2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtTotalPagar)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.metroLabel3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GrillaPagos.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GrillaPagos)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BtnAgregarPago)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.metroLabel4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtCreditosDevolucion)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtSenas)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtFaltaPagar)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDesc)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRecargo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtSenasDisp)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtCreditosDisp)).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()
        {
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn2 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn1 = new Telerik.WinControls.UI.GridViewCommandColumn();
            this.GrillaSeleccionar = new Telerik.WinControls.UI.RadGridView();
            ((System.ComponentModel.ISupportInitialize)(this.GrillaSeleccionar)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.GrillaSeleccionar.MasterTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            this.SuspendLayout();
            // 
            // GrillaSeleccionar
            // 
            this.GrillaSeleccionar.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.GrillaSeleccionar.Font = new System.Drawing.Font("Segoe UI", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
            this.GrillaSeleccionar.Location = new System.Drawing.Point(23, 12);
            // 
            // GrillaSeleccionar
            // 
            this.GrillaSeleccionar.MasterTemplate.AllowAddNewRow = false;
            this.GrillaSeleccionar.MasterTemplate.AllowColumnReorder = false;
            this.GrillaSeleccionar.MasterTemplate.AllowColumnResize = false;
            this.GrillaSeleccionar.MasterTemplate.AllowDeleteRow = false;
            this.GrillaSeleccionar.MasterTemplate.AllowDragToGroup = false;
            this.GrillaSeleccionar.MasterTemplate.AllowEditRow = false;
            this.GrillaSeleccionar.MasterTemplate.AllowRowResize = false;
            this.GrillaSeleccionar.MasterTemplate.AutoGenerateColumns = false;
            this.GrillaSeleccionar.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
            gridViewTextBoxColumn1.FieldName = "Denominacion";
            gridViewTextBoxColumn1.HeaderText = "Nombre";
            gridViewTextBoxColumn1.Name = "Nombre";
            gridViewTextBoxColumn1.ReadOnly = true;
            gridViewTextBoxColumn1.Width = 184;
            gridViewTextBoxColumn2.FieldName = "Cuit";
            gridViewTextBoxColumn2.HeaderText = "DNI";
            gridViewTextBoxColumn2.Name = "Cuit";
            gridViewTextBoxColumn2.ReadOnly = true;
            gridViewTextBoxColumn2.Width = 129;
            gridViewCommandColumn1.DefaultText = "Seleccionar";
            gridViewCommandColumn1.FieldName = "Seleccionar";
            gridViewCommandColumn1.FormatInfo = new System.Globalization.CultureInfo("");
            gridViewCommandColumn1.HeaderText = "";
            gridViewCommandColumn1.MinWidth = 100;
            gridViewCommandColumn1.Name = "Seleccionar";
            gridViewCommandColumn1.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            gridViewCommandColumn1.TextImageRelation = System.Windows.Forms.TextImageRelation.TextBeforeImage;
            gridViewCommandColumn1.UseDefaultText = true;
            gridViewCommandColumn1.Width = 100;
            this.GrillaSeleccionar.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn1,
            gridViewTextBoxColumn2,
            gridViewCommandColumn1});
            this.GrillaSeleccionar.MasterTemplate.EnableGrouping = false;
            this.GrillaSeleccionar.Name = "GrillaSeleccionar";
            this.GrillaSeleccionar.ReadOnly = true;
            this.GrillaSeleccionar.Size = new System.Drawing.Size(433, 417);
            this.GrillaSeleccionar.TabIndex = 40;
            this.GrillaSeleccionar.ThemeName = "TelerikMetro";
            this.GrillaSeleccionar.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.GrillaSeleccionar_CommandCellClick);
            this.GrillaSeleccionar.KeyUp += new System.Windows.Forms.KeyEventHandler(this.GrillaSeleccionar_KeyUp);
            // 
            // FrmSeleccionarVendedor
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(636, 549);
            this.Controls.Add(this.GrillaSeleccionar);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
            this.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "FrmSeleccionarVendedor";
            // 
            // 
            // 
            this.RootElement.ApplyShapeToControl = true;
            this.Text = "Seleccionar Vendedor";
            this.Load += new System.EventHandler(this.FrmSeleccionarVendedor_Load);
            ((System.ComponentModel.ISupportInitialize)(this.GrillaSeleccionar.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.GrillaSeleccionar)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
            this.ResumeLayout(false);

        }
Exemple #22
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn2 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn3 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewDecimalColumn gridViewDecimalColumn1 = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn1 = new Telerik.WinControls.UI.GridViewCommandColumn();
     this.label1     = new System.Windows.Forms.Label();
     this.btnClose   = new Telerik.WinControls.UI.RadButton();
     this.lablltest  = new Telerik.WinControls.UI.RadLabel();
     this.grdDrivers = new Telerik.WinControls.UI.RadGridView();
     this.object_3e0d7595_e73a_41b7_935a_265ec96696fd = new Telerik.WinControls.UI.RadLabel.RadLabelRootElement();
     this.lblTotal        = new System.Windows.Forms.Label();
     this.txtJobOfferedTo = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.btnClose)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lablltest)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdDrivers)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdDrivers.MasterTemplate)).BeginInit();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.BackColor   = System.Drawing.Color.CornflowerBlue;
     this.label1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.label1.Dock        = System.Windows.Forms.DockStyle.Top;
     this.label1.Font        = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor   = System.Drawing.Color.White;
     this.label1.Location    = new System.Drawing.Point(0, 0);
     this.label1.Name        = "label1";
     this.label1.Size        = new System.Drawing.Size(633, 31);
     this.label1.TabIndex    = 0;
     this.label1.Text        = "Driver Bidding";
     this.label1.TextAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // btnClose
     //
     this.btnClose.BackColor = System.Drawing.Color.SteelBlue;
     this.btnClose.Font      = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnClose.ForeColor = System.Drawing.Color.White;
     this.btnClose.Location  = new System.Drawing.Point(236, 640);
     this.btnClose.Name      = "btnClose";
     //
     //
     //
     this.btnClose.RootElement.ForeColor = System.Drawing.Color.White;
     this.btnClose.Size     = new System.Drawing.Size(177, 32);
     this.btnClose.TabIndex = 8;
     this.btnClose.Text     = "Exit Form";
     this.btnClose.Click   += new System.EventHandler(this.radButton1_Click);
     ((Telerik.WinControls.UI.RadButtonElement)(this.btnClose.GetChildAt(0))).Text      = "Exit Form";
     ((Telerik.WinControls.UI.RadButtonElement)(this.btnClose.GetChildAt(0))).ForeColor = System.Drawing.Color.White;
     ((Telerik.WinControls.UI.RadButtonElement)(this.btnClose.GetChildAt(0))).Font      = new System.Drawing.Font("Arial", 8.25F);
     ((Telerik.WinControls.Primitives.FillPrimitive)(this.btnClose.GetChildAt(0).GetChildAt(0))).BackColor2 = System.Drawing.Color.SteelBlue;
     ((Telerik.WinControls.Primitives.FillPrimitive)(this.btnClose.GetChildAt(0).GetChildAt(0))).BackColor3 = System.Drawing.Color.SteelBlue;
     ((Telerik.WinControls.Primitives.FillPrimitive)(this.btnClose.GetChildAt(0).GetChildAt(0))).BackColor4 = System.Drawing.Color.SteelBlue;
     ((Telerik.WinControls.Primitives.FillPrimitive)(this.btnClose.GetChildAt(0).GetChildAt(0))).ForeColor  = System.Drawing.Color.White;
     ((Telerik.WinControls.Primitives.FillPrimitive)(this.btnClose.GetChildAt(0).GetChildAt(0))).BackColor  = System.Drawing.Color.SteelBlue;
     ((Telerik.WinControls.Primitives.FillPrimitive)(this.btnClose.GetChildAt(0).GetChildAt(0))).Font       = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     ((Telerik.WinControls.Primitives.TextPrimitive)(this.btnClose.GetChildAt(0).GetChildAt(1).GetChildAt(1))).TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     ((Telerik.WinControls.Primitives.TextPrimitive)(this.btnClose.GetChildAt(0).GetChildAt(1).GetChildAt(1))).Font          = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Bold);
     //
     // lablltest
     //
     this.lablltest.Location = new System.Drawing.Point(10, 148);
     this.lablltest.Name     = "lablltest";
     this.lablltest.Size     = new System.Drawing.Size(2, 2);
     this.lablltest.TabIndex = 11;
     //
     // grdDrivers
     //
     this.grdDrivers.Font     = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.grdDrivers.Location = new System.Drawing.Point(10, 66);
     //
     // grdDrivers
     //
     this.grdDrivers.MasterTemplate.AllowAddNewRow = false;
     this.grdDrivers.MasterTemplate.AllowDeleteRow = false;
     gridViewTextBoxColumn1.HeaderText             = "Driver";
     gridViewTextBoxColumn1.Name           = "DriverNo";
     gridViewTextBoxColumn1.Width          = 360;
     gridViewTextBoxColumn2.HeaderText     = "column1";
     gridViewTextBoxColumn2.IsVisible      = false;
     gridViewTextBoxColumn2.Name           = "DriverId";
     gridViewTextBoxColumn3.HeaderText     = "column1";
     gridViewTextBoxColumn3.IsVisible      = false;
     gridViewTextBoxColumn3.Name           = "Id";
     gridViewDecimalColumn1.HeaderText     = "Price £";
     gridViewDecimalColumn1.Name           = "Bid";
     gridViewDecimalColumn1.TextAlignment  = System.Drawing.ContentAlignment.MiddleRight;
     gridViewDecimalColumn1.Width          = 100;
     gridViewCommandColumn1.DefaultText    = "Despatch Job";
     gridViewCommandColumn1.HeaderText     = " ";
     gridViewCommandColumn1.Name           = "btndespatchjob";
     gridViewCommandColumn1.UseDefaultText = true;
     gridViewCommandColumn1.Width          = 120;
     this.grdDrivers.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewTextBoxColumn1,
         gridViewTextBoxColumn2,
         gridViewTextBoxColumn3,
         gridViewDecimalColumn1,
         gridViewCommandColumn1
     });
     this.grdDrivers.MasterTemplate.ShowFilteringRow    = false;
     this.grdDrivers.MasterTemplate.ShowRowHeaderColumn = false;
     this.grdDrivers.Name           = "grdDrivers";
     this.grdDrivers.ShowGroupPanel = false;
     this.grdDrivers.Size           = new System.Drawing.Size(617, 513);
     this.grdDrivers.TabIndex       = 12;
     this.grdDrivers.Text           = "radGridView1";
     this.grdDrivers.CellBeginEdit += new Telerik.WinControls.UI.GridViewCellCancelEventHandler(this.grdDrivers_CellBeginEdit);
     //
     // object_3e0d7595_e73a_41b7_935a_265ec96696fd
     //
     this.object_3e0d7595_e73a_41b7_935a_265ec96696fd.ForeColor = System.Drawing.Color.Red;
     this.object_3e0d7595_e73a_41b7_935a_265ec96696fd.Name      = "object_3e0d7595_e73a_41b7_935a_265ec96696fd";
     //
     // lblTotal
     //
     this.lblTotal.Font      = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTotal.Location  = new System.Drawing.Point(478, 0);
     this.lblTotal.Name      = "lblTotal";
     this.lblTotal.Size      = new System.Drawing.Size(155, 31);
     this.lblTotal.TabIndex  = 13;
     this.lblTotal.Text      = "Total Bids :";
     this.lblTotal.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // txtJobOfferedTo
     //
     this.txtJobOfferedTo.AutoSize  = true;
     this.txtJobOfferedTo.BackColor = System.Drawing.Color.Red;
     this.txtJobOfferedTo.Font      = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtJobOfferedTo.ForeColor = System.Drawing.Color.White;
     this.txtJobOfferedTo.Location  = new System.Drawing.Point(13, 39);
     this.txtJobOfferedTo.Name      = "txtJobOfferedTo";
     this.txtJobOfferedTo.Size      = new System.Drawing.Size(0, 16);
     this.txtJobOfferedTo.TabIndex  = 15;
     //
     // frmDriverBidding
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor           = System.Drawing.Color.FromArgb(((int)(((byte)(249)))), ((int)(((byte)(249)))), ((int)(((byte)(249)))));
     this.ClientSize          = new System.Drawing.Size(633, 676);
     this.Controls.Add(this.txtJobOfferedTo);
     this.Controls.Add(this.lblTotal);
     this.Controls.Add(this.grdDrivers);
     this.Controls.Add(this.lablltest);
     this.Controls.Add(this.btnClose);
     this.Controls.Add(this.label1);
     this.Name     = "frmDriverBidding";
     this.ShowIcon = false;
     this.Text     = "Driver Bidding";
     ((System.ComponentModel.ISupportInitialize)(this.btnClose)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lablltest)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdDrivers.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdDrivers)).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()
        {
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn2 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn1 = new Telerik.WinControls.UI.GridViewCommandColumn();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmEnterSilosEmptying));
            Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn2 = new Telerik.WinControls.UI.GridViewCommandColumn();
            Telerik.WinControls.UI.TableViewDefinition tableViewDefinition1 = new Telerik.WinControls.UI.TableViewDefinition();
            this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
            this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
            this.lbCurrentStandard = new Telerik.WinControls.UI.RadLabel();
            this.btnShowStandardSelection = new Telerik.WinControls.UI.RadButton();
            this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
            this.gvSilos = new Telerik.WinControls.UI.RadGridView();
            this.btnCrearVaciamiento = new Telerik.WinControls.UI.RadButton();
            this.tableLayoutPanel1.SuspendLayout();
            this.tableLayoutPanel2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.lbCurrentStandard)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnShowStandardSelection)).BeginInit();
            this.tableLayoutPanel3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gvSilos)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gvSilos.MasterTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnCrearVaciamiento)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            this.SuspendLayout();
            // 
            // 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.tableLayoutPanel2, 0, 0);
            this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel3, 0, 1);
            this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
            this.tableLayoutPanel1.Margin = new System.Windows.Forms.Padding(4);
            this.tableLayoutPanel1.Name = "tableLayoutPanel1";
            this.tableLayoutPanel1.RowCount = 3;
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 62F));
            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, 25F));
            this.tableLayoutPanel1.Size = new System.Drawing.Size(1109, 606);
            this.tableLayoutPanel1.TabIndex = 1;
            // 
            // tableLayoutPanel2
            // 
            this.tableLayoutPanel2.ColumnCount = 2;
            this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 267F));
            this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 1140F));
            this.tableLayoutPanel2.Controls.Add(this.lbCurrentStandard, 1, 0);
            this.tableLayoutPanel2.Controls.Add(this.btnShowStandardSelection, 0, 0);
            this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tableLayoutPanel2.Location = new System.Drawing.Point(4, 4);
            this.tableLayoutPanel2.Margin = new System.Windows.Forms.Padding(4);
            this.tableLayoutPanel2.Name = "tableLayoutPanel2";
            this.tableLayoutPanel2.RowCount = 1;
            this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
            this.tableLayoutPanel2.Size = new System.Drawing.Size(1101, 54);
            this.tableLayoutPanel2.TabIndex = 4;
            // 
            // lbCurrentStandard
            // 
            this.lbCurrentStandard.Dock = System.Windows.Forms.DockStyle.Fill;
            this.lbCurrentStandard.Font = new System.Drawing.Font("Segoe UI", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lbCurrentStandard.Location = new System.Drawing.Point(271, 4);
            this.lbCurrentStandard.Margin = new System.Windows.Forms.Padding(4);
            this.lbCurrentStandard.Name = "lbCurrentStandard";
            this.lbCurrentStandard.Size = new System.Drawing.Size(1132, 46);
            this.lbCurrentStandard.TabIndex = 2;
            this.lbCurrentStandard.Text = "{{Current Standard}}";
            // 
            // btnShowStandardSelection
            // 
            this.btnShowStandardSelection.Location = new System.Drawing.Point(4, 4);
            this.btnShowStandardSelection.Margin = new System.Windows.Forms.Padding(4);
            this.btnShowStandardSelection.Name = "btnShowStandardSelection";
            this.btnShowStandardSelection.Size = new System.Drawing.Size(236, 46);
            this.btnShowStandardSelection.TabIndex = 1;
            this.btnShowStandardSelection.Text = "Ir Seleccionar Indicador";
            this.btnShowStandardSelection.Click += new System.EventHandler(this.btnShowStandardSelection_Click);
            // 
            // tableLayoutPanel3
            // 
            this.tableLayoutPanel3.ColumnCount = 1;
            this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
            this.tableLayoutPanel3.Controls.Add(this.gvSilos, 0, 1);
            this.tableLayoutPanel3.Controls.Add(this.btnCrearVaciamiento, 0, 0);
            this.tableLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tableLayoutPanel3.Location = new System.Drawing.Point(3, 65);
            this.tableLayoutPanel3.Name = "tableLayoutPanel3";
            this.tableLayoutPanel3.RowCount = 2;
            this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 7.992203F));
            this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 92.0078F));
            this.tableLayoutPanel3.Size = new System.Drawing.Size(1103, 513);
            this.tableLayoutPanel3.TabIndex = 5;
            // 
            // gvSilos
            // 
            this.gvSilos.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gvSilos.Location = new System.Drawing.Point(4, 45);
            this.gvSilos.Margin = new System.Windows.Forms.Padding(4);
            // 
            // 
            // 
            this.gvSilos.MasterTemplate.AllowAddNewRow = false;
            this.gvSilos.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
            gridViewTextBoxColumn1.FieldName = "Id";
            gridViewTextBoxColumn1.HeaderText = "Id";
            gridViewTextBoxColumn1.IsVisible = false;
            gridViewTextBoxColumn1.Name = "Id";
            gridViewTextBoxColumn2.FieldName = "Date";
            gridViewTextBoxColumn2.FormatString = "{0: dd/M/yyyy}";
            gridViewTextBoxColumn2.HeaderText = "Fecha";
            gridViewTextBoxColumn2.Name = "Date";
            gridViewTextBoxColumn2.Width = 1005;
            gridViewCommandColumn1.HeaderText = "";
            gridViewCommandColumn1.Image = ((System.Drawing.Image)(resources.GetObject("gridViewCommandColumn1.Image")));
            gridViewCommandColumn1.MaxWidth = 36;
            gridViewCommandColumn1.MinWidth = 36;
            gridViewCommandColumn1.Name = "btnEdit";
            gridViewCommandColumn1.Width = 36;
            gridViewCommandColumn2.HeaderText = "";
            gridViewCommandColumn2.Image = ((System.Drawing.Image)(resources.GetObject("gridViewCommandColumn2.Image")));
            gridViewCommandColumn2.MaxWidth = 36;
            gridViewCommandColumn2.MinWidth = 36;
            gridViewCommandColumn2.Name = "btnDelete";
            gridViewCommandColumn2.Width = 36;
            this.gvSilos.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn1,
            gridViewTextBoxColumn2,
            gridViewCommandColumn1,
            gridViewCommandColumn2});
            this.gvSilos.MasterTemplate.ViewDefinition = tableViewDefinition1;
            this.gvSilos.Name = "gvSilos";
            this.gvSilos.ReadOnly = true;
            this.gvSilos.ShowGroupPanel = false;
            this.gvSilos.Size = new System.Drawing.Size(1095, 464);
            this.gvSilos.TabIndex = 85;
            this.gvSilos.Text = "radGridView1";
            this.gvSilos.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.gvSilos_CommandCellClick);
            // 
            // btnCrearVaciamiento
            // 
            this.btnCrearVaciamiento.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.btnCrearVaciamiento.Location = new System.Drawing.Point(863, 4);
            this.btnCrearVaciamiento.Margin = new System.Windows.Forms.Padding(4);
            this.btnCrearVaciamiento.Name = "btnCrearVaciamiento";
            this.btnCrearVaciamiento.Size = new System.Drawing.Size(236, 33);
            this.btnCrearVaciamiento.TabIndex = 2;
            this.btnCrearVaciamiento.Text = "Registrar Vaciamiento";
            this.btnCrearVaciamiento.Click += new System.EventHandler(this.btnCrearVaciamiento_Click);
            // 
            // FrmEnterSilosEmptying
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1109, 606);
            this.Controls.Add(this.tableLayoutPanel1);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
            this.Margin = new System.Windows.Forms.Padding(5);
            this.Name = "FrmEnterSilosEmptying";
            // 
            // 
            // 
            this.RootElement.ApplyShapeToControl = true;
            this.Text = "FrmBatchSelection";
            this.Load += new System.EventHandler(this.FrmEnterSilosEmptying_Load);
            this.tableLayoutPanel1.ResumeLayout(false);
            this.tableLayoutPanel2.ResumeLayout(false);
            this.tableLayoutPanel2.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.lbCurrentStandard)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnShowStandardSelection)).EndInit();
            this.tableLayoutPanel3.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.gvSilos.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gvSilos)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnCrearVaciamiento)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this)).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();
     Telerik.WinControls.UI.GridViewCommandColumn  gridViewCommandColumn1  = new Telerik.WinControls.UI.GridViewCommandColumn();
     Telerik.WinControls.UI.GridViewCommandColumn  gridViewCommandColumn2  = new Telerik.WinControls.UI.GridViewCommandColumn();
     Telerik.WinControls.UI.GridViewCommandColumn  gridViewCommandColumn3  = new Telerik.WinControls.UI.GridViewCommandColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn1  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn2  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn1 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
     Telerik.WinControls.UI.GridViewDecimalColumn  gridViewDecimalColumn1  = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewDateTimeColumn gridViewDateTimeColumn1 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
     Telerik.WinControls.UI.GridViewDateTimeColumn gridViewDateTimeColumn2 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
     Telerik.WinControls.UI.GridViewDecimalColumn  gridViewDecimalColumn2  = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn2 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
     Telerik.WinControls.UI.GridViewDecimalColumn  gridViewDecimalColumn3  = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn3  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn1 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn2 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn3 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn4 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn4  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn5  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn6  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn7  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewDecimalColumn  gridViewDecimalColumn4  = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewDateTimeColumn gridViewDateTimeColumn3 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
     Telerik.WinControls.UI.GridViewDateTimeColumn gridViewDateTimeColumn4 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
     Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn5 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     this.shiftBindingSource       = new System.Windows.Forms.BindingSource(this.components);
     this.sinarekDataSet           = new NB.sinarekDataSet();
     this.tipememberBindingSource1 = new System.Windows.Forms.BindingSource(this.components);
     this.radGridView1             = new Telerik.WinControls.UI.RadGridView();
     this.memberBindingSource      = new System.Windows.Forms.BindingSource(this.components);
     this.radGroupBox1             = new Telerik.WinControls.UI.RadGroupBox();
     this.rddGender               = new Telerik.WinControls.UI.RadDropDownList();
     this.genderBindingSource     = new System.Windows.Forms.BindingSource(this.components);
     this.radLabel5               = new Telerik.WinControls.UI.RadLabel();
     this.btnAddTipe              = new Telerik.WinControls.UI.RadButton();
     this.rddTipeMember           = new Telerik.WinControls.UI.RadDropDownList();
     this.tipememberBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.radLabel3               = new Telerik.WinControls.UI.RadLabel();
     this.radGroupBox2            = new Telerik.WinControls.UI.RadGroupBox();
     this.radLabel4               = new Telerik.WinControls.UI.RadLabel();
     this.btnSaveChanges          = new Telerik.WinControls.UI.RadButton();
     this.btnCreate               = new Telerik.WinControls.UI.RadButton();
     this.dtpMasukKerja           = new Telerik.WinControls.UI.RadDateTimePicker();
     this.radLabel2               = new Telerik.WinControls.UI.RadLabel();
     this.radLabel1               = new Telerik.WinControls.UI.RadLabel();
     this.txtNama                  = new Telerik.WinControls.UI.RadTextBox();
     this.memberTableAdapter       = new NB.sinarekDataSetTableAdapters.memberTableAdapter();
     this.tipememberTableAdapter   = new NB.sinarekDataSetTableAdapters.tipememberTableAdapter();
     this.lstTipeMember            = new Telerik.WinControls.UI.RadListControl();
     this.tipememberBindingSource2 = new System.Windows.Forms.BindingSource(this.components);
     this.shiftTableAdapter        = new NB.sinarekDataSetTableAdapters.shiftTableAdapter();
     this.genderTableAdapter       = new NB.sinarekDataSetTableAdapters.genderTableAdapter();
     ((System.ComponentModel.ISupportInitialize)(this.shiftBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.sinarekDataSet)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tipememberBindingSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1.MasterTemplate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.memberBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).BeginInit();
     this.radGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.rddGender)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.genderBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnAddTipe)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rddTipeMember)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tipememberBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox2)).BeginInit();
     this.radGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnSaveChanges)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnCreate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtpMasukKerja)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNama)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lstTipeMember)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tipememberBindingSource2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // shiftBindingSource
     //
     this.shiftBindingSource.DataMember = "shift";
     this.shiftBindingSource.DataSource = this.sinarekDataSet;
     //
     // sinarekDataSet
     //
     this.sinarekDataSet.DataSetName             = "sinarekDataSet";
     this.sinarekDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // tipememberBindingSource1
     //
     this.tipememberBindingSource1.DataMember = "tipemember";
     this.tipememberBindingSource1.DataSource = this.sinarekDataSet;
     //
     // radGridView1
     //
     this.radGridView1.Dock     = System.Windows.Forms.DockStyle.Right;
     this.radGridView1.Font     = new System.Drawing.Font("Segoe UI", 10F);
     this.radGridView1.Location = new System.Drawing.Point(238, 142);
     //
     // radGridView1
     //
     this.radGridView1.MasterTemplate.AllowAddNewRow      = false;
     this.radGridView1.MasterTemplate.AllowColumnReorder  = false;
     this.radGridView1.MasterTemplate.AutoGenerateColumns = false;
     gridViewCommandColumn1.DefaultText      = "View";
     gridViewCommandColumn1.HeaderText       = "";
     gridViewCommandColumn1.Name             = "cmdView";
     gridViewCommandColumn1.UseDefaultText   = true;
     gridViewCommandColumn2.DefaultText      = "Delete";
     gridViewCommandColumn2.HeaderText       = "";
     gridViewCommandColumn2.Name             = "cmdDelete";
     gridViewCommandColumn2.UseDefaultText   = true;
     gridViewCommandColumn3.DefaultText      = "Register";
     gridViewCommandColumn3.HeaderText       = "";
     gridViewCommandColumn3.Name             = "register";
     gridViewCommandColumn3.UseDefaultText   = true;
     gridViewTextBoxColumn1.FieldName        = "Name";
     gridViewTextBoxColumn1.HeaderText       = "Name";
     gridViewTextBoxColumn1.IsAutoGenerated  = true;
     gridViewTextBoxColumn1.Name             = "Name";
     gridViewTextBoxColumn1.Width            = 150;
     gridViewTextBoxColumn2.AllowFiltering   = false;
     gridViewTextBoxColumn2.FieldName        = "Gender";
     gridViewTextBoxColumn2.HeaderText       = "G";
     gridViewTextBoxColumn2.IsAutoGenerated  = true;
     gridViewTextBoxColumn2.Name             = "Gender";
     gridViewComboBoxColumn1.AllowFiltering  = false;
     gridViewComboBoxColumn1.DataSource      = this.shiftBindingSource;
     gridViewComboBoxColumn1.DataType        = typeof(int);
     gridViewComboBoxColumn1.DisplayMember   = "Nama";
     gridViewComboBoxColumn1.FieldName       = "shiftid";
     gridViewComboBoxColumn1.HeaderText      = "Shift";
     gridViewComboBoxColumn1.Name            = "shiftname";
     gridViewComboBoxColumn1.ValueMember     = "shiftid";
     gridViewComboBoxColumn1.Width           = 70;
     gridViewDecimalColumn1.AllowFiltering   = false;
     gridViewDecimalColumn1.DataType         = typeof(int);
     gridViewDecimalColumn1.FieldName        = "shiftid";
     gridViewDecimalColumn1.HeaderText       = "Shift";
     gridViewDecimalColumn1.IsAutoGenerated  = true;
     gridViewDecimalColumn1.IsVisible        = false;
     gridViewDecimalColumn1.Name             = "shiftid";
     gridViewDecimalColumn1.Width            = 75;
     gridViewDateTimeColumn1.AllowFiltering  = false;
     gridViewDateTimeColumn1.FieldName       = "MasukKerja";
     gridViewDateTimeColumn1.FormatString    = "{0:dd MMM yyyy}";
     gridViewDateTimeColumn1.HeaderText      = "TGL Masuk";
     gridViewDateTimeColumn1.IsAutoGenerated = true;
     gridViewDateTimeColumn1.Name            = "MasukKerja";
     gridViewDateTimeColumn1.Width           = 85;
     gridViewDateTimeColumn2.AllowFiltering  = false;
     gridViewDateTimeColumn2.FieldName       = "KeluarKerja";
     gridViewDateTimeColumn2.FormatString    = "{0:dd MMM yyyy}";
     gridViewDateTimeColumn2.HeaderText      = "TGL Keluar";
     gridViewDateTimeColumn2.IsAutoGenerated = true;
     gridViewDateTimeColumn2.Name            = "KeluarKerja";
     gridViewDateTimeColumn2.Width           = 85;
     gridViewDecimalColumn2.AllowFiltering   = false;
     gridViewDecimalColumn2.DataType         = typeof(short);
     gridViewDecimalColumn2.FieldName        = "fingerid";
     gridViewDecimalColumn2.HeaderText       = "No Absen";
     gridViewDecimalColumn2.IsAutoGenerated  = true;
     gridViewDecimalColumn2.Name             = "fingerid";
     gridViewDecimalColumn2.Width            = 80;
     gridViewComboBoxColumn2.AllowFiltering  = false;
     gridViewComboBoxColumn2.DataSource      = this.tipememberBindingSource1;
     gridViewComboBoxColumn2.DataType        = typeof(int);
     gridViewComboBoxColumn2.DisplayMember   = "Description";
     gridViewComboBoxColumn2.FieldName       = "tipememberid";
     gridViewComboBoxColumn2.HeaderText      = "Tipe";
     gridViewComboBoxColumn2.Name            = "tipename";
     gridViewComboBoxColumn2.ValueMember     = "tipememberid";
     gridViewComboBoxColumn2.Width           = 80;
     gridViewDecimalColumn3.AllowFiltering   = false;
     gridViewDecimalColumn3.DataType         = typeof(int);
     gridViewDecimalColumn3.FieldName        = "TipeMemberID";
     gridViewDecimalColumn3.HeaderText       = "Tipe";
     gridViewDecimalColumn3.IsAutoGenerated  = true;
     gridViewDecimalColumn3.IsVisible        = false;
     gridViewDecimalColumn3.Name             = "TipeMemberID";
     gridViewDecimalColumn3.Width            = 100;
     gridViewTextBoxColumn3.AllowFiltering   = false;
     gridViewTextBoxColumn3.FieldName        = "Contact";
     gridViewTextBoxColumn3.HeaderText       = "Tlp";
     gridViewTextBoxColumn3.IsAutoGenerated  = true;
     gridViewTextBoxColumn3.Name             = "Contact";
     gridViewTextBoxColumn3.Width            = 100;
     gridViewCheckBoxColumn1.AllowFiltering  = false;
     gridViewCheckBoxColumn1.FieldName       = "Sopir";
     gridViewCheckBoxColumn1.HeaderText      = "Sopir";
     gridViewCheckBoxColumn1.IsAutoGenerated = true;
     gridViewCheckBoxColumn1.Name            = "Sopir";
     gridViewCheckBoxColumn2.AllowFiltering  = false;
     gridViewCheckBoxColumn2.FieldName       = "Sales";
     gridViewCheckBoxColumn2.HeaderText      = "Sales";
     gridViewCheckBoxColumn2.IsAutoGenerated = true;
     gridViewCheckBoxColumn2.Name            = "Sales";
     gridViewCheckBoxColumn3.AllowFiltering  = false;
     gridViewCheckBoxColumn3.FieldName       = "Kernet";
     gridViewCheckBoxColumn3.HeaderText      = "Kernet";
     gridViewCheckBoxColumn3.IsAutoGenerated = true;
     gridViewCheckBoxColumn3.Name            = "Kernet";
     gridViewCheckBoxColumn4.AllowFiltering  = false;
     gridViewCheckBoxColumn4.FieldName       = "Manager";
     gridViewCheckBoxColumn4.HeaderText      = "Manager";
     gridViewCheckBoxColumn4.IsAutoGenerated = true;
     gridViewCheckBoxColumn4.Name            = "Manager";
     gridViewCheckBoxColumn4.Width           = 80;
     gridViewTextBoxColumn4.AllowFiltering   = false;
     gridViewTextBoxColumn4.FieldName        = "Address";
     gridViewTextBoxColumn4.HeaderText       = "Alamat";
     gridViewTextBoxColumn4.IsAutoGenerated  = true;
     gridViewTextBoxColumn4.IsVisible        = false;
     gridViewTextBoxColumn4.Name             = "Address";
     gridViewTextBoxColumn4.Width            = 100;
     gridViewTextBoxColumn5.AllowFiltering   = false;
     gridViewTextBoxColumn5.FieldName        = "KTP";
     gridViewTextBoxColumn5.HeaderText       = "KTP";
     gridViewTextBoxColumn5.IsAutoGenerated  = true;
     gridViewTextBoxColumn5.IsVisible        = false;
     gridViewTextBoxColumn5.Name             = "KTP";
     gridViewTextBoxColumn5.Width            = 100;
     gridViewTextBoxColumn6.AllowFiltering   = false;
     gridViewTextBoxColumn6.FieldName        = "Createdby";
     gridViewTextBoxColumn6.HeaderText       = "C";
     gridViewTextBoxColumn6.IsAutoGenerated  = true;
     gridViewTextBoxColumn6.IsVisible        = false;
     gridViewTextBoxColumn6.Name             = "Createdby";
     gridViewTextBoxColumn6.Width            = 60;
     gridViewTextBoxColumn7.AllowFiltering   = false;
     gridViewTextBoxColumn7.FieldName        = "ModifiedBy";
     gridViewTextBoxColumn7.HeaderText       = "M";
     gridViewTextBoxColumn7.IsAutoGenerated  = true;
     gridViewTextBoxColumn7.IsVisible        = false;
     gridViewTextBoxColumn7.Name             = "ModifiedBy";
     gridViewTextBoxColumn7.Width            = 60;
     gridViewDecimalColumn4.AllowFiltering   = false;
     gridViewDecimalColumn4.DataType         = typeof(int);
     gridViewDecimalColumn4.FieldName        = "MemberID";
     gridViewDecimalColumn4.HeaderText       = "MemberID";
     gridViewDecimalColumn4.IsAutoGenerated  = true;
     gridViewDecimalColumn4.IsVisible        = false;
     gridViewDecimalColumn4.Name             = "MemberID";
     gridViewDateTimeColumn3.AllowFiltering  = false;
     gridViewDateTimeColumn3.FieldName       = "Created";
     gridViewDateTimeColumn3.HeaderText      = "Created";
     gridViewDateTimeColumn3.IsAutoGenerated = true;
     gridViewDateTimeColumn3.IsVisible       = false;
     gridViewDateTimeColumn3.Name            = "Created";
     gridViewDateTimeColumn4.AllowFiltering  = false;
     gridViewDateTimeColumn4.FieldName       = "Modified";
     gridViewDateTimeColumn4.HeaderText      = "Modified";
     gridViewDateTimeColumn4.IsAutoGenerated = true;
     gridViewDateTimeColumn4.IsVisible       = false;
     gridViewDateTimeColumn4.Name            = "Modified";
     gridViewCheckBoxColumn5.AllowFiltering  = false;
     gridViewCheckBoxColumn5.FieldName       = "active";
     gridViewCheckBoxColumn5.HeaderText      = "A";
     gridViewCheckBoxColumn5.Name            = "active";
     gridViewCheckBoxColumn5.Width           = 40;
     this.radGridView1.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewCommandColumn1,
         gridViewCommandColumn2,
         gridViewCommandColumn3,
         gridViewTextBoxColumn1,
         gridViewTextBoxColumn2,
         gridViewComboBoxColumn1,
         gridViewDecimalColumn1,
         gridViewDateTimeColumn1,
         gridViewDateTimeColumn2,
         gridViewDecimalColumn2,
         gridViewComboBoxColumn2,
         gridViewDecimalColumn3,
         gridViewTextBoxColumn3,
         gridViewCheckBoxColumn1,
         gridViewCheckBoxColumn2,
         gridViewCheckBoxColumn3,
         gridViewCheckBoxColumn4,
         gridViewTextBoxColumn4,
         gridViewTextBoxColumn5,
         gridViewTextBoxColumn6,
         gridViewTextBoxColumn7,
         gridViewDecimalColumn4,
         gridViewDateTimeColumn3,
         gridViewDateTimeColumn4,
         gridViewCheckBoxColumn5
     });
     this.radGridView1.MasterTemplate.DataSource          = this.memberBindingSource;
     this.radGridView1.MasterTemplate.EnableFiltering     = true;
     this.radGridView1.MasterTemplate.ShowRowHeaderColumn = false;
     this.radGridView1.Name              = "radGridView1";
     this.radGridView1.ShowGroupPanel    = false;
     this.radGridView1.Size              = new System.Drawing.Size(1062, 427);
     this.radGridView1.TabIndex          = 0;
     this.radGridView1.Text              = "radGridView1";
     this.radGridView1.CellEndEdit      += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGridView1_CellEndEdit);
     this.radGridView1.CellValueChanged += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGridView1_CellValueChanged);
     this.radGridView1.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.radGridView1_CommandCellClick);
     //
     // memberBindingSource
     //
     this.memberBindingSource.DataMember = "member";
     this.memberBindingSource.DataSource = this.sinarekDataSet;
     //
     // radGroupBox1
     //
     this.radGroupBox1.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.radGroupBox1.Controls.Add(this.rddGender);
     this.radGroupBox1.Controls.Add(this.radLabel5);
     this.radGroupBox1.Controls.Add(this.btnAddTipe);
     this.radGroupBox1.Controls.Add(this.rddTipeMember);
     this.radGroupBox1.Controls.Add(this.radLabel3);
     this.radGroupBox1.Controls.Add(this.radGroupBox2);
     this.radGroupBox1.Controls.Add(this.btnCreate);
     this.radGroupBox1.Controls.Add(this.dtpMasukKerja);
     this.radGroupBox1.Controls.Add(this.radLabel2);
     this.radGroupBox1.Controls.Add(this.radLabel1);
     this.radGroupBox1.Controls.Add(this.txtNama);
     this.radGroupBox1.Dock          = System.Windows.Forms.DockStyle.Top;
     this.radGroupBox1.Font          = new System.Drawing.Font("Segoe UI", 10F);
     this.radGroupBox1.GroupBoxStyle = Telerik.WinControls.UI.RadGroupBoxStyle.Office;
     this.radGroupBox1.HeaderText    = "Create New Member";
     this.radGroupBox1.Location      = new System.Drawing.Point(0, 0);
     this.radGroupBox1.Name          = "radGroupBox1";
     this.radGroupBox1.Padding       = new System.Windows.Forms.Padding(0);
     this.radGroupBox1.Size          = new System.Drawing.Size(1300, 142);
     this.radGroupBox1.TabIndex      = 0;
     this.radGroupBox1.Text          = "Create New Member";
     //
     // rddGender
     //
     this.rddGender.AutoCompleteDisplayMember = "Description";
     this.rddGender.AutoCompleteMode          = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
     this.rddGender.AutoCompleteValueMember   = "Code";
     this.rddGender.DataSource    = this.genderBindingSource;
     this.rddGender.DisplayMember = "Description";
     this.rddGender.Font          = new System.Drawing.Font("Segoe UI", 10F);
     this.rddGender.Location      = new System.Drawing.Point(423, 27);
     this.rddGender.Name          = "rddGender";
     this.rddGender.Size          = new System.Drawing.Size(160, 23);
     this.rddGender.TabIndex      = 10;
     this.rddGender.ValueMember   = "Code";
     //
     // genderBindingSource
     //
     this.genderBindingSource.DataMember = "gender";
     this.genderBindingSource.DataSource = this.sinarekDataSet;
     //
     // radLabel5
     //
     this.radLabel5.Location = new System.Drawing.Point(354, 28);
     this.radLabel5.Name     = "radLabel5";
     this.radLabel5.Size     = new System.Drawing.Size(48, 18);
     this.radLabel5.TabIndex = 9;
     this.radLabel5.Text     = "Gender :";
     //
     // btnAddTipe
     //
     this.btnAddTipe.Font     = new System.Drawing.Font("Segoe UI", 10F);
     this.btnAddTipe.Location = new System.Drawing.Point(245, 82);
     this.btnAddTipe.Name     = "btnAddTipe";
     this.btnAddTipe.Size     = new System.Drawing.Size(97, 23);
     this.btnAddTipe.TabIndex = 8;
     this.btnAddTipe.Text     = "&Add Tipe";
     this.btnAddTipe.Visible  = false;
     this.btnAddTipe.Click   += new System.EventHandler(this.btnAddTipe_Click);
     //
     // rddTipeMember
     //
     this.rddTipeMember.AutoCompleteDisplayMember = "Description";
     this.rddTipeMember.AutoCompleteMode          = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
     this.rddTipeMember.AutoCompleteValueMember   = "tipememberid";
     this.rddTipeMember.DataSource    = this.tipememberBindingSource;
     this.rddTipeMember.DisplayMember = "Description";
     this.rddTipeMember.Font          = new System.Drawing.Font("Segoe UI", 10F);
     this.rddTipeMember.Location      = new System.Drawing.Point(73, 82);
     this.rddTipeMember.Name          = "rddTipeMember";
     this.rddTipeMember.Size          = new System.Drawing.Size(160, 23);
     this.rddTipeMember.TabIndex      = 6;
     this.rddTipeMember.ValueMember   = "tipememberid";
     //
     // tipememberBindingSource
     //
     this.tipememberBindingSource.DataMember = "tipemember";
     this.tipememberBindingSource.DataSource = this.sinarekDataSet;
     //
     // radLabel3
     //
     this.radLabel3.Location = new System.Drawing.Point(4, 83);
     this.radLabel3.Name     = "radLabel3";
     this.radLabel3.Size     = new System.Drawing.Size(33, 18);
     this.radLabel3.TabIndex = 5;
     this.radLabel3.Text     = "Tipe :";
     //
     // radGroupBox2
     //
     this.radGroupBox2.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.radGroupBox2.Controls.Add(this.radLabel4);
     this.radGroupBox2.Controls.Add(this.btnSaveChanges);
     this.radGroupBox2.Dock          = System.Windows.Forms.DockStyle.Right;
     this.radGroupBox2.Font          = new System.Drawing.Font("Segoe UI", 10F);
     this.radGroupBox2.GroupBoxStyle = Telerik.WinControls.UI.RadGroupBoxStyle.Office;
     this.radGroupBox2.HeaderText    = "Manage";
     this.radGroupBox2.Location      = new System.Drawing.Point(787, 0);
     this.radGroupBox2.Name          = "radGroupBox2";
     this.radGroupBox2.Size          = new System.Drawing.Size(513, 142);
     this.radGroupBox2.TabIndex      = 7;
     this.radGroupBox2.Text          = "Manage";
     //
     // radLabel4
     //
     this.radLabel4.AutoSize = false;
     this.radLabel4.Location = new System.Drawing.Point(154, 34);
     this.radLabel4.Name     = "radLabel4";
     this.radLabel4.Size     = new System.Drawing.Size(341, 36);
     this.radLabel4.TabIndex = 9;
     this.radLabel4.Text     = "Changes made to this table is not automatically saved. Use this button to save ch" +
                               "anges";
     //
     // btnSaveChanges
     //
     this.btnSaveChanges.Font     = new System.Drawing.Font("Segoe UI", 10F);
     this.btnSaveChanges.Location = new System.Drawing.Point(32, 34);
     this.btnSaveChanges.Name     = "btnSaveChanges";
     this.btnSaveChanges.Size     = new System.Drawing.Size(100, 23);
     this.btnSaveChanges.TabIndex = 8;
     this.btnSaveChanges.Text     = "&Save Changes";
     this.btnSaveChanges.Click   += new System.EventHandler(this.btnSaveChanges_Click);
     //
     // btnCreate
     //
     this.btnCreate.Font     = new System.Drawing.Font("Segoe UI", 10F);
     this.btnCreate.Location = new System.Drawing.Point(423, 83);
     this.btnCreate.Name     = "btnCreate";
     this.btnCreate.Size     = new System.Drawing.Size(160, 23);
     this.btnCreate.TabIndex = 4;
     this.btnCreate.Text     = "&Insert New Member";
     this.btnCreate.Click   += new System.EventHandler(this.btnCreate_Click);
     //
     // dtpMasukKerja
     //
     this.dtpMasukKerja.CustomFormat = "dd MMM yyyy";
     this.dtpMasukKerja.Font         = new System.Drawing.Font("Segoe UI", 10F);
     this.dtpMasukKerja.Format       = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dtpMasukKerja.Location     = new System.Drawing.Point(73, 55);
     this.dtpMasukKerja.Name         = "dtpMasukKerja";
     this.dtpMasukKerja.Size         = new System.Drawing.Size(160, 23);
     this.dtpMasukKerja.TabIndex     = 3;
     this.dtpMasukKerja.TabStop      = false;
     this.dtpMasukKerja.Text         = "12 Jun 2012";
     this.dtpMasukKerja.Value        = new System.DateTime(2012, 6, 12, 10, 45, 15, 432);
     //
     // radLabel2
     //
     this.radLabel2.Location = new System.Drawing.Point(4, 56);
     this.radLabel2.Name     = "radLabel2";
     this.radLabel2.Size     = new System.Drawing.Size(52, 18);
     this.radLabel2.TabIndex = 2;
     this.radLabel2.Text     = "Tanggal :";
     //
     // radLabel1
     //
     this.radLabel1.Location = new System.Drawing.Point(4, 28);
     this.radLabel1.Name     = "radLabel1";
     this.radLabel1.Size     = new System.Drawing.Size(41, 18);
     this.radLabel1.TabIndex = 1;
     this.radLabel1.Text     = "Nama :";
     //
     // txtNama
     //
     this.txtNama.Font     = new System.Drawing.Font("Segoe UI", 10F);
     this.txtNama.Location = new System.Drawing.Point(73, 27);
     this.txtNama.Name     = "txtNama";
     this.txtNama.Size     = new System.Drawing.Size(160, 23);
     this.txtNama.TabIndex = 0;
     this.txtNama.TabStop  = false;
     //
     // memberTableAdapter
     //
     this.memberTableAdapter.ClearBeforeFill = true;
     //
     // tipememberTableAdapter
     //
     this.tipememberTableAdapter.ClearBeforeFill = true;
     //
     // lstTipeMember
     //
     this.lstTipeMember.DataSource            = this.tipememberBindingSource2;
     this.lstTipeMember.DisplayMember         = "Description";
     this.lstTipeMember.Dock                  = System.Windows.Forms.DockStyle.Fill;
     this.lstTipeMember.Font                  = new System.Drawing.Font("Segoe UI", 12F);
     this.lstTipeMember.Location              = new System.Drawing.Point(0, 142);
     this.lstTipeMember.Name                  = "lstTipeMember";
     this.lstTipeMember.Size                  = new System.Drawing.Size(238, 427);
     this.lstTipeMember.TabIndex              = 2;
     this.lstTipeMember.Text                  = "radListControl1";
     this.lstTipeMember.ValueMember           = "tipememberid";
     this.lstTipeMember.SelectedValueChanged += new System.EventHandler(this.lstTipeMember_SelectedValueChanged);
     //
     // tipememberBindingSource2
     //
     this.tipememberBindingSource2.DataMember = "tipemember";
     this.tipememberBindingSource2.DataSource = this.sinarekDataSet;
     //
     // shiftTableAdapter
     //
     this.shiftTableAdapter.ClearBeforeFill = true;
     //
     // genderTableAdapter
     //
     this.genderTableAdapter.ClearBeforeFill = true;
     //
     // frmMemberManager
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1300, 569);
     this.Controls.Add(this.lstTipeMember);
     this.Controls.Add(this.radGridView1);
     this.Controls.Add(this.radGroupBox1);
     this.Font            = new System.Drawing.Font("Segoe UI", 10F);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Name            = "frmMemberManager";
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.Text      = "Member Manager";
     this.ThemeName = "ControlDefault";
     this.Load     += new System.EventHandler(this.frmMemberManager_Load);
     ((System.ComponentModel.ISupportInitialize)(this.shiftBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.sinarekDataSet)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tipememberBindingSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.memberBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).EndInit();
     this.radGroupBox1.ResumeLayout(false);
     this.radGroupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.rddGender)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.genderBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnAddTipe)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rddTipeMember)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tipememberBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox2)).EndInit();
     this.radGroupBox2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnSaveChanges)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnCreate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtpMasukKerja)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNama)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lstTipeMember)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tipememberBindingSource2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).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()
        {
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn2 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn1 = new Telerik.WinControls.UI.GridViewCommandColumn();
            Telerik.WinControls.UI.RadListDataItem radListDataItem1 = new Telerik.WinControls.UI.RadListDataItem();
            Telerik.WinControls.UI.RadListDataItem radListDataItem2 = new Telerik.WinControls.UI.RadListDataItem();
            Telerik.WinControls.UI.RadListDataItem radListDataItem3 = new Telerik.WinControls.UI.RadListDataItem();
            Telerik.WinControls.UI.RadListDataItem radListDataItem4 = new Telerik.WinControls.UI.RadListDataItem();
            this.TxtTotal = new Telerik.WinControls.UI.RadTextBox();
            this.radLabel1 = new Telerik.WinControls.UI.RadLabel();
            this.BtnAgregar = new System.Windows.Forms.Button();
            this.gridPagos = new Telerik.WinControls.UI.RadGridView();
            this.ddlTipo = new Telerik.WinControls.UI.RadDropDownList();
            this.radLabel2 = new Telerik.WinControls.UI.RadLabel();
            this.radLabel3 = new Telerik.WinControls.UI.RadLabel();
            this.txtImporte = new Telerik.WinControls.UI.RadTextBox();
            this.BtnVales = new Telerik.WinControls.UI.RadButton();
            ((System.ComponentModel.ISupportInitialize)(this.TxtTotal)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridPagos)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridPagos.MasterTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ddlTipo)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtImporte)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.BtnVales)).BeginInit();
            this.SuspendLayout();
            // 
            // TxtTotal
            // 
            this.TxtTotal.Font = new System.Drawing.Font("Segoe UI", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.TxtTotal.Location = new System.Drawing.Point(465, 239);
            this.TxtTotal.Name = "TxtTotal";
            this.TxtTotal.Size = new System.Drawing.Size(119, 30);
            this.TxtTotal.TabIndex = 3;
            this.TxtTotal.TabStop = false;
            this.TxtTotal.ThemeName = "TelerikMetro";
            // 
            // radLabel1
            // 
            this.radLabel1.Font = new System.Drawing.Font("Segoe UI", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.radLabel1.Location = new System.Drawing.Point(351, 239);
            this.radLabel1.Name = "radLabel1";
            this.radLabel1.Size = new System.Drawing.Size(108, 28);
            this.radLabel1.TabIndex = 2;
            this.radLabel1.Text = "Total Pagos:";
            // 
            // BtnAgregar
            // 
            this.BtnAgregar.Font = new System.Drawing.Font("Segoe UI", 10.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.BtnAgregar.Location = new System.Drawing.Point(454, 13);
            this.BtnAgregar.Name = "BtnAgregar";
            this.BtnAgregar.Size = new System.Drawing.Size(128, 34);
            this.BtnAgregar.TabIndex = 3;
            this.BtnAgregar.Text = "Agregar";
            this.BtnAgregar.UseVisualStyleBackColor = true;
            this.BtnAgregar.Click += new System.EventHandler(this.BtnAgregar_Click);
            // 
            // gridPagos
            // 
            this.gridPagos.Location = new System.Drawing.Point(15, 62);
            // 
            // gridPagos
            // 
            this.gridPagos.MasterTemplate.AllowAddNewRow = false;
            this.gridPagos.MasterTemplate.AllowColumnReorder = false;
            this.gridPagos.MasterTemplate.AllowDragToGroup = false;
            this.gridPagos.MasterTemplate.AutoGenerateColumns = false;
            this.gridPagos.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
            gridViewTextBoxColumn1.FieldName = "TipoPago";
            gridViewTextBoxColumn1.FormatString = "";
            gridViewTextBoxColumn1.HeaderText = "Tipo";
            gridViewTextBoxColumn1.Name = "column1";
            gridViewTextBoxColumn1.Width = 250;
            gridViewTextBoxColumn2.FieldName = "Importe";
            gridViewTextBoxColumn2.FormatString = "";
            gridViewTextBoxColumn2.HeaderText = "Monto";
            gridViewTextBoxColumn2.Name = "Importe";
            gridViewTextBoxColumn2.Width = 267;
            gridViewCommandColumn1.HeaderText = "";
            gridViewCommandColumn1.Image = global::GestionAdministrativa.Win.Properties.Resources.delete;
            gridViewCommandColumn1.MaxWidth = 30;
            gridViewCommandColumn1.MinWidth = 30;
            gridViewCommandColumn1.Name = "Eliminar";
            gridViewCommandColumn1.Width = 30;
            this.gridPagos.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn1,
            gridViewTextBoxColumn2,
            gridViewCommandColumn1});
            this.gridPagos.Name = "gridPagos";
            this.gridPagos.ReadOnly = true;
            this.gridPagos.Size = new System.Drawing.Size(567, 171);
            this.gridPagos.TabIndex = 0;
            this.gridPagos.Text = "radGridView1";
            this.gridPagos.ThemeName = "TelerikMetro";
            this.gridPagos.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.gridPagos_CommandCellClick);
            // 
            // ddlTipo
            // 
            this.ddlTipo.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
            this.ddlTipo.DropDownAnimationEnabled = true;
            this.ddlTipo.Font = new System.Drawing.Font("Consolas", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            radListDataItem1.Text = "Vales";
            radListDataItem1.TextWrap = true;
            radListDataItem2.Text = "Efectivo";
            radListDataItem2.TextWrap = true;
            radListDataItem3.Text = "Descuento";
            radListDataItem3.TextWrap = true;
            radListDataItem4.Text = "Taller";
            radListDataItem4.TextWrap = true;
            this.ddlTipo.Items.Add(radListDataItem1);
            this.ddlTipo.Items.Add(radListDataItem2);
            this.ddlTipo.Items.Add(radListDataItem3);
            this.ddlTipo.Items.Add(radListDataItem4);
            this.ddlTipo.Location = new System.Drawing.Point(80, 12);
            this.ddlTipo.MaxDropDownItems = 0;
            this.ddlTipo.Name = "ddlTipo";
            this.ddlTipo.ShowImageInEditorArea = true;
            this.ddlTipo.Size = new System.Drawing.Size(116, 29);
            this.ddlTipo.TabIndex = 1;
            this.ddlTipo.ThemeName = "TelerikMetro";
            // 
            // radLabel2
            // 
            this.radLabel2.Font = new System.Drawing.Font("Consolas", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.radLabel2.Location = new System.Drawing.Point(15, 13);
            this.radLabel2.Name = "radLabel2";
            this.radLabel2.Size = new System.Drawing.Size(59, 25);
            this.radLabel2.TabIndex = 4;
            this.radLabel2.Text = "Tipo:";
            // 
            // radLabel3
            // 
            this.radLabel3.Font = new System.Drawing.Font("Consolas", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.radLabel3.Location = new System.Drawing.Point(213, 13);
            this.radLabel3.Name = "radLabel3";
            this.radLabel3.Size = new System.Drawing.Size(90, 25);
            this.radLabel3.TabIndex = 7;
            this.radLabel3.Text = "Importe:";
            // 
            // txtImporte
            // 
            this.txtImporte.Font = new System.Drawing.Font("Consolas", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtImporte.Location = new System.Drawing.Point(318, 13);
            this.txtImporte.Name = "txtImporte";
            this.txtImporte.Size = new System.Drawing.Size(108, 28);
            this.txtImporte.TabIndex = 2;
            this.txtImporte.TabStop = false;
            this.txtImporte.ThemeName = "TelerikMetro";
            // 
            // BtnVales
            // 
            this.BtnVales.Font = new System.Drawing.Font("Segoe UI", 10.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.BtnVales.Location = new System.Drawing.Point(15, 237);
            this.BtnVales.Name = "BtnVales";
            this.BtnVales.Size = new System.Drawing.Size(152, 47);
            this.BtnVales.TabIndex = 16;
            this.BtnVales.Text = "Agregar Vales";
            this.BtnVales.ThemeName = "TelerikMetro";
            this.BtnVales.Click += new System.EventHandler(this.BtnVales_Click);
            // 
            // ucPagos
            // 
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
            this.Controls.Add(this.BtnVales);
            this.Controls.Add(this.radLabel3);
            this.Controls.Add(this.txtImporte);
            this.Controls.Add(this.ddlTipo);
            this.Controls.Add(this.radLabel2);
            this.Controls.Add(this.TxtTotal);
            this.Controls.Add(this.radLabel1);
            this.Controls.Add(this.BtnAgregar);
            this.Controls.Add(this.gridPagos);
            this.Name = "ucPagos";
            this.Size = new System.Drawing.Size(604, 299);
            this.Load += new System.EventHandler(this.ucPagos_Load);
            ((System.ComponentModel.ISupportInitialize)(this.TxtTotal)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridPagos.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridPagos)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ddlTipo)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtImporte)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.BtnVales)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
Exemple #26
0
        private void FormatDataGrid()
        {
            try
            {
                Telerik.WinControls.UI.Localization.RadGridLocalizationProvider.CurrentProvider = new Infrastructure.WinForms.Controls.MySpanishRadGridLocalizationProvider();
                this.grdItems.Columns.Clear();
                this.grdItems.AllowAddNewRow = false;
                Telerik.WinControls.UI.GridViewCommandColumn commandColumn;
                commandColumn                = new Telerik.WinControls.UI.GridViewCommandColumn();
                commandColumn.Name           = "Edit";
                commandColumn.HeaderText     = "Editar";
                commandColumn.DefaultText    = "Editar";
                commandColumn.UseDefaultText = true;
                this.grdItems.Columns.Add(commandColumn);
                this.grdItems.Columns["Edit"].AllowSort      = false;
                this.grdItems.Columns["Edit"].AllowFiltering = false;
                //commandColumn = new Telerik.WinControls.UI.GridViewCommandColumn();
                //commandColumn.Name = "Delete";
                //commandColumn.HeaderText = "Eliminar";
                //commandColumn.DefaultText = "Eliminar";
                //commandColumn.UseDefaultText = true;
                //this.grdItems.Columns.Add(commandColumn);
                //this.grdItems.Columns["Delete"].AllowSort = false;
                //this.grdItems.Columns["Delete"].AllowFiltering = false;

                this.grdItems.Columns.Add("CONS_DescEST", "Estado", "CONS_DescEST");
                if (Presenter.CCOT_Tipo == Delfin.Controls.variables.CCOT_TipoCotizacion)
                {
                    this.grdItems.Columns.Add("CCOT_NumDocVersion", "Número/Versión Cotización", "CCOT_NumDocVersion");
                }
                else if (Presenter.CCOT_Tipo == Delfin.Controls.variables.CCOT_TipoOrdenVenta)
                {
                    this.grdItems.Columns.Add("CCOT_NumDoc", "Número Orden Venta", "CCOT_NumDoc");
                    this.grdItems.Columns.Add("CCOT_NumDocCOT", "Número/Versión Cotización", "CCOT_NumDocCOT");
                }

                this.grdItems.Columns.Add("CCOT_NumPresupuesto", "Número de Presupuesto", "CCOT_NumPresupuesto");
                this.grdItems.Columns.Add("CCOT_FecEmi", "Fecha Emisión", "CCOT_FecEmi");
                this.grdItems.Columns.Add("ENTC_NomCliente", "Cliente", "ENTC_NomCliente");
                this.grdItems.Columns.Add("CONS_DescRGM", "Régimen", "CONS_DescRGM");
                this.grdItems.Columns.Add("CONS_DescVia", "Tipo Vía", "CONS_DescVia");
                this.grdItems.Columns.Add("CONS_DescFLE", "Condición Embarque", "CONS_DescFLE");
                this.grdItems.Columns.Add("ENTC_NomEjecutivo", "Ejecutivo Ventas", "ENTC_NomEjecutivo");


                //número de cotización (resultado de concatenar con guiones la sigla de la empresa, el año de la cotización, el número de cotización y el número de la última versión)
                //número de presupuesto siempre y cuando la cotización forme parte de un presupuesto
                //fecha de emisión
                //la razón social del cliente/prospecto
                //régimen
                //tipo de vía
                //condición de embarque
                //ejecutivo de ventas
                //estado.

                grdItems.BestFitColumns();

                tsmColumnas.DropDownItems.Clear();
                defaultColumns = new string[grdItems.Columns.Count];
                int index = 0;
                foreach (Telerik.WinControls.UI.GridViewDataColumn column in grdItems.Columns)
                {
                    ToolStripMenuItem _item = new ToolStripMenuItem(column.HeaderText);
                    _item.Tag          = column.Name;
                    _item.Checked      = column.IsVisible;
                    _item.CheckOnClick = true;
                    _item.Click       += new EventHandler(tsmColumna_Click);
                    tsmColumnas.DropDownItems.Add(_item);

                    if (column.IsVisible)
                    {
                        defaultColumns[index] = column.Name; index += 1;
                    }
                }

                ToolStripSeparator tsmSeparacion = new ToolStripSeparator();
                tsmColumnas.DropDownItems.Add(tsmSeparacion);
                tsmTodos              = new ToolStripMenuItem("Todos");
                tsmTodos.Tag          = "Todas";
                tsmTodos.Checked      = false;
                tsmTodos.CheckOnClick = true;
                tsmTodos.Click       += new EventHandler(tsmTodos_Click);
                tsmColumnas.DropDownItems.Add(tsmTodos);

                Infrastructure.WinForms.Controls.GridAutoFit.Fit(grdItems);

                grdItems.ShowFilteringRow = false;
                grdItems.EnableFiltering  = false;
                grdItems.MasterTemplate.EnableFiltering = false;
                grdItems.EnableGrouping = false;
                grdItems.MasterTemplate.EnableGrouping = false;
                grdItems.EnableSorting = false;
                grdItems.MasterTemplate.EnableCustomSorting = false;
            }
            catch (Exception ex)
            { Infrastructure.WinForms.Controls.Dialogos.MostrarMensajeError(Presenter.Title, Infrastructure.Aspect.Constants.Mensajes.FormatDataGridView, ex); }
        }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            Telerik.WinControls.UI.GridViewDecimalColumn gridViewDecimalColumn1 = new Telerik.WinControls.UI.GridViewDecimalColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn2 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn3 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn4 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn5 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn6 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn1 = new Telerik.WinControls.UI.GridViewCommandColumn();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmManagementSupplier));
            Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn2 = new Telerik.WinControls.UI.GridViewCommandColumn();
            this.supplierGridView = new Telerik.WinControls.UI.RadGridView();
            this.telerikMetroTheme1 = new Telerik.WinControls.Themes.TelerikMetroTheme();
            this.toolStrip1 = new System.Windows.Forms.ToolStrip();
            this.AddBtn = new System.Windows.Forms.ToolStripButton();
            this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
            this.Refreshbtn = new System.Windows.Forms.ToolStripButton();
            this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
            this.PrintBtn = new System.Windows.Forms.ToolStripButton();
            this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
            this.statusStrip1 = new System.Windows.Forms.StatusStrip();
            this.StatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
            this.radGroupBox1 = new Telerik.WinControls.UI.RadGroupBox();
            ((System.ComponentModel.ISupportInitialize)(this.supplierGridView)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.supplierGridView.MasterTemplate)).BeginInit();
            this.toolStrip1.SuspendLayout();
            this.statusStrip1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).BeginInit();
            this.radGroupBox1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            this.SuspendLayout();
            // 
            // supplierGridView
            // 
            this.supplierGridView.BackColor = System.Drawing.Color.White;
            this.supplierGridView.Cursor = System.Windows.Forms.Cursors.Default;
            this.supplierGridView.Dock = System.Windows.Forms.DockStyle.Fill;
            this.supplierGridView.Font = new System.Drawing.Font("Segoe UI", 9F);
            this.supplierGridView.ForeColor = System.Drawing.SystemColors.ControlText;
            this.supplierGridView.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.supplierGridView.Location = new System.Drawing.Point(2, 18);
            // 
            // supplierGridView
            // 
            this.supplierGridView.MasterTemplate.AllowAddNewRow = false;
            this.supplierGridView.MasterTemplate.AllowColumnReorder = false;
            this.supplierGridView.MasterTemplate.AllowSearchRow = true;
            this.supplierGridView.MasterTemplate.AutoGenerateColumns = false;
            this.supplierGridView.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
            gridViewDecimalColumn1.EnableExpressionEditor = false;
            gridViewDecimalColumn1.FieldName = "ID";
            gridViewDecimalColumn1.HeaderText = "الرقم";
            gridViewDecimalColumn1.IsAutoGenerated = true;
            gridViewDecimalColumn1.IsVisible = false;
            gridViewDecimalColumn1.Name = "ID";
            gridViewDecimalColumn1.Width = 52;
            gridViewTextBoxColumn1.EnableExpressionEditor = false;
            gridViewTextBoxColumn1.FieldName = "Name";
            gridViewTextBoxColumn1.HeaderText = "اسم المورد";
            gridViewTextBoxColumn1.IsAutoGenerated = true;
            gridViewTextBoxColumn1.Name = "Name";
            gridViewTextBoxColumn1.Width = 158;
            gridViewTextBoxColumn2.EnableExpressionEditor = false;
            gridViewTextBoxColumn2.FieldName = "SuppliersNatural";
            gridViewTextBoxColumn2.HeaderText = "طبيعة العمل";
            gridViewTextBoxColumn2.IsAutoGenerated = true;
            gridViewTextBoxColumn2.Name = "SuppliersNatural";
            gridViewTextBoxColumn2.Width = 158;
            gridViewTextBoxColumn3.EnableExpressionEditor = false;
            gridViewTextBoxColumn3.ExcelExportFormatString = "int";
            gridViewTextBoxColumn3.ExcelExportType = Telerik.WinControls.UI.Export.DisplayFormatType.Custom;
            gridViewTextBoxColumn3.FieldName = "PhoneNumber";
            gridViewTextBoxColumn3.HeaderText = "رقم الهاتف";
            gridViewTextBoxColumn3.IsAutoGenerated = true;
            gridViewTextBoxColumn3.Name = "PhoneNumber";
            gridViewTextBoxColumn3.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            gridViewTextBoxColumn3.Width = 158;
            gridViewTextBoxColumn4.EnableExpressionEditor = false;
            gridViewTextBoxColumn4.FieldName = "Fax";
            gridViewTextBoxColumn4.HeaderText = "الفاكس";
            gridViewTextBoxColumn4.IsAutoGenerated = true;
            gridViewTextBoxColumn4.Name = "Fax";
            gridViewTextBoxColumn4.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            gridViewTextBoxColumn4.Width = 158;
            gridViewTextBoxColumn5.EnableExpressionEditor = false;
            gridViewTextBoxColumn5.FieldName = "Email";
            gridViewTextBoxColumn5.HeaderText = "البريد الالكتروني";
            gridViewTextBoxColumn5.IsAutoGenerated = true;
            gridViewTextBoxColumn5.Name = "Email";
            gridViewTextBoxColumn5.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            gridViewTextBoxColumn5.Width = 158;
            gridViewTextBoxColumn6.EnableExpressionEditor = false;
            gridViewTextBoxColumn6.FieldName = "Adderss";
            gridViewTextBoxColumn6.HeaderText = "العنوان";
            gridViewTextBoxColumn6.IsAutoGenerated = true;
            gridViewTextBoxColumn6.Name = "Adderss";
            gridViewTextBoxColumn6.Width = 165;
            gridViewCommandColumn1.DefaultText = "Save";
            gridViewCommandColumn1.EnableExpressionEditor = false;
            gridViewCommandColumn1.HeaderText = "حفظ ";
            gridViewCommandColumn1.Image = ((System.Drawing.Image)(resources.GetObject("gridViewCommandColumn1.Image")));
            gridViewCommandColumn1.MaxWidth = 45;
            gridViewCommandColumn1.MinWidth = 45;
            gridViewCommandColumn1.Name = "EditBtn";
            gridViewCommandColumn1.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            gridViewCommandColumn1.Width = 45;
            gridViewCommandColumn2.EnableExpressionEditor = false;
            gridViewCommandColumn2.HeaderText = "حذف ";
            gridViewCommandColumn2.Image = ((System.Drawing.Image)(resources.GetObject("gridViewCommandColumn2.Image")));
            gridViewCommandColumn2.MaxWidth = 45;
            gridViewCommandColumn2.MinWidth = 45;
            gridViewCommandColumn2.Name = "DelteBtn";
            gridViewCommandColumn2.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            gridViewCommandColumn2.Width = 45;
            this.supplierGridView.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewDecimalColumn1,
            gridViewTextBoxColumn1,
            gridViewTextBoxColumn2,
            gridViewTextBoxColumn3,
            gridViewTextBoxColumn4,
            gridViewTextBoxColumn5,
            gridViewTextBoxColumn6,
            gridViewCommandColumn1,
            gridViewCommandColumn2});
            this.supplierGridView.MasterTemplate.EnableFiltering = true;
            this.supplierGridView.MasterTemplate.SearchRowPosition = Telerik.WinControls.UI.SystemRowPosition.Bottom;
            this.supplierGridView.Name = "supplierGridView";
            this.supplierGridView.ReadOnly = true;
            this.supplierGridView.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.supplierGridView.ShowGroupPanel = false;
            this.supplierGridView.Size = new System.Drawing.Size(1058, 420);
            this.supplierGridView.TabIndex = 2;
            this.supplierGridView.Text = "radGridView1";
            this.supplierGridView.ThemeName = "TelerikMetro";
            this.supplierGridView.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.MasterTemplate_CommandCellClick);
            // 
            // toolStrip1
            // 
            this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.AddBtn,
            this.toolStripSeparator1,
            this.Refreshbtn,
            this.toolStripSeparator2,
            this.PrintBtn,
            this.toolStripSeparator3});
            this.toolStrip1.Location = new System.Drawing.Point(0, 0);
            this.toolStrip1.Name = "toolStrip1";
            this.toolStrip1.Size = new System.Drawing.Size(1062, 39);
            this.toolStrip1.TabIndex = 5;
            this.toolStrip1.Text = "toolStrip1";
            // 
            // AddBtn
            // 
            this.AddBtn.Image = global::UcasProWindowsForm.Properties.Resources.Add1;
            this.AddBtn.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
            this.AddBtn.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.AddBtn.Name = "AddBtn";
            this.AddBtn.Size = new System.Drawing.Size(94, 36);
            this.AddBtn.Text = "اضافة مورد";
            this.AddBtn.Click += new System.EventHandler(this.AddBtn_Click);
            // 
            // toolStripSeparator1
            // 
            this.toolStripSeparator1.Name = "toolStripSeparator1";
            this.toolStripSeparator1.Size = new System.Drawing.Size(6, 39);
            // 
            // Refreshbtn
            // 
            this.Refreshbtn.Image = global::UcasProWindowsForm.Properties.Resources.Refrech;
            this.Refreshbtn.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
            this.Refreshbtn.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.Refreshbtn.Name = "Refreshbtn";
            this.Refreshbtn.Size = new System.Drawing.Size(117, 36);
            this.Refreshbtn.Text = "تحديث السجلات";
            this.Refreshbtn.Click += new System.EventHandler(this.Refreshbtn_Click);
            // 
            // toolStripSeparator2
            // 
            this.toolStripSeparator2.Name = "toolStripSeparator2";
            this.toolStripSeparator2.Size = new System.Drawing.Size(6, 39);
            // 
            // PrintBtn
            // 
            this.PrintBtn.Image = global::UcasProWindowsForm.Properties.Resources.Print;
            this.PrintBtn.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
            this.PrintBtn.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.PrintBtn.Name = "PrintBtn";
            this.PrintBtn.Size = new System.Drawing.Size(99, 36);
            this.PrintBtn.Text = "طباعة تقرير";
            this.PrintBtn.Click += new System.EventHandler(this.ReportviewBtn_Click);
            // 
            // toolStripSeparator3
            // 
            this.toolStripSeparator3.Name = "toolStripSeparator3";
            this.toolStripSeparator3.Size = new System.Drawing.Size(6, 39);
            // 
            // statusStrip1
            // 
            this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.StatusLabel1});
            this.statusStrip1.Location = new System.Drawing.Point(0, 479);
            this.statusStrip1.Name = "statusStrip1";
            this.statusStrip1.Size = new System.Drawing.Size(1062, 22);
            this.statusStrip1.TabIndex = 8;
            this.statusStrip1.Text = "statusStrip1";
            // 
            // StatusLabel1
            // 
            this.StatusLabel1.Name = "StatusLabel1";
            this.StatusLabel1.Size = new System.Drawing.Size(12, 17);
            this.StatusLabel1.Text = "-";
            // 
            // radGroupBox1
            // 
            this.radGroupBox1.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox1.Controls.Add(this.supplierGridView);
            this.radGroupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.radGroupBox1.GroupBoxStyle = Telerik.WinControls.UI.RadGroupBoxStyle.Office;
            this.radGroupBox1.HeaderText = "سجلات الموردين";
            this.radGroupBox1.Location = new System.Drawing.Point(0, 39);
            this.radGroupBox1.Name = "radGroupBox1";
            this.radGroupBox1.Size = new System.Drawing.Size(1062, 440);
            this.radGroupBox1.TabIndex = 9;
            this.radGroupBox1.Text = "سجلات الموردين";
            this.radGroupBox1.ThemeName = "TelerikMetro";
            // 
            // FrmManagementSupplier
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1062, 501);
            this.Controls.Add(this.radGroupBox1);
            this.Controls.Add(this.statusStrip1);
            this.Controls.Add(this.toolStrip1);
            this.Name = "FrmManagementSupplier";
            this.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            // 
            // 
            // 
            this.RootElement.ApplyShapeToControl = true;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "ادارة الموردين";
            this.ThemeName = "TelerikMetro";
            this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.FrmManagementSupplier_FormClosed);
            this.Load += new System.EventHandler(this.FrmManagementSupplier_Load);
            ((System.ComponentModel.ISupportInitialize)(this.supplierGridView.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.supplierGridView)).EndInit();
            this.toolStrip1.ResumeLayout(false);
            this.toolStrip1.PerformLayout();
            this.statusStrip1.ResumeLayout(false);
            this.statusStrip1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).EndInit();
            this.radGroupBox1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
Exemple #28
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn1  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn2  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn3  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn4  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn5  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewDateTimeColumn gridViewDateTimeColumn1 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn6  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn7  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewCommandColumn  gridViewCommandColumn1  = new Telerik.WinControls.UI.GridViewCommandColumn();
     Telerik.WinControls.UI.GridViewCommandColumn  gridViewCommandColumn2  = new Telerik.WinControls.UI.GridViewCommandColumn();
     Telerik.WinControls.UI.GridViewCommandColumn  gridViewCommandColumn3  = new Telerik.WinControls.UI.GridViewCommandColumn();
     Telerik.WinControls.UI.TableViewDefinition    tableViewDefinition1    = new Telerik.WinControls.UI.TableViewDefinition();
     this.tableLayoutPanel1     = new System.Windows.Forms.TableLayoutPanel();
     this.tableLayoutPanel2     = new System.Windows.Forms.TableLayoutPanel();
     this.lbTitle               = new Telerik.WinControls.UI.RadLabel();
     this.btnBackToSalesManager = new Telerik.WinControls.UI.RadButton();
     this.gvOrders              = new Telerik.WinControls.UI.RadGridView();
     this.tableLayoutPanel1.SuspendLayout();
     this.tableLayoutPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lbTitle)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnBackToSalesManager)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvOrders)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvOrders.MasterTemplate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // 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.gvOrders, 0, 1);
     this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel2, 0, 0);
     this.tableLayoutPanel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
     this.tableLayoutPanel1.Margin   = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.tableLayoutPanel1.Name     = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 2;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 74F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel1.Size     = new System.Drawing.Size(1384, 678);
     this.tableLayoutPanel1.TabIndex = 0;
     //
     // tableLayoutPanel2
     //
     this.tableLayoutPanel2.ColumnCount = 2;
     this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 10F));
     this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 90F));
     this.tableLayoutPanel2.Controls.Add(this.lbTitle, 0, 0);
     this.tableLayoutPanel2.Controls.Add(this.btnBackToSalesManager, 0, 0);
     this.tableLayoutPanel2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel2.Location = new System.Drawing.Point(4, 4);
     this.tableLayoutPanel2.Margin   = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.tableLayoutPanel2.Name     = "tableLayoutPanel2";
     this.tableLayoutPanel2.RowCount = 1;
     this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel2.Size     = new System.Drawing.Size(1376, 66);
     this.tableLayoutPanel2.TabIndex = 9;
     //
     // lbTitle
     //
     this.lbTitle.Dock     = System.Windows.Forms.DockStyle.Top;
     this.lbTitle.Font     = new System.Drawing.Font("Segoe UI", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbTitle.Location = new System.Drawing.Point(141, 4);
     this.lbTitle.Margin   = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.lbTitle.Name     = "lbTitle";
     this.lbTitle.Size     = new System.Drawing.Size(497, 51);
     this.lbTitle.TabIndex = 13;
     this.lbTitle.Text     = "Historial de pedidos enviados";
     //
     // btnBackToSalesManager
     //
     this.btnBackToSalesManager.Font     = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnBackToSalesManager.Location = new System.Drawing.Point(11, 15);
     this.btnBackToSalesManager.Margin   = new System.Windows.Forms.Padding(11, 15, 11, 10);
     this.btnBackToSalesManager.Name     = "btnBackToSalesManager";
     this.btnBackToSalesManager.Size     = new System.Drawing.Size(115, 30);
     this.btnBackToSalesManager.TabIndex = 10;
     this.btnBackToSalesManager.Text     = "Volver";
     this.btnBackToSalesManager.Click   += new System.EventHandler(this.btnBackToSalesManager_Click);
     //
     // gvOrders
     //
     this.gvOrders.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.gvOrders.Location = new System.Drawing.Point(4, 78);
     this.gvOrders.Margin   = new System.Windows.Forms.Padding(4);
     //
     //
     //
     this.gvOrders.MasterTemplate.AllowAddNewRow      = false;
     this.gvOrders.MasterTemplate.AllowColumnReorder  = false;
     this.gvOrders.MasterTemplate.AllowDeleteRow      = false;
     this.gvOrders.MasterTemplate.AllowDragToGroup    = false;
     this.gvOrders.MasterTemplate.AllowEditRow        = false;
     this.gvOrders.MasterTemplate.AllowRowReorder     = true;
     this.gvOrders.MasterTemplate.AutoGenerateColumns = false;
     this.gvOrders.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     gridViewTextBoxColumn1.FieldName      = "OrderId";
     gridViewTextBoxColumn1.HeaderText     = "OrderId";
     gridViewTextBoxColumn1.IsVisible      = false;
     gridViewTextBoxColumn1.Name           = "OrderId";
     gridViewTextBoxColumn2.FieldName      = "ClientName";
     gridViewTextBoxColumn2.HeaderText     = "Cliente";
     gridViewTextBoxColumn2.MaxWidth       = 5000;
     gridViewTextBoxColumn2.MinWidth       = 200;
     gridViewTextBoxColumn2.Name           = "ClientName";
     gridViewTextBoxColumn2.Width          = 294;
     gridViewTextBoxColumn3.DataType       = typeof(System.DateTime);
     gridViewTextBoxColumn3.FieldName      = "CreatedDate";
     gridViewTextBoxColumn3.FormatString   = "{0: dd/M/yyyy H:mm}";
     gridViewTextBoxColumn3.HeaderText     = "Fecha Pedido";
     gridViewTextBoxColumn3.MinWidth       = 80;
     gridViewTextBoxColumn3.Name           = "CreatedDate";
     gridViewTextBoxColumn3.Width          = 117;
     gridViewTextBoxColumn4.FieldName      = "Dozens";
     gridViewTextBoxColumn4.HeaderText     = "Docenas";
     gridViewTextBoxColumn4.MinWidth       = 60;
     gridViewTextBoxColumn4.Name           = "Dozens";
     gridViewTextBoxColumn4.Width          = 88;
     gridViewTextBoxColumn5.FieldName      = "OrderStatusName";
     gridViewTextBoxColumn5.HeaderText     = "Estado";
     gridViewTextBoxColumn5.MinWidth       = 60;
     gridViewTextBoxColumn5.Name           = "OrderStatusName";
     gridViewTextBoxColumn5.Width          = 88;
     gridViewDateTimeColumn1.FieldName     = "DispatchedDate";
     gridViewDateTimeColumn1.FormatString  = "{0: dd/M/yyyy H:mm}";
     gridViewDateTimeColumn1.HeaderText    = "Fecha Envio";
     gridViewDateTimeColumn1.MinWidth      = 80;
     gridViewDateTimeColumn1.Name          = "DispatchedDate";
     gridViewDateTimeColumn1.Width         = 117;
     gridViewTextBoxColumn6.FieldName      = "DriverName";
     gridViewTextBoxColumn6.HeaderText     = "Conductor";
     gridViewTextBoxColumn6.MinWidth       = 120;
     gridViewTextBoxColumn6.Name           = "DriverName";
     gridViewTextBoxColumn6.Width          = 177;
     gridViewTextBoxColumn7.FieldName      = "Truck";
     gridViewTextBoxColumn7.HeaderText     = "Camión";
     gridViewTextBoxColumn7.MinWidth       = 120;
     gridViewTextBoxColumn7.Name           = "Truck";
     gridViewTextBoxColumn7.Width          = 274;
     gridViewCommandColumn1.DefaultText    = "Armar";
     gridViewCommandColumn1.HeaderText     = "";
     gridViewCommandColumn1.MaxWidth       = 70;
     gridViewCommandColumn1.MinWidth       = 70;
     gridViewCommandColumn1.Name           = "BuildOrder";
     gridViewCommandColumn1.TextAlignment  = System.Drawing.ContentAlignment.MiddleCenter;
     gridViewCommandColumn1.UseDefaultText = true;
     gridViewCommandColumn1.Width          = 70;
     gridViewCommandColumn2.DefaultText    = "Finalizar";
     gridViewCommandColumn2.HeaderText     = "";
     gridViewCommandColumn2.MaxWidth       = 70;
     gridViewCommandColumn2.MinWidth       = 70;
     gridViewCommandColumn2.Name           = "FinishOrder";
     gridViewCommandColumn2.TextAlignment  = System.Drawing.ContentAlignment.MiddleCenter;
     gridViewCommandColumn2.UseDefaultText = true;
     gridViewCommandColumn2.Width          = 70;
     gridViewCommandColumn3.DefaultText    = "Enviar";
     gridViewCommandColumn3.HeaderText     = "";
     gridViewCommandColumn3.MaxWidth       = 70;
     gridViewCommandColumn3.MinWidth       = 70;
     gridViewCommandColumn3.Name           = "SendOrder";
     gridViewCommandColumn3.TextAlignment  = System.Drawing.ContentAlignment.MiddleCenter;
     gridViewCommandColumn3.UseDefaultText = true;
     gridViewCommandColumn3.Width          = 70;
     this.gvOrders.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewTextBoxColumn1,
         gridViewTextBoxColumn2,
         gridViewTextBoxColumn3,
         gridViewTextBoxColumn4,
         gridViewTextBoxColumn5,
         gridViewDateTimeColumn1,
         gridViewTextBoxColumn6,
         gridViewTextBoxColumn7,
         gridViewCommandColumn1,
         gridViewCommandColumn2,
         gridViewCommandColumn3
     });
     this.gvOrders.MasterTemplate.EnablePaging   = true;
     this.gvOrders.MasterTemplate.ViewDefinition = tableViewDefinition1;
     this.gvOrders.Name     = "gvOrders";
     this.gvOrders.ReadOnly = true;
     this.gvOrders.ShowGroupPanelScrollbars = false;
     this.gvOrders.Size              = new System.Drawing.Size(1376, 596);
     this.gvOrders.TabIndex          = 10;
     this.gvOrders.ThemeName         = "TelerikMetroBlue";
     this.gvOrders.CellFormatting   += new Telerik.WinControls.UI.CellFormattingEventHandler(this.gvOrders_CellFormatting);
     this.gvOrders.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.gvOrders_CommandCellClick);
     //
     // FrmHistoryManager
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1384, 678);
     this.Controls.Add(this.tableLayoutPanel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Margin          = new System.Windows.Forms.Padding(5, 5, 5, 5);
     this.Name            = "FrmHistoryManager";
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.Text  = "FrmPendingOrders";
     this.Load += new System.EventHandler(this.FrmPendingOrders_Load);
     this.tableLayoutPanel1.ResumeLayout(false);
     this.tableLayoutPanel2.ResumeLayout(false);
     this.tableLayoutPanel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lbTitle)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnBackToSalesManager)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvOrders.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvOrders)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).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();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn2 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn3 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn4 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn5 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn6 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn7 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn1 = new Telerik.WinControls.UI.GridViewCommandColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn8 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn9 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn10 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn11 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn12 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn13 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn14 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn15 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn16 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            this.ucFiltrosCompras = new LaPaz.Win.Forms.Compras.UcFiltrosCompras();
            this.radPanel1 = new Telerik.WinControls.UI.RadPanel();
            this.pnlCompras = new Telerik.WinControls.UI.RadPanel();
            this.TxtCompras = new Telerik.WinControls.UI.RadTextBox();
            this.TxtCantidad = new Telerik.WinControls.UI.RadTextBox();
            this.radLabel1 = new Telerik.WinControls.UI.RadLabel();
            this.metroLabel4 = new Telerik.WinControls.UI.RadLabel();
            this.ComprasPager = new Framework.WinForm.Controls.MetroPager();
            this.ucProgressSpinner1 = new LaPaz.Win.Forms.Util.UcProgressSpinner();
            this.GridCompras = new Telerik.WinControls.UI.RadGridView();
            this.MovimientosProveedores = new Telerik.WinControls.UI.RadGridView();
            this.radPanel2 = new Telerik.WinControls.UI.RadPanel();
            ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).BeginInit();
            this.radPanel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pnlCompras)).BeginInit();
            this.pnlCompras.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.TxtCompras)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.TxtCantidad)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.metroLabel4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.GridCompras)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.GridCompras.MasterTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.MovimientosProveedores)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.MovimientosProveedores.MasterTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radPanel2)).BeginInit();
            this.radPanel2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            this.SuspendLayout();
            // 
            // ucFiltrosCompras
            // 
            this.ucFiltrosCompras.FechaHasta = new System.DateTime(2015, 2, 4, 17, 33, 8, 710);
            this.ucFiltrosCompras.FechaInicio = new System.DateTime(2015, 1, 19, 0, 0, 0, 0);
            this.ucFiltrosCompras.Location = new System.Drawing.Point(10, 6);
            this.ucFiltrosCompras.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
            this.ucFiltrosCompras.Name = "ucFiltrosCompras";
            this.ucFiltrosCompras.NroComprobante = "";
            this.ucFiltrosCompras.ProveedorId = null;
            this.ucFiltrosCompras.Size = new System.Drawing.Size(1045, 88);
            this.ucFiltrosCompras.TabIndex = 0;
            this.ucFiltrosCompras.TipoId = null;
            // 
            // radPanel1
            // 
            this.radPanel1.Controls.Add(this.ucFiltrosCompras);
            this.radPanel1.Location = new System.Drawing.Point(12, 12);
            this.radPanel1.Name = "radPanel1";
            this.radPanel1.Size = new System.Drawing.Size(1071, 100);
            this.radPanel1.TabIndex = 1;
            // 
            // pnlCompras
            // 
            this.pnlCompras.Controls.Add(this.TxtCompras);
            this.pnlCompras.Controls.Add(this.TxtCantidad);
            this.pnlCompras.Controls.Add(this.radLabel1);
            this.pnlCompras.Controls.Add(this.metroLabel4);
            this.pnlCompras.Controls.Add(this.ComprasPager);
            this.pnlCompras.Controls.Add(this.ucProgressSpinner1);
            this.pnlCompras.Controls.Add(this.GridCompras);
            this.pnlCompras.Location = new System.Drawing.Point(12, 118);
            this.pnlCompras.Name = "pnlCompras";
            this.pnlCompras.Size = new System.Drawing.Size(1071, 334);
            this.pnlCompras.TabIndex = 2;
            // 
            // TxtCompras
            // 
            this.TxtCompras.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.TxtCompras.Location = new System.Drawing.Point(210, 56);
            this.TxtCompras.MaxLength = 11;
            this.TxtCompras.Name = "TxtCompras";
            this.TxtCompras.Size = new System.Drawing.Size(127, 31);
            this.TxtCompras.TabIndex = 46;
            this.TxtCompras.TabStop = false;
            this.TxtCompras.ThemeName = "TelerikMetroBlue";
            // 
            // TxtCantidad
            // 
            this.TxtCantidad.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.TxtCantidad.Location = new System.Drawing.Point(210, 19);
            this.TxtCantidad.MaxLength = 11;
            this.TxtCantidad.Name = "TxtCantidad";
            this.TxtCantidad.Size = new System.Drawing.Size(127, 31);
            this.TxtCantidad.TabIndex = 45;
            this.TxtCantidad.TabStop = false;
            this.TxtCantidad.ThemeName = "TelerikMetroBlue";
            // 
            // radLabel1
            // 
            this.radLabel1.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.radLabel1.Location = new System.Drawing.Point(44, 58);
            this.radLabel1.Name = "radLabel1";
            this.radLabel1.Size = new System.Drawing.Size(160, 29);
            this.radLabel1.TabIndex = 42;
            this.radLabel1.Text = "Total de compras:";
            this.radLabel1.ThemeName = "TelerikMetroBlue";
            // 
            // metroLabel4
            // 
            this.metroLabel4.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.metroLabel4.Location = new System.Drawing.Point(10, 19);
            this.metroLabel4.Name = "metroLabel4";
            this.metroLabel4.Size = new System.Drawing.Size(194, 29);
            this.metroLabel4.TabIndex = 41;
            this.metroLabel4.Text = "Cantidad de compras:";
            this.metroLabel4.ThemeName = "TelerikMetroBlue";
            // 
            // ComprasPager
            // 
            this.ComprasPager.CurrentPage = 1;
            this.ComprasPager.Location = new System.Drawing.Point(518, 33);
            this.ComprasPager.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
            this.ComprasPager.Name = "ComprasPager";
            this.ComprasPager.PageSize = 50;
            this.ComprasPager.PageTotal = 1;
            this.ComprasPager.RefreshAction = null;
            this.ComprasPager.RefreshActionAsync = null;
            this.ComprasPager.Size = new System.Drawing.Size(511, 54);
            this.ComprasPager.TabIndex = 2;
            // 
            // ucProgressSpinner1
            // 
            this.ucProgressSpinner1.Location = new System.Drawing.Point(865, 7);
            this.ucProgressSpinner1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
            this.ucProgressSpinner1.Name = "ucProgressSpinner1";
            this.ucProgressSpinner1.Size = new System.Drawing.Size(154, 27);
            this.ucProgressSpinner1.TabIndex = 1;
            // 
            // GridCompras
            // 
            this.GridCompras.AllowDrop = true;
            this.GridCompras.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.GridCompras.AutoScroll = true;
            this.GridCompras.Location = new System.Drawing.Point(10, 109);
            // 
            // GridCompras
            // 
            this.GridCompras.MasterTemplate.AllowAddNewRow = false;
            this.GridCompras.MasterTemplate.AllowColumnReorder = false;
            this.GridCompras.MasterTemplate.AllowDeleteRow = false;
            this.GridCompras.MasterTemplate.AllowDragToGroup = false;
            this.GridCompras.MasterTemplate.AllowEditRow = false;
            this.GridCompras.MasterTemplate.AllowRowResize = false;
            this.GridCompras.MasterTemplate.AutoGenerateColumns = false;
            this.GridCompras.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
            gridViewTextBoxColumn1.FieldName = "ProveedorDenominacion";
            gridViewTextBoxColumn1.HeaderText = "Proveedor";
            gridViewTextBoxColumn1.Name = "Proveedor";
            gridViewTextBoxColumn1.Width = 303;
            gridViewTextBoxColumn2.FieldName = "TipoComprobanteId";
            gridViewTextBoxColumn2.FormatString = "";
            gridViewTextBoxColumn2.HeaderText = "Tipo";
            gridViewTextBoxColumn2.Name = "TipoComprobanteId";
            gridViewTextBoxColumn2.Width = 195;
            gridViewTextBoxColumn3.FieldName = "Observaciones";
            gridViewTextBoxColumn3.HeaderText = "Observaciones";
            gridViewTextBoxColumn3.Name = "Observaciones";
            gridViewTextBoxColumn3.Width = 252;
            gridViewTextBoxColumn4.FieldName = "FechaAlta";
            gridViewTextBoxColumn4.FormatString = "";
            gridViewTextBoxColumn4.HeaderText = "Fecha";
            gridViewTextBoxColumn4.Name = "FechaAlta";
            gridViewTextBoxColumn4.Width = 133;
            gridViewTextBoxColumn5.FieldName = "LCN";
            gridViewTextBoxColumn5.FormatString = "";
            gridViewTextBoxColumn5.HeaderText = "LCN";
            gridViewTextBoxColumn5.IsVisible = false;
            gridViewTextBoxColumn5.Name = "LCN";
            gridViewTextBoxColumn5.Width = 116;
            gridViewTextBoxColumn6.FieldName = "ImporteNeto";
            gridViewTextBoxColumn6.FormatString = "";
            gridViewTextBoxColumn6.HeaderText = "Importe";
            gridViewTextBoxColumn6.Name = "ImporteNeto";
            gridViewTextBoxColumn6.Width = 114;
            gridViewTextBoxColumn7.FieldName = "FechaVencimiento";
            gridViewTextBoxColumn7.FormatString = "";
            gridViewTextBoxColumn7.HeaderText = "Vencimiento";
            gridViewTextBoxColumn7.IsVisible = false;
            gridViewTextBoxColumn7.Name = "FechaVencimiento";
            gridViewTextBoxColumn7.Width = 328;
            gridViewCommandColumn1.FormatString = "";
            gridViewCommandColumn1.HeaderText = "";
            gridViewCommandColumn1.Image = global::LaPaz.Win.Properties.Resources.View_Details;
            gridViewCommandColumn1.MaxWidth = 30;
            gridViewCommandColumn1.MinWidth = 30;
            gridViewCommandColumn1.Name = "Detalle";
            gridViewCommandColumn1.Width = 30;
            this.GridCompras.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn1,
            gridViewTextBoxColumn2,
            gridViewTextBoxColumn3,
            gridViewTextBoxColumn4,
            gridViewTextBoxColumn5,
            gridViewTextBoxColumn6,
            gridViewTextBoxColumn7,
            gridViewCommandColumn1});
            this.GridCompras.Name = "GridCompras";
            this.GridCompras.ReadOnly = true;
            this.GridCompras.Size = new System.Drawing.Size(1044, 206);
            this.GridCompras.TabIndex = 0;
            this.GridCompras.ThemeName = "TelerikMetroBlue";
            this.GridCompras.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.GridCompras_CommandCellClick);
            this.GridCompras.DoubleClick += new System.EventHandler(this.GridCompras_DoubleClick);
            // 
            // MovimientosProveedores
            // 
            this.MovimientosProveedores.Location = new System.Drawing.Point(10, 12);
            // 
            // MovimientosProveedores
            // 
            this.MovimientosProveedores.MasterTemplate.AllowAddNewRow = false;
            this.MovimientosProveedores.MasterTemplate.AllowColumnReorder = false;
            this.MovimientosProveedores.MasterTemplate.AllowDragToGroup = false;
            this.MovimientosProveedores.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
            gridViewTextBoxColumn8.FieldName = "Fecha";
            gridViewTextBoxColumn8.FormatString = "";
            gridViewTextBoxColumn8.HeaderText = "Fecha";
            gridViewTextBoxColumn8.Name = "Fecha";
            gridViewTextBoxColumn8.Width = 123;
            gridViewTextBoxColumn9.FieldName = "Concepto";
            gridViewTextBoxColumn9.FormatString = "";
            gridViewTextBoxColumn9.HeaderText = "Concepto";
            gridViewTextBoxColumn9.Name = "Concepto";
            gridViewTextBoxColumn9.Width = 191;
            gridViewTextBoxColumn10.FieldName = "Importe";
            gridViewTextBoxColumn10.FormatString = "";
            gridViewTextBoxColumn10.HeaderText = "Compras";
            gridViewTextBoxColumn10.Name = "Importe";
            gridViewTextBoxColumn10.Width = 102;
            gridViewTextBoxColumn11.FieldName = "Pagos";
            gridViewTextBoxColumn11.FormatString = "";
            gridViewTextBoxColumn11.HeaderText = "Pagos";
            gridViewTextBoxColumn11.Name = "Pagos";
            gridViewTextBoxColumn11.Width = 101;
            gridViewTextBoxColumn12.FieldName = "Efectivo";
            gridViewTextBoxColumn12.HeaderText = "Efectivo";
            gridViewTextBoxColumn12.Name = "Efectivo";
            gridViewTextBoxColumn12.Width = 95;
            gridViewTextBoxColumn13.FieldName = "Tarjeta";
            gridViewTextBoxColumn13.HeaderText = "Tarjeta";
            gridViewTextBoxColumn13.Name = "Tarjeta";
            gridViewTextBoxColumn13.Width = 95;
            gridViewTextBoxColumn14.FieldName = "Cheque";
            gridViewTextBoxColumn14.HeaderText = "Cheque";
            gridViewTextBoxColumn14.Name = "Cheque";
            gridViewTextBoxColumn14.Width = 95;
            gridViewTextBoxColumn15.FieldName = "Deposito";
            gridViewTextBoxColumn15.HeaderText = "Deposito";
            gridViewTextBoxColumn15.Name = "Deposito";
            gridViewTextBoxColumn15.Width = 95;
            gridViewTextBoxColumn16.FieldName = "Transferencia";
            gridViewTextBoxColumn16.HeaderText = "Transferencia";
            gridViewTextBoxColumn16.Name = "Transferencia";
            gridViewTextBoxColumn16.Width = 134;
            this.MovimientosProveedores.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn8,
            gridViewTextBoxColumn9,
            gridViewTextBoxColumn10,
            gridViewTextBoxColumn11,
            gridViewTextBoxColumn12,
            gridViewTextBoxColumn13,
            gridViewTextBoxColumn14,
            gridViewTextBoxColumn15,
            gridViewTextBoxColumn16});
            this.MovimientosProveedores.Name = "MovimientosProveedores";
            this.MovimientosProveedores.ReadOnly = true;
            this.MovimientosProveedores.Size = new System.Drawing.Size(1045, 284);
            this.MovimientosProveedores.TabIndex = 48;
            this.MovimientosProveedores.Text = "radGridView1";
            this.MovimientosProveedores.ThemeName = "TelerikMetroBlue";
            // 
            // radPanel2
            // 
            this.radPanel2.Controls.Add(this.MovimientosProveedores);
            this.radPanel2.Location = new System.Drawing.Point(12, 458);
            this.radPanel2.Name = "radPanel2";
            this.radPanel2.Size = new System.Drawing.Size(1071, 307);
            this.radPanel2.TabIndex = 49;
            // 
            // FrmComprasListado
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1595, 1092);
            this.Controls.Add(this.radPanel2);
            this.Controls.Add(this.pnlCompras);
            this.Controls.Add(this.radPanel1);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
            this.Margin = new System.Windows.Forms.Padding(4);
            this.Name = "FrmComprasListado";
            // 
            // 
            // 
            this.RootElement.ApplyShapeToControl = true;
            this.Text = "Listado de Compras";
            this.Load += new System.EventHandler(this.FrmListadoCompras_Load);
            ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).EndInit();
            this.radPanel1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.pnlCompras)).EndInit();
            this.pnlCompras.ResumeLayout(false);
            this.pnlCompras.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.TxtCompras)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.TxtCantidad)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.metroLabel4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.GridCompras.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.GridCompras)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.MovimientosProveedores.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.MovimientosProveedores)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radPanel2)).EndInit();
            this.radPanel2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this)).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()
 {
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn2 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn3 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn4 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn1 = new Telerik.WinControls.UI.GridViewCommandColumn();
     this.GrillaSeleccionarCliente = new Telerik.WinControls.UI.RadGridView();
     ((System.ComponentModel.ISupportInitialize)(this.GrillaSeleccionarCliente)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GrillaSeleccionarCliente.MasterTemplate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // GrillaSeleccionarCliente
     //
     this.GrillaSeleccionarCliente.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.GrillaSeleccionarCliente.Font     = new System.Drawing.Font("Segoe UI", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
     this.GrillaSeleccionarCliente.Location = new System.Drawing.Point(12, 12);
     //
     // GrillaSeleccionarCliente
     //
     this.GrillaSeleccionarCliente.MasterTemplate.AllowAddNewRow      = false;
     this.GrillaSeleccionarCliente.MasterTemplate.AllowColumnReorder  = false;
     this.GrillaSeleccionarCliente.MasterTemplate.AllowColumnResize   = false;
     this.GrillaSeleccionarCliente.MasterTemplate.AllowDeleteRow      = false;
     this.GrillaSeleccionarCliente.MasterTemplate.AllowDragToGroup    = false;
     this.GrillaSeleccionarCliente.MasterTemplate.AllowEditRow        = false;
     this.GrillaSeleccionarCliente.MasterTemplate.AllowRowResize      = false;
     this.GrillaSeleccionarCliente.MasterTemplate.AutoGenerateColumns = false;
     this.GrillaSeleccionarCliente.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     gridViewTextBoxColumn1.FieldName         = "FechaComprobante";
     gridViewTextBoxColumn1.FormatString      = "{0:dd/MM/yyyy}";
     gridViewTextBoxColumn1.HeaderText        = "Fecha Comprobante ";
     gridViewTextBoxColumn1.MaxWidth          = 137;
     gridViewTextBoxColumn1.MinWidth          = 137;
     gridViewTextBoxColumn1.Name              = "FechaComprobante ";
     gridViewTextBoxColumn1.ReadOnly          = true;
     gridViewTextBoxColumn1.Width             = 137;
     gridViewTextBoxColumn2.FieldName         = "NumeroComprobante";
     gridViewTextBoxColumn2.HeaderText        = "Nro";
     gridViewTextBoxColumn2.Name              = "Nro";
     gridViewTextBoxColumn2.Width             = 44;
     gridViewTextBoxColumn3.FieldName         = "Concepto";
     gridViewTextBoxColumn3.HeaderText        = "Concepto";
     gridViewTextBoxColumn3.MaxWidth          = 250;
     gridViewTextBoxColumn3.MinWidth          = 170;
     gridViewTextBoxColumn3.Name              = "Concepto";
     gridViewTextBoxColumn3.ReadOnly          = true;
     gridViewTextBoxColumn3.Width             = 221;
     gridViewTextBoxColumn4.FieldName         = "ImporteNeto";
     gridViewTextBoxColumn4.FormatString      = "{0:N2}";
     gridViewTextBoxColumn4.HeaderText        = "Importe Neto";
     gridViewTextBoxColumn4.MaxWidth          = 96;
     gridViewTextBoxColumn4.MinWidth          = 96;
     gridViewTextBoxColumn4.Name              = "ImporteNeto";
     gridViewTextBoxColumn4.Width             = 96;
     gridViewCommandColumn1.DefaultText       = "Seleccionar";
     gridViewCommandColumn1.FieldName         = "Seleccionar";
     gridViewCommandColumn1.FormatInfo        = new System.Globalization.CultureInfo("");
     gridViewCommandColumn1.HeaderText        = "";
     gridViewCommandColumn1.MinWidth          = 100;
     gridViewCommandColumn1.Name              = "Seleccionar";
     gridViewCommandColumn1.TextAlignment     = System.Drawing.ContentAlignment.MiddleCenter;
     gridViewCommandColumn1.TextImageRelation = System.Windows.Forms.TextImageRelation.TextBeforeImage;
     gridViewCommandColumn1.UseDefaultText    = true;
     gridViewCommandColumn1.Width             = 104;
     this.GrillaSeleccionarCliente.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewTextBoxColumn1,
         gridViewTextBoxColumn2,
         gridViewTextBoxColumn3,
         gridViewTextBoxColumn4,
         gridViewCommandColumn1
     });
     this.GrillaSeleccionarCliente.MasterTemplate.EnableGrouping = false;
     this.GrillaSeleccionarCliente.Name              = "GrillaSeleccionarCliente";
     this.GrillaSeleccionarCliente.ReadOnly          = true;
     this.GrillaSeleccionarCliente.Size              = new System.Drawing.Size(620, 231);
     this.GrillaSeleccionarCliente.TabIndex          = 41;
     this.GrillaSeleccionarCliente.ThemeName         = "TelerikMetroBlue";
     this.GrillaSeleccionarCliente.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.GrillaSeleccionarCliente_CommandCellClick);
     this.GrillaSeleccionarCliente.KeyUp            += new System.Windows.Forms.KeyEventHandler(this.GrillaSeleccionarCliente_KeyUp);
     //
     // FrmSeleccionarConsignacion
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(644, 255);
     this.Controls.Add(this.GrillaSeleccionarCliente);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "FrmSeleccionarConsignacion";
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.Text  = "Seleccionar Consignación";
     this.Load += new System.EventHandler(this.FrmSeleccionarConsignacion_Load);
     ((System.ComponentModel.ISupportInitialize)(this.GrillaSeleccionarCliente.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GrillaSeleccionarCliente)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).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();
            Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn1 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn2 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn1 = new Telerik.WinControls.UI.GridViewCommandColumn();
            Telerik.WinControls.UI.GridViewDecimalColumn gridViewDecimalColumn1 = new Telerik.WinControls.UI.GridViewDecimalColumn();
            Telerik.WinControls.Data.SortDescriptor sortDescriptor1 = new Telerik.WinControls.Data.SortDescriptor();
            this.radGroupBox2 = new Telerik.WinControls.UI.RadGroupBox();
            this.grdTimming = new Telerik.WinControls.UI.RadGridView();
            this.btnAdd = new Telerik.WinControls.UI.RadButton();
            this.radGroupBox1 = new Telerik.WinControls.UI.RadGroupBox();
            this.btnCancel = new Telerik.WinControls.UI.RadButton();
            this.radLabel3 = new Telerik.WinControls.UI.RadLabel();
            this.radLabel2 = new Telerik.WinControls.UI.RadLabel();
            this.tpTo = new Telerik.WinControls.UI.RadTimePicker();
            this.timmingBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.tpFrom = new Telerik.WinControls.UI.RadTimePicker();
            this.radLabel1 = new Telerik.WinControls.UI.RadLabel();
            this.comboDay = new Telerik.WinControls.UI.RadDropDownList();
            this.gbCalender = new Telerik.WinControls.UI.RadGroupBox();
            this.faMonthView = new FarsiLibrary.Win.Controls.FAMonthView();
            this.btnSave = new Telerik.WinControls.UI.RadButton();
            this.btnExit = new Telerik.WinControls.UI.RadButton();
            this.lblHolidayTitle = new System.Windows.Forms.Label();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox2)).BeginInit();
            this.radGroupBox2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grdTimming)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.grdTimming.MasterTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnAdd)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).BeginInit();
            this.radGroupBox1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.btnCancel)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.tpTo)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.timmingBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.tpFrom)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboDay)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gbCalender)).BeginInit();
            this.gbCalender.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.btnSave)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnExit)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            this.SuspendLayout();
            // 
            // radGroupBox2
            // 
            this.radGroupBox2.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox2.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.radGroupBox2.Controls.Add(this.grdTimming);
            this.radGroupBox2.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.radGroupBox2.FooterImageIndex = -1;
            this.radGroupBox2.FooterImageKey = "";
            this.radGroupBox2.HeaderImageIndex = -1;
            this.radGroupBox2.HeaderImageKey = "";
            this.radGroupBox2.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.radGroupBox2.HeaderText = "روز های کاری ذخیره شده";
            this.radGroupBox2.Location = new System.Drawing.Point(12, 2);
            this.radGroupBox2.Name = "radGroupBox2";
            this.radGroupBox2.Padding = new System.Windows.Forms.Padding(2, 17, 2, 2);
            this.radGroupBox2.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            // 
            // 
            // 
            this.radGroupBox2.RootElement.Padding = new System.Windows.Forms.Padding(2, 17, 2, 2);
            this.radGroupBox2.Size = new System.Drawing.Size(328, 382);
            this.radGroupBox2.TabIndex = 3;
            this.radGroupBox2.Text = "روز های کاری ذخیره شده";
            // 
            // grdTimming
            // 
            this.grdTimming.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.grdTimming.EnableHotTracking = false;
            this.grdTimming.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.grdTimming.Location = new System.Drawing.Point(5, 27);
            // 
            // grdTimming
            // 
            this.grdTimming.MasterTemplate.AllowAddNewRow = false;
            this.grdTimming.MasterTemplate.AllowCellContextMenu = false;
            this.grdTimming.MasterTemplate.AllowColumnChooser = false;
            this.grdTimming.MasterTemplate.AllowColumnHeaderContextMenu = false;
            this.grdTimming.MasterTemplate.AllowDeleteRow = false;
            this.grdTimming.MasterTemplate.AllowDragToGroup = false;
            this.grdTimming.MasterTemplate.AllowEditRow = false;
            this.grdTimming.MasterTemplate.AllowRowResize = false;
            this.grdTimming.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
            gridViewComboBoxColumn1.DataType = typeof(int);
            gridViewComboBoxColumn1.DisplayMember = null;
            gridViewComboBoxColumn1.FieldName = "DayName";
            gridViewComboBoxColumn1.HeaderText = "روز";
            gridViewComboBoxColumn1.Name = "column2";
            gridViewComboBoxColumn1.ValueMember = null;
            gridViewComboBoxColumn1.Width = 119;
            gridViewTextBoxColumn1.DataType = typeof(System.DateTime);
            gridViewTextBoxColumn1.FieldName = "From";
            gridViewTextBoxColumn1.FormatString = "{0: hh:mm}";
            gridViewTextBoxColumn1.HeaderText = "از";
            gridViewTextBoxColumn1.Name = "From";
            gridViewTextBoxColumn1.Width = 79;
            gridViewTextBoxColumn2.FieldName = "To";
            gridViewTextBoxColumn2.FormatString = "{0: hh:mm}";
            gridViewTextBoxColumn2.HeaderText = "تا";
            gridViewTextBoxColumn2.Name = "To";
            gridViewTextBoxColumn2.Width = 92;
            gridViewCommandColumn1.HeaderText = "حذف";
            gridViewCommandColumn1.MaxWidth = 30;
            gridViewCommandColumn1.Name = "column1";
            gridViewCommandColumn1.Width = 30;
            gridViewDecimalColumn1.DataType = typeof(int);
            gridViewDecimalColumn1.FieldName = "DayOfWeek";
            gridViewDecimalColumn1.HeaderText = "column3";
            gridViewDecimalColumn1.IsVisible = false;
            gridViewDecimalColumn1.Name = "column3";
            gridViewDecimalColumn1.SortOrder = Telerik.WinControls.UI.RadSortOrder.Ascending;
            gridViewDecimalColumn1.Width = 41;
            this.grdTimming.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewComboBoxColumn1,
            gridViewTextBoxColumn1,
            gridViewTextBoxColumn2,
            gridViewCommandColumn1,
            gridViewDecimalColumn1});
            this.grdTimming.MasterTemplate.EnableGrouping = false;
            this.grdTimming.MasterTemplate.ShowFilteringRow = false;
            this.grdTimming.MasterTemplate.ShowRowHeaderColumn = false;
            sortDescriptor1.PropertyName = "column3";
            this.grdTimming.MasterTemplate.SortDescriptors.AddRange(new Telerik.WinControls.Data.SortDescriptor[] {
            sortDescriptor1});
            this.grdTimming.Name = "grdTimming";
            this.grdTimming.ReadOnly = true;
            this.grdTimming.ShowCellErrors = false;
            this.grdTimming.ShowGroupPanel = false;
            this.grdTimming.ShowNoDataText = false;
            this.grdTimming.ShowRowErrors = false;
            this.grdTimming.Size = new System.Drawing.Size(318, 350);
            this.grdTimming.TabIndex = 0;
            this.grdTimming.Text = "radGridView1";
            this.grdTimming.CellFormatting += new Telerik.WinControls.UI.CellFormattingEventHandler(this.grdTimming_CellFormatting);
            this.grdTimming.CurrentRowChanging += new Telerik.WinControls.UI.CurrentRowChangingEventHandler(this.grdTimming_CurrentRowChanging);
            this.grdTimming.SelectionChanged += new System.EventHandler(this.grdTimming_SelectionChanged);
            this.grdTimming.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.grdTimming_CommandCellClick);
            this.grdTimming.KeyDown += new System.Windows.Forms.KeyEventHandler(this.comp_KeyDown);
            // 
            // btnAdd
            // 
            this.btnAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.btnAdd.Font = new System.Drawing.Font("B Nazanin", 10.5F, System.Drawing.FontStyle.Bold);
            this.btnAdd.Location = new System.Drawing.Point(101, 109);
            this.btnAdd.Name = "btnAdd";
            this.btnAdd.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.btnAdd.Size = new System.Drawing.Size(90, 35);
            this.btnAdd.TabIndex = 3;
            this.btnAdd.Text = "افزودن   ";
            this.btnAdd.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
            this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
            // 
            // radGroupBox1
            // 
            this.radGroupBox1.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.radGroupBox1.Controls.Add(this.btnAdd);
            this.radGroupBox1.Controls.Add(this.btnCancel);
            this.radGroupBox1.Controls.Add(this.radLabel3);
            this.radGroupBox1.Controls.Add(this.radLabel2);
            this.radGroupBox1.Controls.Add(this.tpTo);
            this.radGroupBox1.Controls.Add(this.tpFrom);
            this.radGroupBox1.Controls.Add(this.radLabel1);
            this.radGroupBox1.Controls.Add(this.comboDay);
            this.radGroupBox1.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.radGroupBox1.FooterImageIndex = -1;
            this.radGroupBox1.FooterImageKey = "";
            this.radGroupBox1.HeaderImageIndex = -1;
            this.radGroupBox1.HeaderImageKey = "";
            this.radGroupBox1.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.radGroupBox1.HeaderText = "تعریف روز های کاری";
            this.radGroupBox1.Location = new System.Drawing.Point(346, 2);
            this.radGroupBox1.Name = "radGroupBox1";
            this.radGroupBox1.Padding = new System.Windows.Forms.Padding(2, 17, 2, 2);
            this.radGroupBox1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            // 
            // 
            // 
            this.radGroupBox1.RootElement.MinSize = new System.Drawing.Size(0, 0);
            this.radGroupBox1.RootElement.Padding = new System.Windows.Forms.Padding(2, 17, 2, 2);
            this.radGroupBox1.Size = new System.Drawing.Size(200, 149);
            this.radGroupBox1.TabIndex = 2;
            this.radGroupBox1.Text = "تعریف روز های کاری";
            // 
            // btnCancel
            // 
            this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.btnCancel.Font = new System.Drawing.Font("B Nazanin", 10.5F, System.Drawing.FontStyle.Bold);
            this.btnCancel.Location = new System.Drawing.Point(5, 109);
            this.btnCancel.Name = "btnCancel";
            this.btnCancel.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.btnCancel.Size = new System.Drawing.Size(90, 35);
            this.btnCancel.TabIndex = 4;
            this.btnCancel.Text = "جدید   ";
            this.btnCancel.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
            this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
            // 
            // radLabel3
            // 
            this.radLabel3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.radLabel3.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold);
            this.radLabel3.Location = new System.Drawing.Point(139, 52);
            this.radLabel3.Name = "radLabel3";
            this.radLabel3.Size = new System.Drawing.Size(55, 30);
            this.radLabel3.TabIndex = 2;
            this.radLabel3.Text = "از ساعت:";
            this.radLabel3.TextAlignment = System.Drawing.ContentAlignment.TopRight;
            // 
            // radLabel2
            // 
            this.radLabel2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.radLabel2.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold);
            this.radLabel2.Location = new System.Drawing.Point(139, 79);
            this.radLabel2.Name = "radLabel2";
            this.radLabel2.Size = new System.Drawing.Size(54, 30);
            this.radLabel2.TabIndex = 4;
            this.radLabel2.Text = "تا ساعت:";
            this.radLabel2.TextAlignment = System.Drawing.ContentAlignment.TopRight;
            // 
            // tpTo
            // 
            this.tpTo.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.tpTo.DataBindings.Add(new System.Windows.Forms.Binding("Value", this.timmingBindingSource, "To", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged, null, "t"));
            this.tpTo.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.tpTo.HeadersHeight = 19;
            this.tpTo.Location = new System.Drawing.Point(5, 79);
            this.tpTo.Name = "tpTo";
            this.tpTo.Size = new System.Drawing.Size(130, 25);
            this.tpTo.TabIndex = 2;
            this.tpTo.TabStop = false;
            this.tpTo.Text = "radTimePicker2";
            this.tpTo.Value = new System.DateTime(2012, 7, 31, 11, 15, 6, 0);
            this.tpTo.KeyDown += new System.Windows.Forms.KeyEventHandler(this.comp_KeyDown);
            // 
            // timmingBindingSource
            // 
            this.timmingBindingSource.DataSource = typeof(Shayan.Data.Timming);
            // 
            // tpFrom
            // 
            this.tpFrom.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.tpFrom.DataBindings.Add(new System.Windows.Forms.Binding("Value", this.timmingBindingSource, "from", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged, null, "t"));
            this.tpFrom.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.tpFrom.HeadersHeight = 19;
            this.tpFrom.Location = new System.Drawing.Point(5, 53);
            this.tpFrom.Name = "tpFrom";
            this.tpFrom.Size = new System.Drawing.Size(130, 25);
            this.tpFrom.TabIndex = 1;
            this.tpFrom.TabStop = false;
            this.tpFrom.Text = "radTimePicker1";
            this.tpFrom.Value = new System.DateTime(2012, 7, 31, 11, 14, 20, 0);
            this.tpFrom.KeyDown += new System.Windows.Forms.KeyEventHandler(this.comp_KeyDown);
            // 
            // radLabel1
            // 
            this.radLabel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.radLabel1.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold);
            this.radLabel1.Location = new System.Drawing.Point(140, 25);
            this.radLabel1.Name = "radLabel1";
            this.radLabel1.Size = new System.Drawing.Size(56, 30);
            this.radLabel1.TabIndex = 1;
            this.radLabel1.Text = "روز هفته:";
            this.radLabel1.TextAlignment = System.Drawing.ContentAlignment.TopRight;
            // 
            // comboDay
            // 
            this.comboDay.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.comboDay.DropDownAnimationEnabled = true;
            this.comboDay.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList;
            this.comboDay.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.comboDay.Location = new System.Drawing.Point(5, 27);
            this.comboDay.MaxDropDownItems = 0;
            this.comboDay.Name = "comboDay";
            this.comboDay.ShowImageInEditorArea = true;
            this.comboDay.Size = new System.Drawing.Size(130, 25);
            this.comboDay.TabIndex = 0;
            this.comboDay.KeyDown += new System.Windows.Forms.KeyEventHandler(this.comp_KeyDown);
            // 
            // gbCalender
            // 
            this.gbCalender.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.gbCalender.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.gbCalender.Controls.Add(this.lblHolidayTitle);
            this.gbCalender.Controls.Add(this.faMonthView);
            this.gbCalender.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.gbCalender.FooterImageIndex = -1;
            this.gbCalender.FooterImageKey = "";
            this.gbCalender.HeaderImageIndex = -1;
            this.gbCalender.HeaderImageKey = "";
            this.gbCalender.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.gbCalender.HeaderText = "ثبت تعطیلات";
            this.gbCalender.Location = new System.Drawing.Point(346, 155);
            this.gbCalender.Name = "gbCalender";
            this.gbCalender.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.gbCalender.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            // 
            // 
            // 
            this.gbCalender.RootElement.MinSize = new System.Drawing.Size(0, 0);
            this.gbCalender.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.gbCalender.Size = new System.Drawing.Size(198, 229);
            this.gbCalender.TabIndex = 4;
            this.gbCalender.Text = "ثبت تعطیلات";
            // 
            // faMonthView
            // 
            this.faMonthView.Anchor = System.Windows.Forms.AnchorStyles.None;
            this.faMonthView.IsNull = false;
            this.faMonthView.Location = new System.Drawing.Point(9, 26);
            this.faMonthView.Name = "faMonthView";
            this.faMonthView.SelectedDateTime = new System.DateTime(2012, 8, 1, 11, 43, 56, 593);
            this.faMonthView.TabIndex = 0;
            this.faMonthView.DrawCurrentDay += new FarsiLibrary.Win.Events.CustomDrawDayEventHandler(this.faMonthView_DrawCurrentDay);
            this.faMonthView.ButtonClicked += new FarsiLibrary.Win.Events.CalendarButtonClickedEventHandler(this.faMonthView_ButtonClicked);
            // 
            // btnSave
            // 
            this.btnSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.btnSave.Font = new System.Drawing.Font("B Nazanin", 10.5F, System.Drawing.FontStyle.Bold);
            this.btnSave.Location = new System.Drawing.Point(447, 391);
            this.btnSave.Name = "btnSave";
            this.btnSave.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.btnSave.Size = new System.Drawing.Size(90, 35);
            this.btnSave.TabIndex = 0;
            this.btnSave.Text = "ذخیره   ";
            this.btnSave.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
            this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
            // 
            // btnExit
            // 
            this.btnExit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.btnExit.Font = new System.Drawing.Font("B Nazanin", 10.5F, System.Drawing.FontStyle.Bold);
            this.btnExit.Location = new System.Drawing.Point(351, 391);
            this.btnExit.Name = "btnExit";
            this.btnExit.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.btnExit.Size = new System.Drawing.Size(90, 35);
            this.btnExit.TabIndex = 1;
            this.btnExit.Text = "انصراف   ";
            this.btnExit.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
            this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
            // 
            // lblHolidayTitle
            // 
            this.lblHolidayTitle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
            this.lblHolidayTitle.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.lblHolidayTitle.ForeColor = System.Drawing.SystemColors.Desktop;
            this.lblHolidayTitle.Location = new System.Drawing.Point(2, 208);
            this.lblHolidayTitle.Name = "lblHolidayTitle";
            this.lblHolidayTitle.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.lblHolidayTitle.Size = new System.Drawing.Size(194, 19);
            this.lblHolidayTitle.TabIndex = 1;
            this.lblHolidayTitle.TextAlign = System.Drawing.ContentAlignment.TopCenter;
            // 
            // FormDefineOfficeTimming
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(558, 428);
            this.Controls.Add(this.btnExit);
            this.Controls.Add(this.btnSave);
            this.Controls.Add(this.gbCalender);
            this.Controls.Add(this.radGroupBox2);
            this.Controls.Add(this.radGroupBox1);
            this.Font = new System.Drawing.Font("B Nazanin", 9.3F, System.Drawing.FontStyle.Bold);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
            this.MaximizeBox = false;
            this.MinimumSize = new System.Drawing.Size(540, 453);
            this.Name = "FormDefineOfficeTimming";
            // 
            // 
            // 
            this.RootElement.ApplyShapeToControl = true;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "ساعات کاری";
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox2)).EndInit();
            this.radGroupBox2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.grdTimming.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.grdTimming)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnAdd)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).EndInit();
            this.radGroupBox1.ResumeLayout(false);
            this.radGroupBox1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.btnCancel)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.tpTo)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.timmingBindingSource)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.tpFrom)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboDay)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gbCalender)).EndInit();
            this.gbCalender.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.btnSave)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnExit)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this)).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();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn2 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn3 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn4 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn5 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn6 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn1 = new Telerik.WinControls.UI.GridViewCommandColumn();
     Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn2 = new Telerik.WinControls.UI.GridViewCommandColumn();
     Telerik.WinControls.UI.TableViewDefinition   tableViewDefinition1   = new Telerik.WinControls.UI.TableViewDefinition();
     this.BtnAgregar      = new Telerik.WinControls.UI.RadButton();
     this.BtnCancelar     = new Telerik.WinControls.UI.RadButton();
     this.pbvBatch        = new System.Windows.Forms.ErrorProvider(this.components);
     this.gvBatchVaccines = new Telerik.WinControls.UI.RadGridView();
     ((System.ComponentModel.ISupportInitialize)(this.BtnAgregar)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BtnCancelar)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pbvBatch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvBatchVaccines)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvBatchVaccines.MasterTemplate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // BtnAgregar
     //
     this.BtnAgregar.Font      = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.BtnAgregar.Location  = new System.Drawing.Point(623, 334);
     this.BtnAgregar.Margin    = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.BtnAgregar.Name      = "BtnAgregar";
     this.BtnAgregar.Size      = new System.Drawing.Size(100, 30);
     this.BtnAgregar.TabIndex  = 82;
     this.BtnAgregar.Text      = "Agregar";
     this.BtnAgregar.ThemeName = "TelerikMetroBlue";
     this.BtnAgregar.Click    += new System.EventHandler(this.BtnAgregar_Click);
     //
     // BtnCancelar
     //
     this.BtnCancelar.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.BtnCancelar.Font         = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.BtnCancelar.Location     = new System.Drawing.Point(736, 334);
     this.BtnCancelar.Margin       = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.BtnCancelar.Name         = "BtnCancelar";
     this.BtnCancelar.Size         = new System.Drawing.Size(100, 30);
     this.BtnCancelar.TabIndex     = 83;
     this.BtnCancelar.Text         = "Cancelar";
     this.BtnCancelar.ThemeName    = "TelerikMetroBlue";
     this.BtnCancelar.Click       += new System.EventHandler(this.BtnCancelar_Click);
     //
     // pbvBatch
     //
     this.pbvBatch.ContainerControl = this;
     //
     // gvBatchVaccines
     //
     this.gvBatchVaccines.Location = new System.Drawing.Point(3, 15);
     this.gvBatchVaccines.Margin   = new System.Windows.Forms.Padding(4, 4, 4, 4);
     //
     //
     //
     this.gvBatchVaccines.MasterTemplate.AllowAddNewRow      = false;
     this.gvBatchVaccines.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     gridViewTextBoxColumn1.FieldName    = "Id";
     gridViewTextBoxColumn1.HeaderText   = "Id";
     gridViewTextBoxColumn1.IsVisible    = false;
     gridViewTextBoxColumn1.Name         = "Id";
     gridViewTextBoxColumn2.FieldName    = "VaccineName";
     gridViewTextBoxColumn2.HeaderText   = "Vacuna";
     gridViewTextBoxColumn2.Name         = "VaccineName";
     gridViewTextBoxColumn2.Width        = 312;
     gridViewTextBoxColumn3.FieldName    = "StartDate";
     gridViewTextBoxColumn3.FormatString = "{0: dd/M/yyyy}";
     gridViewTextBoxColumn3.HeaderText   = "Comienzo";
     gridViewTextBoxColumn3.Name         = "StartDate";
     gridViewTextBoxColumn3.Width        = 99;
     gridViewTextBoxColumn4.FieldName    = "EndDate";
     gridViewTextBoxColumn4.FormatString = "{0: dd/M/yyyy}";
     gridViewTextBoxColumn4.HeaderText   = "Fin";
     gridViewTextBoxColumn4.Name         = "EndDate";
     gridViewTextBoxColumn4.Width        = 102;
     gridViewTextBoxColumn5.FieldName    = "Week";
     gridViewTextBoxColumn5.HeaderText   = "Semana";
     gridViewTextBoxColumn5.Name         = "Week";
     gridViewTextBoxColumn5.Width        = 107;
     gridViewTextBoxColumn6.FieldName    = "Day";
     gridViewTextBoxColumn6.HeaderText   = "Día";
     gridViewTextBoxColumn6.Name         = "Day";
     gridViewTextBoxColumn6.Width        = 119;
     gridViewCommandColumn1.HeaderText   = "";
     gridViewCommandColumn1.Image        = global::Avicola.Production.Win.Properties.Resources.Data_Edit;
     gridViewCommandColumn1.ImageLayout  = System.Windows.Forms.ImageLayout.Center;
     gridViewCommandColumn1.MaxWidth     = 40;
     gridViewCommandColumn1.MinWidth     = 40;
     gridViewCommandColumn1.Name         = "btnEdit";
     gridViewCommandColumn1.Width        = 40;
     gridViewCommandColumn2.HeaderText   = "";
     gridViewCommandColumn2.Image        = global::Avicola.Production.Win.Properties.Resources.Garbage_Closed;
     gridViewCommandColumn2.ImageLayout  = System.Windows.Forms.ImageLayout.Center;
     gridViewCommandColumn2.MaxWidth     = 40;
     gridViewCommandColumn2.MinWidth     = 40;
     gridViewCommandColumn2.Name         = "btnDelete";
     gridViewCommandColumn2.Width        = 40;
     this.gvBatchVaccines.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewTextBoxColumn1,
         gridViewTextBoxColumn2,
         gridViewTextBoxColumn3,
         gridViewTextBoxColumn4,
         gridViewTextBoxColumn5,
         gridViewTextBoxColumn6,
         gridViewCommandColumn1,
         gridViewCommandColumn2
     });
     this.gvBatchVaccines.MasterTemplate.ViewDefinition = tableViewDefinition1;
     this.gvBatchVaccines.Name              = "gvBatchVaccines";
     this.gvBatchVaccines.ReadOnly          = true;
     this.gvBatchVaccines.ShowGroupPanel    = false;
     this.gvBatchVaccines.Size              = new System.Drawing.Size(833, 300);
     this.gvBatchVaccines.TabIndex          = 84;
     this.gvBatchVaccines.Text              = "radGridView1";
     this.gvBatchVaccines.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.gvBatchVaccines_CommandCellClick);
     //
     // FrmBatchVaccinesList
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(851, 391);
     this.Controls.Add(this.gvBatchVaccines);
     this.Controls.Add(this.BtnAgregar);
     this.Controls.Add(this.BtnCancelar);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.Margin          = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.Name            = "FrmBatchVaccinesList";
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.ShowIcon      = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Vacunaciones";
     this.Load         += new System.EventHandler(this.FrmBatchVaccinesList_Load);
     ((System.ComponentModel.ISupportInitialize)(this.BtnAgregar)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BtnCancelar)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pbvBatch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvBatchVaccines.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvBatchVaccines)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).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(FrmCreateMeasureWizard));
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn2 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn3 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn4 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn1 = new Telerik.WinControls.UI.GridViewCommandColumn();
            Telerik.WinControls.UI.TableViewDefinition tableViewDefinition1 = new Telerik.WinControls.UI.TableViewDefinition();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn5 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn6 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewDateTimeColumn gridViewDateTimeColumn1 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
            Telerik.WinControls.UI.GridViewDecimalColumn gridViewDecimalColumn1 = new Telerik.WinControls.UI.GridViewDecimalColumn();
            Telerik.WinControls.UI.TableViewDefinition tableViewDefinition2 = new Telerik.WinControls.UI.TableViewDefinition();
            this.createMeasureWizard = new Telerik.WinControls.UI.RadWizard();
            this.wizardCompletionPage1 = new Telerik.WinControls.UI.WizardCompletionPage();
            this.panel3 = new System.Windows.Forms.Panel();
            this.panel2 = new System.Windows.Forms.Panel();
            this.gvBatches = new Telerik.WinControls.UI.RadGridView();
            this.panel1 = new System.Windows.Forms.Panel();
            this.gvMeasures = new Telerik.WinControls.UI.RadGridView();
            this.wizardPage1 = new Telerik.WinControls.UI.WizardPage();
            this.wizardPage2 = new Telerik.WinControls.UI.WizardPage();
            this.ucLoadMeasuresSummary = new Avicola.Production.Win.UserControls.UcLoadMeasuresSummary();
            ((System.ComponentModel.ISupportInitialize)(this.createMeasureWizard)).BeginInit();
            this.createMeasureWizard.SuspendLayout();
            this.panel3.SuspendLayout();
            this.panel2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gvBatches)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gvBatches.MasterTemplate)).BeginInit();
            this.panel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gvMeasures)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gvMeasures.MasterTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            this.SuspendLayout();
            // 
            // createMeasureWizard
            // 
            this.createMeasureWizard.CompletionPage = this.wizardCompletionPage1;
            this.createMeasureWizard.Controls.Add(this.panel2);
            this.createMeasureWizard.Controls.Add(this.panel3);
            this.createMeasureWizard.Controls.Add(this.panel1);
            this.createMeasureWizard.Dock = System.Windows.Forms.DockStyle.Fill;
            this.createMeasureWizard.HideCompletionImage = true;
            this.createMeasureWizard.Location = new System.Drawing.Point(0, 0);
            this.createMeasureWizard.Name = "createMeasureWizard";
            this.createMeasureWizard.PageHeaderIcon = ((System.Drawing.Image)(resources.GetObject("createMeasureWizard.PageHeaderIcon")));
            this.createMeasureWizard.Pages.Add(this.wizardPage1);
            this.createMeasureWizard.Pages.Add(this.wizardPage2);
            this.createMeasureWizard.Pages.Add(this.wizardCompletionPage1);
            this.createMeasureWizard.Size = new System.Drawing.Size(841, 560);
            this.createMeasureWizard.TabIndex = 0;
            this.createMeasureWizard.WelcomePage = null;
            this.createMeasureWizard.Finish += new System.EventHandler(this.createMeasureWizard_Finish);
            this.createMeasureWizard.Cancel += new System.EventHandler(this.createMeasureWizard_Cancel);
            this.createMeasureWizard.SelectedPageChanging += new Telerik.WinControls.UI.SelectedPageChangingEventHandler(this.createMeasureWizard_SelectedPageChanging);
            this.createMeasureWizard.SelectedPageChanged += new Telerik.WinControls.UI.SelectedPageChangedEventHandler(this.createMeasureWizard_SelectedPageChanged);
            // 
            // wizardCompletionPage1
            // 
            this.wizardCompletionPage1.ContentArea = this.panel3;
            this.wizardCompletionPage1.Header = "";
            this.wizardCompletionPage1.Name = "wizardCompletionPage1";
            this.wizardCompletionPage1.Title = "Resumen";
            // 
            // panel3
            // 
            this.panel3.BackColor = System.Drawing.Color.White;
            this.panel3.Controls.Add(this.ucLoadMeasuresSummary);
            this.panel3.Location = new System.Drawing.Point(0, 51);
            this.panel3.Name = "panel3";
            this.panel3.Size = new System.Drawing.Size(833, 467);
            this.panel3.TabIndex = 2;
            // 
            // panel2
            // 
            this.panel2.BackColor = System.Drawing.Color.White;
            this.panel2.Controls.Add(this.gvBatches);
            this.panel2.Location = new System.Drawing.Point(0, 64);
            this.panel2.Name = "panel2";
            this.panel2.Size = new System.Drawing.Size(841, 448);
            this.panel2.TabIndex = 1;
            // 
            // gvBatches
            // 
            this.gvBatches.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gvBatches.Location = new System.Drawing.Point(0, 0);
            // 
            // 
            // 
            this.gvBatches.MasterTemplate.AllowAddNewRow = false;
            this.gvBatches.MasterTemplate.AllowDeleteRow = false;
            this.gvBatches.MasterTemplate.AllowDragToGroup = false;
            this.gvBatches.MasterTemplate.AllowEditRow = false;
            this.gvBatches.MasterTemplate.AutoGenerateColumns = false;
            this.gvBatches.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
            gridViewTextBoxColumn1.FieldName = "Number";
            gridViewTextBoxColumn1.HeaderText = "Número";
            gridViewTextBoxColumn1.Name = "Number";
            gridViewTextBoxColumn1.Width = 189;
            gridViewTextBoxColumn2.FieldName = "GeneticLineName";
            gridViewTextBoxColumn2.HeaderText = "Linea Genética";
            gridViewTextBoxColumn2.Name = "GeneticLineName";
            gridViewTextBoxColumn2.Width = 189;
            gridViewTextBoxColumn3.FieldName = "StageName";
            gridViewTextBoxColumn3.HeaderText = "Estado";
            gridViewTextBoxColumn3.Name = "StageName";
            gridViewTextBoxColumn3.Width = 134;
            gridViewTextBoxColumn4.FieldName = "CreatedDate";
            gridViewTextBoxColumn4.FormatString = "{0: dd/M/yyyy}";
            gridViewTextBoxColumn4.HeaderText = "Fecha Creación";
            gridViewTextBoxColumn4.MinWidth = 100;
            gridViewTextBoxColumn4.Name = "CreatedDate";
            gridViewTextBoxColumn4.Width = 103;
            gridViewCommandColumn1.AllowResize = false;
            gridViewCommandColumn1.AllowSort = false;
            gridViewCommandColumn1.DefaultText = "Seleccionar";
            gridViewCommandColumn1.HeaderText = "";
            gridViewCommandColumn1.Name = "SelectColumn";
            gridViewCommandColumn1.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            gridViewCommandColumn1.UseDefaultText = true;
            gridViewCommandColumn1.Width = 204;
            this.gvBatches.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn1,
            gridViewTextBoxColumn2,
            gridViewTextBoxColumn3,
            gridViewTextBoxColumn4,
            gridViewCommandColumn1});
            this.gvBatches.MasterTemplate.ViewDefinition = tableViewDefinition1;
            this.gvBatches.Name = "gvBatches";
            this.gvBatches.Size = new System.Drawing.Size(841, 448);
            this.gvBatches.TabIndex = 0;
            this.gvBatches.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.gvBatches_CommandCellClick);
            // 
            // panel1
            // 
            this.panel1.BackColor = System.Drawing.Color.White;
            this.panel1.Controls.Add(this.gvMeasures);
            this.panel1.Location = new System.Drawing.Point(0, 81);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(841, 431);
            this.panel1.TabIndex = 3;
            // 
            // gvMeasures
            // 
            this.gvMeasures.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gvMeasures.Location = new System.Drawing.Point(0, 0);
            // 
            // 
            // 
            this.gvMeasures.MasterTemplate.AllowAddNewRow = false;
            this.gvMeasures.MasterTemplate.AllowColumnReorder = false;
            this.gvMeasures.MasterTemplate.AllowDeleteRow = false;
            this.gvMeasures.MasterTemplate.AllowDragToGroup = false;
            this.gvMeasures.MasterTemplate.AutoGenerateColumns = false;
            this.gvMeasures.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
            gridViewTextBoxColumn5.FieldName = "Name";
            gridViewTextBoxColumn5.HeaderText = "Nombre";
            gridViewTextBoxColumn5.Name = "Name";
            gridViewTextBoxColumn5.ReadOnly = true;
            gridViewTextBoxColumn5.Width = 471;
            gridViewTextBoxColumn6.FieldName = "MeasureUnity";
            gridViewTextBoxColumn6.HeaderText = "Unidad de Medida";
            gridViewTextBoxColumn6.Name = "MeasureUnity";
            gridViewTextBoxColumn6.ReadOnly = true;
            gridViewTextBoxColumn6.Width = 140;
            gridViewDateTimeColumn1.ExcelExportType = Telerik.WinControls.UI.Export.DisplayFormatType.ShortDate;
            gridViewDateTimeColumn1.FieldName = "CreatedDate";
            gridViewDateTimeColumn1.Format = System.Windows.Forms.DateTimePickerFormat.Short;
            gridViewDateTimeColumn1.FormatString = "{0: dd/M/yyyy}";
            gridViewDateTimeColumn1.HeaderText = "Fecha";
            gridViewDateTimeColumn1.Name = "CreatedDate";
            gridViewDateTimeColumn1.Width = 103;
            gridViewDecimalColumn1.EnableExpressionEditor = false;
            gridViewDecimalColumn1.Expression = "";
            gridViewDecimalColumn1.FieldName = "Value";
            gridViewDecimalColumn1.HeaderText = "Valor";
            gridViewDecimalColumn1.Name = "Value";
            gridViewDecimalColumn1.Width = 105;
            this.gvMeasures.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn5,
            gridViewTextBoxColumn6,
            gridViewDateTimeColumn1,
            gridViewDecimalColumn1});
            this.gvMeasures.MasterTemplate.ViewDefinition = tableViewDefinition2;
            this.gvMeasures.Name = "gvMeasures";
            this.gvMeasures.Size = new System.Drawing.Size(841, 431);
            this.gvMeasures.TabIndex = 4;
            this.gvMeasures.CellEditorInitialized += new Telerik.WinControls.UI.GridViewCellEventHandler(this.gvMeasures_CellEditorInitialized);
            // 
            // wizardPage1
            // 
            this.wizardPage1.ContentArea = this.panel2;
            this.wizardPage1.Header = "";
            this.wizardPage1.Name = "wizardPage1";
            this.wizardPage1.Title = "Seleccionar Lote";
            // 
            // wizardPage2
            // 
            this.wizardPage2.ContentArea = this.panel1;
            this.wizardPage2.Header = "Estandares";
            this.wizardPage2.Name = "wizardPage2";
            this.wizardPage2.Title = "Ingreso de Valores";
            // 
            // ucLoadMeasuresSummary
            // 
            this.ucLoadMeasuresSummary.Location = new System.Drawing.Point(12, 14);
            this.ucLoadMeasuresSummary.Margin = new System.Windows.Forms.Padding(4);
            this.ucLoadMeasuresSummary.Name = "ucLoadMeasuresSummary";
            this.ucLoadMeasuresSummary.Size = new System.Drawing.Size(488, 248);
            this.ucLoadMeasuresSummary.TabIndex = 0;
            // 
            // FrmCreateMeasureWizard
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(841, 560);
            this.Controls.Add(this.createMeasureWizard);
            this.Name = "FrmCreateMeasureWizard";
            // 
            // 
            // 
            this.RootElement.ApplyShapeToControl = true;
            this.Text = "Cargar Medidas";
            this.Load += new System.EventHandler(this.FrmCreateMeasureWizard_Load);
            ((System.ComponentModel.ISupportInitialize)(this.createMeasureWizard)).EndInit();
            this.createMeasureWizard.ResumeLayout(false);
            this.panel3.ResumeLayout(false);
            this.panel2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.gvBatches.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gvBatches)).EndInit();
            this.panel1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.gvMeasures.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gvMeasures)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this)).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()
        {
            Telerik.WinControls.UI.GridViewTextBoxColumn       gridViewTextBoxColumn1       = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn       gridViewTextBoxColumn2       = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewDateTimeColumn      gridViewDateTimeColumn1      = new Telerik.WinControls.UI.GridViewDateTimeColumn();
            Telerik.WinControls.UI.GridViewComboBoxColumn      gridViewComboBoxColumn1      = new Telerik.WinControls.UI.GridViewComboBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn       gridViewTextBoxColumn3       = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewDateTimeColumn      gridViewDateTimeColumn2      = new Telerik.WinControls.UI.GridViewDateTimeColumn();
            Telerik.WinControls.UI.ConditionalFormattingObject conditionalFormattingObject1 = new Telerik.WinControls.UI.ConditionalFormattingObject();
            Telerik.WinControls.UI.GridViewMaskBoxColumn       gridViewMaskBoxColumn1       = new Telerik.WinControls.UI.GridViewMaskBoxColumn();
            Telerik.WinControls.UI.ConditionalFormattingObject conditionalFormattingObject2 = new Telerik.WinControls.UI.ConditionalFormattingObject();
            Telerik.WinControls.UI.GridViewCommandColumn       gridViewCommandColumn1       = new Telerik.WinControls.UI.GridViewCommandColumn();
            Telerik.WinControls.UI.GridViewCommandColumn       gridViewCommandColumn2       = new Telerik.WinControls.UI.GridViewCommandColumn();
            Telerik.WinControls.Data.SortDescriptor            sortDescriptor1         = new Telerik.WinControls.Data.SortDescriptor();
            Telerik.WinControls.UI.GridViewTextBoxColumn       gridViewTextBoxColumn4  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn       gridViewTextBoxColumn5  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewDateTimeColumn      gridViewDateTimeColumn3 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
            Telerik.WinControls.UI.GridViewComboBoxColumn      gridViewComboBoxColumn2 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn       gridViewTextBoxColumn6  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewCommandColumn       gridViewCommandColumn3  = new Telerik.WinControls.UI.GridViewCommandColumn();
            Telerik.WinControls.UI.GridViewCommandColumn       gridViewCommandColumn4  = new Telerik.WinControls.UI.GridViewCommandColumn();
            Telerik.WinControls.Data.SortDescriptor            sortDescriptor2         = new Telerik.WinControls.Data.SortDescriptor();
            Telerik.WinControls.UI.RadPrintWatermark           radPrintWatermark1      = new Telerik.WinControls.UI.RadPrintWatermark();
            System.ComponentModel.ComponentResourceManager     resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
            this.statusStrip          = new Telerik.WinControls.UI.RadStatusStrip();
            this.statusNumOfEmloyees  = new Telerik.WinControls.UI.RadLabelElement();
            this.statusOnVacation     = new Telerik.WinControls.UI.RadLabelElement();
            this.pageView             = new Telerik.WinControls.UI.RadPageView();
            this.pageWorkers          = new Telerik.WinControls.UI.RadPageViewPage();
            this.gridViewEmployees    = new Telerik.WinControls.UI.RadGridView();
            this.pageFired            = new Telerik.WinControls.UI.RadPageViewPage();
            this.gridViewFired        = new Telerik.WinControls.UI.RadGridView();
            this.menuHolidaysCalendar = new Telerik.WinControls.UI.RadMenuItem();
            this.menuMain             = new Telerik.WinControls.UI.RadMenu();
            this.menuItemMain         = new Telerik.WinControls.UI.RadMenuItem();
            this.menuSeparator1       = new Telerik.WinControls.UI.RadMenuSeparatorItem();
            this.menuPrintMobiles     = new Telerik.WinControls.UI.RadMenuItem();
            this.menuPrintBirthdates  = new Telerik.WinControls.UI.RadMenuItem();
            this.printDocumentRad     = new Telerik.WinControls.UI.RadPrintDocument();
            ((System.ComponentModel.ISupportInitialize)(this.statusStrip)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pageView)).BeginInit();
            this.pageView.SuspendLayout();
            this.pageWorkers.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewEmployees)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewEmployees.MasterTemplate)).BeginInit();
            this.pageFired.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewFired)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewFired.MasterTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.menuMain)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            this.SuspendLayout();
            //
            // statusStrip
            //
            this.statusStrip.Items.AddRange(new Telerik.WinControls.RadItem[] {
                this.statusNumOfEmloyees,
                this.statusOnVacation
            });
            this.statusStrip.Location = new System.Drawing.Point(0, 542);
            this.statusStrip.Name     = "statusStrip";
            this.statusStrip.Size     = new System.Drawing.Size(951, 24);
            this.statusStrip.TabIndex = 2;
            this.statusStrip.Text     = "radStatusStrip1";
            //
            // statusNumOfEmloyees
            //
            this.statusNumOfEmloyees.AccessibleDescription = "statusLabel";
            this.statusNumOfEmloyees.AccessibleName        = "statusLabel";
            this.statusNumOfEmloyees.Name = "statusNumOfEmloyees";
            this.statusStrip.SetSpring(this.statusNumOfEmloyees, false);
            this.statusNumOfEmloyees.Text       = "NumberOfEmpl";
            this.statusNumOfEmloyees.TextWrap   = true;
            this.statusNumOfEmloyees.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            //
            // statusOnVacation
            //
            this.statusOnVacation.AccessibleDescription = "statusLabel2";
            this.statusOnVacation.AccessibleName        = "statusLabel2";
            this.statusOnVacation.Name = "statusOnVacation";
            this.statusStrip.SetSpring(this.statusOnVacation, false);
            this.statusOnVacation.Text        = "NumberOfOnVacation";
            this.statusOnVacation.TextWrap    = true;
            this.statusOnVacation.ToolTipText = "WTF man";
            this.statusOnVacation.Visibility  = Telerik.WinControls.ElementVisibility.Visible;
            //
            // pageView
            //
            this.pageView.Controls.Add(this.pageWorkers);
            this.pageView.Controls.Add(this.pageFired);
            this.pageView.Dock         = System.Windows.Forms.DockStyle.Fill;
            this.pageView.Location     = new System.Drawing.Point(0, 20);
            this.pageView.Name         = "pageView";
            this.pageView.SelectedPage = this.pageWorkers;
            this.pageView.Size         = new System.Drawing.Size(951, 522);
            this.pageView.TabIndex     = 4;
            this.pageView.Text         = "radPageView1";
            ((Telerik.WinControls.UI.RadPageViewStripElement)(this.pageView.GetChildAt(0))).StripScrollingAnimation = Telerik.WinControls.RadEasingType.InOutQuad;
            ((Telerik.WinControls.UI.RadPageViewStripElement)(this.pageView.GetChildAt(0))).StripButtons            = Telerik.WinControls.UI.StripViewButtons.None;
            ((Telerik.WinControls.UI.StripViewButtonsPanel)(this.pageView.GetChildAt(0).GetChildAt(0).GetChildAt(1))).Visibility = Telerik.WinControls.ElementVisibility.Collapsed;
            ((Telerik.WinControls.UI.RadPageViewStripButtonElement)(this.pageView.GetChildAt(0).GetChildAt(0).GetChildAt(1).GetChildAt(0))).Enabled    = false;
            ((Telerik.WinControls.UI.RadPageViewStripButtonElement)(this.pageView.GetChildAt(0).GetChildAt(0).GetChildAt(1).GetChildAt(0))).Visibility = Telerik.WinControls.ElementVisibility.Visible;
            ((Telerik.WinControls.UI.RadPageViewStripButtonElement)(this.pageView.GetChildAt(0).GetChildAt(0).GetChildAt(1).GetChildAt(1))).Enabled    = false;
            ((Telerik.WinControls.UI.RadPageViewStripButtonElement)(this.pageView.GetChildAt(0).GetChildAt(0).GetChildAt(1).GetChildAt(1))).Visibility = Telerik.WinControls.ElementVisibility.Visible;
            ((Telerik.WinControls.UI.RadPageViewStripButtonElement)(this.pageView.GetChildAt(0).GetChildAt(0).GetChildAt(1).GetChildAt(2))).Visibility = Telerik.WinControls.ElementVisibility.Visible;
            ((Telerik.WinControls.UI.RadPageViewStripButtonElement)(this.pageView.GetChildAt(0).GetChildAt(0).GetChildAt(1).GetChildAt(3))).Visibility = Telerik.WinControls.ElementVisibility.Visible;
            //
            // pageWorkers
            //
// TODO: Code generation for '' failed because of Exception 'Invalid Primitive Type: System.IntPtr. Consider using CodeObjectCreateExpression.'.
            this.pageWorkers.Controls.Add(this.gridViewEmployees);
            this.pageWorkers.Location = new System.Drawing.Point(10, 37);
            this.pageWorkers.Name     = "pageWorkers";
            this.pageWorkers.Size     = new System.Drawing.Size(930, 474);
            this.pageWorkers.Text     = "Работающие";
            //
            // gridViewEmployees
            //
            this.gridViewEmployees.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
            this.gridViewEmployees.Cursor    = System.Windows.Forms.Cursors.Default;
            this.gridViewEmployees.Dock      = System.Windows.Forms.DockStyle.Fill;
            this.gridViewEmployees.Font      = new System.Drawing.Font("Segoe UI", 8.25F);
            this.gridViewEmployees.ForeColor = System.Drawing.Color.Black;
            this.gridViewEmployees.ImeMode   = System.Windows.Forms.ImeMode.NoControl;
            this.gridViewEmployees.Location  = new System.Drawing.Point(0, 0);
            //
            // gridViewEmployees
            //
            this.gridViewEmployees.MasterTemplate.AddNewRowPosition   = Telerik.WinControls.UI.SystemRowPosition.Bottom;
            this.gridViewEmployees.MasterTemplate.AutoGenerateColumns = false;
            this.gridViewEmployees.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
            gridViewTextBoxColumn1.EnableExpressionEditor             = false;
            gridViewTextBoxColumn1.HeaderText              = "ID";
            gridViewTextBoxColumn1.IsVisible               = false;
            gridViewTextBoxColumn1.Name                    = "colID";
            gridViewTextBoxColumn1.ReadOnly                = true;
            gridViewTextBoxColumn2.EnableExpressionEditor  = false;
            gridViewTextBoxColumn2.HeaderText              = "ФИО";
            gridViewTextBoxColumn2.MinWidth                = 200;
            gridViewTextBoxColumn2.Name                    = "colName";
            gridViewTextBoxColumn2.SortOrder               = Telerik.WinControls.UI.RadSortOrder.Ascending;
            gridViewTextBoxColumn2.Width                   = 205;
            gridViewDateTimeColumn1.EnableExpressionEditor = false;
            gridViewDateTimeColumn1.FilteringMode          = Telerik.WinControls.UI.GridViewTimeFilteringMode.Date;
            gridViewDateTimeColumn1.Format                 = System.Windows.Forms.DateTimePickerFormat.Custom;
            gridViewDateTimeColumn1.FormatString           = "{0:D}";
            gridViewDateTimeColumn1.HeaderText             = "Дата приема";
            gridViewDateTimeColumn1.MinWidth               = 105;
            gridViewDateTimeColumn1.Name                   = "colHireDate";
            gridViewDateTimeColumn1.Width                  = 107;
            gridViewComboBoxColumn1.EnableExpressionEditor = false;
            gridViewComboBoxColumn1.HeaderText             = "Тип занятости";
            gridViewComboBoxColumn1.MinWidth               = 80;
            gridViewComboBoxColumn1.Name                   = "colAccType";
            gridViewComboBoxColumn1.Width                  = 82;
            gridViewTextBoxColumn3.EnableExpressionEditor  = false;
            gridViewTextBoxColumn3.HeaderText              = "Кол-во оставшихся дней отпуска";
            gridViewTextBoxColumn3.MaxWidth                = 200;
            gridViewTextBoxColumn3.MinWidth                = 180;
            gridViewTextBoxColumn3.Name                    = "colVacationLeft";
            gridViewTextBoxColumn3.ReadOnly                = true;
            gridViewTextBoxColumn3.Width                   = 184;
            conditionalFormattingObject1.CellBackColor     = System.Drawing.Color.Empty;
            conditionalFormattingObject1.CellForeColor     = System.Drawing.Color.Red;
            conditionalFormattingObject1.ConditionType     = Telerik.WinControls.UI.ConditionTypes.GreaterOrEqual;
            conditionalFormattingObject1.Name              = "BirthdayNotSet";
            conditionalFormattingObject1.RowBackColor      = System.Drawing.Color.Empty;
            conditionalFormattingObject1.RowForeColor      = System.Drawing.Color.Empty;
            conditionalFormattingObject1.TValue1           = "1.01.2000";
            gridViewDateTimeColumn2.ConditionalFormattingObjectList.Add(conditionalFormattingObject1);
            gridViewDateTimeColumn2.EnableExpressionEditor = false;
            gridViewDateTimeColumn2.Format             = System.Windows.Forms.DateTimePickerFormat.Short;
            gridViewDateTimeColumn2.FormatString       = "{0:dd.MM.yyyy}";
            gridViewDateTimeColumn2.HeaderText         = "День рождения";
            gridViewDateTimeColumn2.MaxWidth           = 130;
            gridViewDateTimeColumn2.MinWidth           = 90;
            gridViewDateTimeColumn2.Name               = "colBirthDate";
            gridViewDateTimeColumn2.Width              = 92;
            conditionalFormattingObject2.CellBackColor = System.Drawing.Color.Empty;
            conditionalFormattingObject2.CellForeColor = System.Drawing.Color.Red;
            conditionalFormattingObject2.Name          = "MobileNotSet";
            conditionalFormattingObject2.RowBackColor  = System.Drawing.Color.Empty;
            conditionalFormattingObject2.RowForeColor  = System.Drawing.Color.Empty;
            conditionalFormattingObject2.TValue1       = "(000)000-00-00";
            gridViewMaskBoxColumn1.ConditionalFormattingObjectList.Add(conditionalFormattingObject2);
            gridViewMaskBoxColumn1.EnableExpressionEditor = false;
            gridViewMaskBoxColumn1.FieldName              = "Мобильный";
            gridViewMaskBoxColumn1.HeaderText             = "Мобильный";
            gridViewMaskBoxColumn1.Mask                   = "(###) ###-##-##";
            gridViewMaskBoxColumn1.MaskType               = Telerik.WinControls.UI.MaskType.Standard;
            gridViewMaskBoxColumn1.MaxWidth               = 130;
            gridViewMaskBoxColumn1.MinWidth               = 100;
            gridViewMaskBoxColumn1.Name                   = "colMobile";
            gridViewMaskBoxColumn1.Width                  = 102;
            gridViewCommandColumn1.DefaultText            = "Добавить...";
            gridViewCommandColumn1.EnableExpressionEditor = false;
            gridViewCommandColumn1.HeaderText             = "Отпуск";
            gridViewCommandColumn1.MinWidth               = 70;
            gridViewCommandColumn1.Name                   = "colAddVacation";
            gridViewCommandColumn1.UseDefaultText         = true;
            gridViewCommandColumn1.Width                  = 72;
            gridViewCommandColumn2.DefaultText            = "Просмотр";
            gridViewCommandColumn2.EnableExpressionEditor = false;
            gridViewCommandColumn2.HeaderText             = "Инфо";
            gridViewCommandColumn2.MinWidth               = 70;
            gridViewCommandColumn2.Name                   = "colView";
            gridViewCommandColumn2.UseDefaultText         = true;
            gridViewCommandColumn2.Width                  = 72;
            this.gridViewEmployees.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
                gridViewTextBoxColumn1,
                gridViewTextBoxColumn2,
                gridViewDateTimeColumn1,
                gridViewComboBoxColumn1,
                gridViewTextBoxColumn3,
                gridViewDateTimeColumn2,
                gridViewMaskBoxColumn1,
                gridViewCommandColumn1,
                gridViewCommandColumn2
            });
            sortDescriptor1.PropertyName = "colName";
            this.gridViewEmployees.MasterTemplate.SortDescriptors.AddRange(new Telerik.WinControls.Data.SortDescriptor[] {
                sortDescriptor1
            });
            this.gridViewEmployees.Name = "gridViewEmployees";
            this.gridViewEmployees.NewRowEnterKeyMode = Telerik.WinControls.UI.RadGridViewNewRowEnterKeyMode.EnterMovesToNextCell;
            this.gridViewEmployees.RightToLeft        = System.Windows.Forms.RightToLeft.No;
            this.gridViewEmployees.Size     = new System.Drawing.Size(930, 474);
            this.gridViewEmployees.TabIndex = 1;
            this.gridViewEmployees.UseScrollbarsInHierarchy = true;
            this.gridViewEmployees.UserAddingRow           += new Telerik.WinControls.UI.GridViewRowCancelEventHandler(this.gridViewEmployees_UserAddingRow);
            this.gridViewEmployees.UserDeletingRow         += new Telerik.WinControls.UI.GridViewRowCancelEventHandler(this.gridViewEmployees_UserDeletingRow);
            this.gridViewEmployees.CellValueChanged        += new Telerik.WinControls.UI.GridViewCellEventHandler(this.gridViewEmployees_CellValueChanged);
            this.gridViewEmployees.CommandCellClick        += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.MasterTemplate_CommandCellClick);
            //
            // pageFired
            //
// TODO: Code generation for '' failed because of Exception 'Invalid Primitive Type: System.IntPtr. Consider using CodeObjectCreateExpression.'.
            this.pageFired.Controls.Add(this.gridViewFired);
            this.pageFired.Location = new System.Drawing.Point(10, 37);
            this.pageFired.Name     = "pageFired";
            this.pageFired.Size     = new System.Drawing.Size(930, 474);
            this.pageFired.Text     = "Уволенные";
            //
            // gridViewFired
            //
            this.gridViewFired.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
            this.gridViewFired.Cursor    = System.Windows.Forms.Cursors.Default;
            this.gridViewFired.Dock      = System.Windows.Forms.DockStyle.Fill;
            this.gridViewFired.Font      = new System.Drawing.Font("Segoe UI", 8.25F);
            this.gridViewFired.ForeColor = System.Drawing.Color.Black;
            this.gridViewFired.ImeMode   = System.Windows.Forms.ImeMode.NoControl;
            this.gridViewFired.Location  = new System.Drawing.Point(0, 0);
            //
            //
            //
            this.gridViewFired.MasterTemplate.AddNewRowPosition   = Telerik.WinControls.UI.SystemRowPosition.Bottom;
            this.gridViewFired.MasterTemplate.AutoGenerateColumns = false;
            this.gridViewFired.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
            gridViewTextBoxColumn4.EnableExpressionEditor         = false;
            gridViewTextBoxColumn4.HeaderText              = "ID";
            gridViewTextBoxColumn4.IsVisible               = false;
            gridViewTextBoxColumn4.Name                    = "colID";
            gridViewTextBoxColumn4.ReadOnly                = true;
            gridViewTextBoxColumn5.EnableExpressionEditor  = false;
            gridViewTextBoxColumn5.HeaderText              = "ФИО";
            gridViewTextBoxColumn5.Name                    = "colName";
            gridViewTextBoxColumn5.Width                   = 268;
            gridViewDateTimeColumn3.EnableExpressionEditor = false;
            gridViewDateTimeColumn3.FilteringMode          = Telerik.WinControls.UI.GridViewTimeFilteringMode.Date;
            gridViewDateTimeColumn3.Format                 = System.Windows.Forms.DateTimePickerFormat.Custom;
            gridViewDateTimeColumn3.FormatString           = "{0:D}";
            gridViewDateTimeColumn3.HeaderText             = "Дата приема";
            gridViewDateTimeColumn3.Name                   = "colHireDate";
            gridViewDateTimeColumn3.Width                  = 146;
            gridViewComboBoxColumn2.EnableExpressionEditor = false;
            gridViewComboBoxColumn2.HeaderText             = "Тип занятости";
            gridViewComboBoxColumn2.Name                   = "colAccType";
            gridViewComboBoxColumn2.Width                  = 115;
            gridViewTextBoxColumn6.EnableExpressionEditor  = false;
            gridViewTextBoxColumn6.HeaderText              = "Кол-во оставшихся дней отпуска";
            gridViewTextBoxColumn6.Name                    = "colVacationLeft";
            gridViewTextBoxColumn6.ReadOnly                = true;
            gridViewTextBoxColumn6.Width                   = 227;
            gridViewCommandColumn3.DefaultText             = "Добавить...";
            gridViewCommandColumn3.EnableExpressionEditor  = false;
            gridViewCommandColumn3.HeaderText              = "Отпуск";
            gridViewCommandColumn3.Name                    = "colAddVacation";
            gridViewCommandColumn3.UseDefaultText          = true;
            gridViewCommandColumn3.Width                   = 87;
            gridViewCommandColumn4.DefaultText             = "Просмотр";
            gridViewCommandColumn4.EnableExpressionEditor  = false;
            gridViewCommandColumn4.HeaderText              = "Инфо";
            gridViewCommandColumn4.Name                    = "colView";
            gridViewCommandColumn4.UseDefaultText          = true;
            gridViewCommandColumn4.Width                   = 71;
            this.gridViewFired.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
                gridViewTextBoxColumn4,
                gridViewTextBoxColumn5,
                gridViewDateTimeColumn3,
                gridViewComboBoxColumn2,
                gridViewTextBoxColumn6,
                gridViewCommandColumn3,
                gridViewCommandColumn4
            });
            sortDescriptor2.PropertyName = "colButton";
            this.gridViewFired.MasterTemplate.SortDescriptors.AddRange(new Telerik.WinControls.Data.SortDescriptor[] {
                sortDescriptor2
            });
            this.gridViewFired.Name = "gridViewFired";
            this.gridViewFired.NewRowEnterKeyMode = Telerik.WinControls.UI.RadGridViewNewRowEnterKeyMode.EnterMovesToNextCell;
            this.gridViewFired.RightToLeft        = System.Windows.Forms.RightToLeft.No;
            this.gridViewFired.Size              = new System.Drawing.Size(930, 474);
            this.gridViewFired.TabIndex          = 1;
            this.gridViewFired.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.MasterTemplate_CommandCellClick);
            //
            // menuHolidaysCalendar
            //
            this.menuHolidaysCalendar.AccessibleDescription = "Календарь выходных";
            this.menuHolidaysCalendar.AccessibleName        = "Календарь выходных";
            this.menuHolidaysCalendar.Name       = "menuHolidaysCalendar";
            this.menuHolidaysCalendar.Text       = "Календарь выходных";
            this.menuHolidaysCalendar.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            this.menuHolidaysCalendar.Click     += new System.EventHandler(this.menuHolidaysCalendar_Click);
            //
            // menuMain
            //
            this.menuMain.Items.AddRange(new Telerik.WinControls.RadItem[] {
                this.menuItemMain
            });
            this.menuMain.Location = new System.Drawing.Point(0, 0);
            this.menuMain.Name     = "menuMain";
            this.menuMain.Size     = new System.Drawing.Size(951, 20);
            this.menuMain.TabIndex = 1;
            this.menuMain.Text     = "radMenu1";
            //
            // menuItemMain
            //
            this.menuItemMain.AccessibleDescription = "Меню";
            this.menuItemMain.AccessibleName        = "Меню";
            this.menuItemMain.Items.AddRange(new Telerik.WinControls.RadItem[] {
                this.menuHolidaysCalendar,
                this.menuSeparator1,
                this.menuPrintMobiles,
                this.menuPrintBirthdates
            });
            this.menuItemMain.Name       = "menuItemMain";
            this.menuItemMain.Text       = "Меню";
            this.menuItemMain.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            //
            // menuSeparator1
            //
            this.menuSeparator1.AccessibleDescription = "menuSeparator1";
            this.menuSeparator1.AccessibleName        = "menuSeparator1";
            this.menuSeparator1.Name       = "menuSeparator1";
            this.menuSeparator1.Text       = "menuSeparator1";
            this.menuSeparator1.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            //
            // menuPrintMobiles
            //
            this.menuPrintMobiles.AccessibleDescription = "Печать телефонов";
            this.menuPrintMobiles.AccessibleName        = "Печать телефонов";
            this.menuPrintMobiles.Name       = "menuPrintMobiles";
            this.menuPrintMobiles.Text       = "Печать телефонов";
            this.menuPrintMobiles.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            this.menuPrintMobiles.Click     += new System.EventHandler(this.menuPrintMobiles_Click);
            //
            // menuPrintBirthdates
            //
            this.menuPrintBirthdates.AccessibleDescription = "menuPrintBirthdates";
            this.menuPrintBirthdates.AccessibleName        = "menuPrintBirthdates";
            this.menuPrintBirthdates.Name       = "menuPrintBirthdates";
            this.menuPrintBirthdates.Text       = "Печать ДР";
            this.menuPrintBirthdates.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            this.menuPrintBirthdates.Click     += new System.EventHandler(this.menuPrintBirthdates_Click);
            //
            // printDocumentRad
            //
            this.printDocumentRad.AssociatedObject = this.gridViewEmployees;
            this.printDocumentRad.FooterFont       = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
            this.printDocumentRad.HeaderFont       = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
            this.printDocumentRad.LeftFooter       = "Left1";
            this.printDocumentRad.LeftHeader       = "Left2";
            this.printDocumentRad.MiddleFooter     = "Mid1";
            this.printDocumentRad.MiddleHeader     = "Mid2";
            this.printDocumentRad.RightFooter      = "Rightr1";
            this.printDocumentRad.RightHeader      = "Right2";
            this.printDocumentRad.Watermark        = radPrintWatermark1;
            //
            // MainForm
            //
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize          = new System.Drawing.Size(951, 566);
            this.Controls.Add(this.pageView);
            this.Controls.Add(this.statusStrip);
            this.Controls.Add(this.menuMain);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.Name = "MainForm";
            //
            //
            //
            this.RootElement.ApplyShapeToControl = true;
            this.Text        = "Расчет отпусков";
            this.ThemeName   = "ControlDefault";
            this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.MainForm_FormClosed);
            this.Load       += new System.EventHandler(this.MainForm_Load);
            ((System.ComponentModel.ISupportInitialize)(this.statusStrip)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pageView)).EndInit();
            this.pageView.ResumeLayout(false);
            this.pageWorkers.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.gridViewEmployees.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewEmployees)).EndInit();
            this.pageFired.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.gridViewFired.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewFired)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.menuMain)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this)).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();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn2 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn3 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn4 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn5 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn6 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.Data.FilterDescriptor filterDescriptor1 = new Telerik.WinControls.Data.FilterDescriptor();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn7 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn8 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn9 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn10 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn11 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn12 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn1 = new Telerik.WinControls.UI.GridViewCommandColumn();
            Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn2 = new Telerik.WinControls.UI.GridViewCommandColumn();
            this.splitContainer1 = new System.Windows.Forms.SplitContainer();
            this.ucFiltrosPagoProgramados = new LaPaz.Win.Forms.OrdenesPagos.UcFiltrosPagoProgramados();
            this.PagosPager = new Framework.WinForm.Controls.MetroPager();
            this.ucProgressSpinner = new LaPaz.Win.Forms.Util.UcProgressSpinner();
            this.GridPagos = new Telerik.WinControls.UI.RadGridView();
            this.ordenesPagoDtoBindingSource = new System.Windows.Forms.BindingSource(this.components);
            ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
            this.splitContainer1.Panel1.SuspendLayout();
            this.splitContainer1.Panel2.SuspendLayout();
            this.splitContainer1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.GridPagos)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.GridPagos.MasterTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ordenesPagoDtoBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            this.SuspendLayout();
            // 
            // splitContainer1
            // 
            this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
            this.splitContainer1.IsSplitterFixed = true;
            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.ucFiltrosPagoProgramados);
            this.splitContainer1.Panel1.Controls.Add(this.PagosPager);
            this.splitContainer1.Panel1.Controls.Add(this.ucProgressSpinner);
            // 
            // splitContainer1.Panel2
            // 
            this.splitContainer1.Panel2.Controls.Add(this.GridPagos);
            this.splitContainer1.Size = new System.Drawing.Size(1367, 780);
            this.splitContainer1.SplitterDistance = 135;
            this.splitContainer1.TabIndex = 0;
            // 
            // ucFiltrosPagoProgramados
            // 
            this.ucFiltrosPagoProgramados.Location = new System.Drawing.Point(0, 0);
            this.ucFiltrosPagoProgramados.Name = "ucFiltrosPagoProgramados";
            this.ucFiltrosPagoProgramados.Size = new System.Drawing.Size(628, 132);
            this.ucFiltrosPagoProgramados.TabIndex = 15;
            // 
            // PagosPager
            // 
            this.PagosPager.Anchor = System.Windows.Forms.AnchorStyles.Right;
            this.PagosPager.CurrentPage = 1;
            this.PagosPager.Location = new System.Drawing.Point(983, 93);
            this.PagosPager.Margin = new System.Windows.Forms.Padding(94, 3, 3, 3);
            this.PagosPager.Name = "PagosPager";
            this.PagosPager.PageSize = 50;
            this.PagosPager.PageTotal = 1;
            this.PagosPager.RefreshAction = null;
            this.PagosPager.RefreshActionAsync = null;
            this.PagosPager.Size = new System.Drawing.Size(381, 39);
            this.PagosPager.TabIndex = 12;
            // 
            // ucProgressSpinner
            // 
            this.ucProgressSpinner.Anchor = System.Windows.Forms.AnchorStyles.Right;
            this.ucProgressSpinner.Location = new System.Drawing.Point(1180, 14);
            this.ucProgressSpinner.Name = "ucProgressSpinner";
            this.ucProgressSpinner.Size = new System.Drawing.Size(154, 27);
            this.ucProgressSpinner.TabIndex = 14;
            // 
            // GridPagos
            // 
            this.GridPagos.Dock = System.Windows.Forms.DockStyle.Fill;
            this.GridPagos.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.GridPagos.Location = new System.Drawing.Point(0, 0);
            // 
            // GridPagos
            // 
            this.GridPagos.MasterTemplate.AllowAddNewRow = false;
            this.GridPagos.MasterTemplate.AllowColumnChooser = false;
            this.GridPagos.MasterTemplate.AllowColumnReorder = false;
            this.GridPagos.MasterTemplate.AllowDeleteRow = false;
            this.GridPagos.MasterTemplate.AllowDragToGroup = false;
            this.GridPagos.MasterTemplate.AutoGenerateColumns = false;
            this.GridPagos.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
            gridViewTextBoxColumn1.DataType = typeof(System.Guid);
            gridViewTextBoxColumn1.FieldName = "Id";
            gridViewTextBoxColumn1.HeaderText = "Id";
            gridViewTextBoxColumn1.IsVisible = false;
            gridViewTextBoxColumn1.Name = "Id";
            gridViewTextBoxColumn1.ReadOnly = true;
            gridViewTextBoxColumn1.Width = 10;
            gridViewTextBoxColumn2.FieldName = "OrdenPagoId";
            gridViewTextBoxColumn2.HeaderText = "OrdenPagoId";
            gridViewTextBoxColumn2.IsVisible = false;
            gridViewTextBoxColumn2.Name = "OrdenPagoId";
            gridViewTextBoxColumn2.Width = 49;
            gridViewTextBoxColumn3.DataType = typeof(System.DateTime);
            gridViewTextBoxColumn3.FieldName = "FechaPago";
            gridViewTextBoxColumn3.FormatString = "{0:dd/MM/yyyy}";
            gridViewTextBoxColumn3.HeaderText = "Fecha Pago";
            gridViewTextBoxColumn3.Name = "FechaPago";
            gridViewTextBoxColumn3.ReadOnly = true;
            gridViewTextBoxColumn3.Width = 97;
            gridViewTextBoxColumn4.FieldName = "FechaAnulacion";
            gridViewTextBoxColumn4.FormatString = "{0:dd/MM/yyyy}";
            gridViewTextBoxColumn4.HeaderText = "Fecha Anulación";
            gridViewTextBoxColumn4.Name = "FechaAnulacion";
            gridViewTextBoxColumn4.Width = 124;
            gridViewTextBoxColumn5.FieldName = "OrdenesPagoConcepto";
            gridViewTextBoxColumn5.HeaderText = "Orden Concepto";
            gridViewTextBoxColumn5.Name = "OrdenesPagoConcepto";
            gridViewTextBoxColumn5.ReadOnly = true;
            gridViewTextBoxColumn5.Width = 323;
            gridViewTextBoxColumn6.FieldName = "NumeroLinea";
            filterDescriptor1.IsFilterEditor = true;
            filterDescriptor1.PropertyName = "NumeroLinea";
            gridViewTextBoxColumn6.FilterDescriptor = filterDescriptor1;
            gridViewTextBoxColumn6.HeaderText = "Nro. Linea";
            gridViewTextBoxColumn6.Name = "NumeroLinea";
            gridViewTextBoxColumn6.ReadOnly = true;
            gridViewTextBoxColumn6.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
            gridViewTextBoxColumn6.Width = 88;
            gridViewTextBoxColumn7.DataType = typeof(System.Nullable<decimal>);
            gridViewTextBoxColumn7.FieldName = "ImportePagado";
            gridViewTextBoxColumn7.FormatString = "{0:c2}";
            gridViewTextBoxColumn7.HeaderText = "Importe Pagado";
            gridViewTextBoxColumn7.Name = "ImportePagado";
            gridViewTextBoxColumn7.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
            gridViewTextBoxColumn7.Width = 128;
            gridViewTextBoxColumn8.DataType = typeof(decimal);
            gridViewTextBoxColumn8.FieldName = "Descuento";
            gridViewTextBoxColumn8.FormatString = "{0:c2}";
            gridViewTextBoxColumn8.HeaderText = "Descuento";
            gridViewTextBoxColumn8.Name = "Descuento";
            gridViewTextBoxColumn8.ReadOnly = true;
            gridViewTextBoxColumn8.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
            gridViewTextBoxColumn8.Width = 97;
            gridViewTextBoxColumn9.DataType = typeof(System.Nullable<decimal>);
            gridViewTextBoxColumn9.FieldName = "Efectivo";
            gridViewTextBoxColumn9.FormatString = "{0:c2}";
            gridViewTextBoxColumn9.HeaderText = "Efectivo";
            gridViewTextBoxColumn9.Name = "Efectivo";
            gridViewTextBoxColumn9.ReadOnly = true;
            gridViewTextBoxColumn9.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
            gridViewTextBoxColumn9.Width = 139;
            gridViewTextBoxColumn10.DataType = typeof(decimal);
            gridViewTextBoxColumn10.FieldName = "Cheques";
            gridViewTextBoxColumn10.FormatString = "{0:c2}";
            gridViewTextBoxColumn10.HeaderText = "Cheques";
            gridViewTextBoxColumn10.Name = "Cheques";
            gridViewTextBoxColumn10.ReadOnly = true;
            gridViewTextBoxColumn10.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
            gridViewTextBoxColumn10.Width = 133;
            gridViewTextBoxColumn11.FieldName = "Deposito";
            gridViewTextBoxColumn11.FormatString = "{0:c2}";
            gridViewTextBoxColumn11.HeaderText = "Depósito";
            gridViewTextBoxColumn11.Name = "Deposito";
            gridViewTextBoxColumn11.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
            gridViewTextBoxColumn11.Width = 103;
            gridViewTextBoxColumn12.FieldName = "DepositoEfectivo";
            gridViewTextBoxColumn12.FormatString = "{0:c2}";
            gridViewTextBoxColumn12.HeaderText = "Dep. Etvo.";
            gridViewTextBoxColumn12.Name = "DepositoEfectivo";
            gridViewTextBoxColumn12.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
            gridViewTextBoxColumn12.Width = 64;
            gridViewCommandColumn1.HeaderText = "";
            gridViewCommandColumn1.Image = global::LaPaz.Win.Properties.Resources.Pagar;
            gridViewCommandColumn1.ImageLayout = System.Windows.Forms.ImageLayout.Center;
            gridViewCommandColumn1.MaxWidth = 30;
            gridViewCommandColumn1.MinWidth = 30;
            gridViewCommandColumn1.Name = "ColumnaPagar";
            gridViewCommandColumn1.Width = 30;
            gridViewCommandColumn2.HeaderText = "";
            gridViewCommandColumn2.Image = global::LaPaz.Win.Properties.Resources.Garbage_Closed;
            gridViewCommandColumn2.ImageLayout = System.Windows.Forms.ImageLayout.Center;
            gridViewCommandColumn2.MaxWidth = 30;
            gridViewCommandColumn2.MinWidth = 30;
            gridViewCommandColumn2.Name = "ColumnaEliminar";
            gridViewCommandColumn2.Width = 30;
            this.GridPagos.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn1,
            gridViewTextBoxColumn2,
            gridViewTextBoxColumn3,
            gridViewTextBoxColumn4,
            gridViewTextBoxColumn5,
            gridViewTextBoxColumn6,
            gridViewTextBoxColumn7,
            gridViewTextBoxColumn8,
            gridViewTextBoxColumn9,
            gridViewTextBoxColumn10,
            gridViewTextBoxColumn11,
            gridViewTextBoxColumn12,
            gridViewCommandColumn1,
            gridViewCommandColumn2});
            this.GridPagos.MasterTemplate.EnableGrouping = false;
            this.GridPagos.MasterTemplate.FilterDescriptors.AddRange(new Telerik.WinControls.Data.FilterDescriptor[] {
            filterDescriptor1});
            this.GridPagos.Name = "GridPagos";
            this.GridPagos.ReadOnly = true;
            this.GridPagos.Size = new System.Drawing.Size(1367, 641);
            this.GridPagos.TabIndex = 13;
            this.GridPagos.ThemeName = "TelerikMetroBlue";
            this.GridPagos.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.GridPagos_CommandCellClick);
            // 
            // ordenesPagoDtoBindingSource
            // 
            this.ordenesPagoDtoBindingSource.DataSource = typeof(LaPaz.Entidades.Dto.OrdenesPagoDto);
            // 
            // FrmPagosProgramadosListado
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1367, 780);
            this.Controls.Add(this.splitContainer1);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
            this.Name = "FrmPagosProgramadosListado";
            // 
            // 
            // 
            this.RootElement.ApplyShapeToControl = true;
            this.Text = "Pagos Programados";
            this.Load += new System.EventHandler(this.FrmPagosProgramadosListado_Load);
            this.splitContainer1.Panel1.ResumeLayout(false);
            this.splitContainer1.Panel2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
            this.splitContainer1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.GridPagos.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.GridPagos)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ordenesPagoDtoBindingSource)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
            this.ResumeLayout(false);

        }
Exemple #36
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn2 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn3 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn1 = new Telerik.WinControls.UI.GridViewCommandColumn();
     this.GrillaPagos    = new Telerik.WinControls.UI.RadGridView();
     this.Eliminar       = new LaPaz.Win.Controls.DeleteCell.DeleteColumn();
     this.BtnAgregarPago = new Telerik.WinControls.UI.RadButton();
     this.TxtTotal       = new Telerik.WinControls.UI.RadTextBox();
     this.radLabel1      = new Telerik.WinControls.UI.RadLabel();
     ((System.ComponentModel.ISupportInitialize)(this.GrillaPagos)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GrillaPagos.MasterTemplate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BtnAgregarPago)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtTotal)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit();
     this.SuspendLayout();
     //
     // GrillaPagos
     //
     this.GrillaPagos.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.GrillaPagos.Font     = new System.Drawing.Font("Segoe UI", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
     this.GrillaPagos.Location = new System.Drawing.Point(11, 38);
     //
     // GrillaPagos
     //
     this.GrillaPagos.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     gridViewTextBoxColumn1.FieldName     = "TipoPago";
     gridViewTextBoxColumn1.HeaderText    = "Tipo Pago";
     gridViewTextBoxColumn1.Name          = "TipoPago";
     gridViewTextBoxColumn1.ReadOnly      = true;
     gridViewTextBoxColumn1.Width         = 174;
     gridViewTextBoxColumn2.FieldName     = "Descripcion";
     gridViewTextBoxColumn2.HeaderText    = "Descripción";
     gridViewTextBoxColumn2.Name          = "Descripcion";
     gridViewTextBoxColumn2.ReadOnly      = true;
     gridViewTextBoxColumn2.Width         = 196;
     gridViewTextBoxColumn3.FieldName     = "Importe";
     gridViewTextBoxColumn3.FormatString  = "{0:c2}";
     gridViewTextBoxColumn3.HeaderText    = "Importe";
     gridViewTextBoxColumn3.Name          = "Importe";
     gridViewTextBoxColumn3.ReadOnly      = true;
     gridViewTextBoxColumn3.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
     gridViewTextBoxColumn3.Width         = 226;
     gridViewCommandColumn1.HeaderText    = "";
     gridViewCommandColumn1.Image         = global::LaPaz.Win.Properties.Resources.Garbage_Closed;
     gridViewCommandColumn1.ImageLayout   = System.Windows.Forms.ImageLayout.Center;
     gridViewCommandColumn1.MaxWidth      = 30;
     gridViewCommandColumn1.MinWidth      = 30;
     gridViewCommandColumn1.Name          = "Eliminar";
     gridViewCommandColumn1.Width         = 30;
     this.GrillaPagos.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewTextBoxColumn1,
         gridViewTextBoxColumn2,
         gridViewTextBoxColumn3,
         gridViewCommandColumn1
     });
     this.GrillaPagos.MasterTemplate.EnableGrouping = false;
     this.GrillaPagos.Name              = "GrillaPagos";
     this.GrillaPagos.ReadOnly          = true;
     this.GrillaPagos.Size              = new System.Drawing.Size(645, 171);
     this.GrillaPagos.TabIndex          = 6;
     this.GrillaPagos.ThemeName         = "TelerikMetroBlue";
     this.GrillaPagos.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.GrillaPagos_CommandCellClick);
     this.GrillaPagos.KeyUp            += new System.Windows.Forms.KeyEventHandler(this.GrillaPagos_KeyUp);
     //
     // Eliminar
     //
     this.Eliminar.FillWeight = 25F;
     this.Eliminar.FlatStyle  = System.Windows.Forms.FlatStyle.Flat;
     this.Eliminar.HeaderText = "";
     this.Eliminar.Name       = "Eliminar";
     this.Eliminar.ReadOnly   = true;
     this.Eliminar.Resizable  = System.Windows.Forms.DataGridViewTriState.False;
     this.Eliminar.Width      = 30;
     //
     // BtnAgregarPago
     //
     this.BtnAgregarPago.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.BtnAgregarPago.Font      = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.BtnAgregarPago.Location  = new System.Drawing.Point(581, 3);
     this.BtnAgregarPago.Name      = "BtnAgregarPago";
     this.BtnAgregarPago.Size      = new System.Drawing.Size(75, 29);
     this.BtnAgregarPago.TabIndex  = 5;
     this.BtnAgregarPago.Text      = "Agregar";
     this.BtnAgregarPago.ThemeName = "TelerikMetroBlue";
     this.BtnAgregarPago.Click    += new System.EventHandler(this.BtnAgregarPago_Click);
     //
     // TxtTotal
     //
     this.TxtTotal.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.TxtTotal.Enabled      = false;
     this.TxtTotal.Font         = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.TxtTotal.Location     = new System.Drawing.Point(515, 227);
     this.TxtTotal.MaxLength    = 11;
     this.TxtTotal.Name         = "TxtTotal";
     this.TxtTotal.Size         = new System.Drawing.Size(141, 26);
     this.TxtTotal.TabIndex     = 43;
     this.TxtTotal.TabStop      = false;
     this.TxtTotal.ThemeName    = "TelerikMetroBlue";
     this.TxtTotal.TextChanged += new System.EventHandler(this.TxtTotal_TextChanged);
     //
     // radLabel1
     //
     this.radLabel1.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.radLabel1.Font      = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel1.Location  = new System.Drawing.Point(464, 229);
     this.radLabel1.Name      = "radLabel1";
     this.radLabel1.Size      = new System.Drawing.Size(45, 24);
     this.radLabel1.TabIndex  = 44;
     this.radLabel1.Text      = "Total:";
     this.radLabel1.ThemeName = "TelerikMetroBlue";
     //
     // UcTotalesSeña
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.TxtTotal);
     this.Controls.Add(this.radLabel1);
     this.Controls.Add(this.BtnAgregarPago);
     this.Controls.Add(this.GrillaPagos);
     this.Name  = "UcTotalesSeña";
     this.Size  = new System.Drawing.Size(659, 263);
     this.Load += new System.EventHandler(this.UcTotalesVenta_Load);
     ((System.ComponentModel.ISupportInitialize)(this.GrillaPagos.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GrillaPagos)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BtnAgregarPago)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtTotal)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).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();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn5 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn6 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn7 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn2 = new Telerik.WinControls.UI.GridViewCommandColumn();
     Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn2 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn8 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     this.patientListGroupBox = new Telerik.WinControls.UI.RadGroupBox();
     this.filteringPanel = new Telerik.WinControls.UI.RadPanel();
     this.ucFilter1 = new ShayanDental.UserControls.UCFilter();
     this.grdPatient = new Telerik.WinControls.UI.RadGridView();
     this.btnSave = new Telerik.WinControls.UI.RadButton();
     this.btnCancel = new Telerik.WinControls.UI.RadButton();
     this.lstIns = new Telerik.WinControls.UI.RadGridView();
     this.radLabel11 = new Telerik.WinControls.UI.RadLabel();
     this.dpBirthDate = new FarsiLibrary.Win.Controls.FADatePicker();
     this.patientBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.txtPhone1 = new Telerik.WinControls.UI.RadTextBox();
     this.txtPhone2 = new Telerik.WinControls.UI.RadTextBox();
     this.txtAge = new Telerik.WinControls.UI.RadMaskedEditBox();
     this.lblAge = new Telerik.WinControls.UI.RadLabel();
     this.btnAdd = new Telerik.WinControls.UI.RadButton();
     this.btnNew = new Telerik.WinControls.UI.RadButton();
     this.txtCode = new Telerik.WinControls.UI.RadTextBox();
     this.radLabel12 = new Telerik.WinControls.UI.RadLabel();
     this.radGroupBox1 = new Telerik.WinControls.UI.RadGroupBox();
     this.radCheckBox1 = new Telerik.WinControls.UI.RadCheckBox();
     this.radLabel6 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel13 = new Telerik.WinControls.UI.RadLabel();
     this.radCheckBox12 = new Telerik.WinControls.UI.RadCheckBox();
     this.radCheckBox11 = new Telerik.WinControls.UI.RadCheckBox();
     this.radCheckBox13 = new Telerik.WinControls.UI.RadCheckBox();
     this.radCheckBox8 = new Telerik.WinControls.UI.RadCheckBox();
     this.radTextBox4 = new Telerik.WinControls.UI.RadTextBox();
     this.radCheckBox5 = new Telerik.WinControls.UI.RadCheckBox();
     this.radTextBox5 = new Telerik.WinControls.UI.RadTextBox();
     this.radCheckBox7 = new Telerik.WinControls.UI.RadCheckBox();
     this.radCheckBox3 = new Telerik.WinControls.UI.RadCheckBox();
     this.radCheckBox4 = new Telerik.WinControls.UI.RadCheckBox();
     this.radCheckBox9 = new Telerik.WinControls.UI.RadCheckBox();
     this.radCheckBox10 = new Telerik.WinControls.UI.RadCheckBox();
     this.radCheckBox6 = new Telerik.WinControls.UI.RadCheckBox();
     this.radCheckBox2 = new Telerik.WinControls.UI.RadCheckBox();
     this.patientHepatitCheckBox = new Telerik.WinControls.UI.RadCheckBox();
     this.patientPregnancyCheckBox = new Telerik.WinControls.UI.RadCheckBox();
     this.radLabel10 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel9 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel8 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel2 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel7 = new Telerik.WinControls.UI.RadLabel();
     this.txtLastName = new Telerik.WinControls.UI.RadTextBox();
     this.txtFirstName = new Telerik.WinControls.UI.RadTextBox();
     this.radLabel1 = new Telerik.WinControls.UI.RadLabel();
     this.txtDescription = new Telerik.WinControls.UI.RadTextBox();
     this.txtAddress = new Telerik.WinControls.UI.RadTextBox();
     this.radGroupBox2 = new Telerik.WinControls.UI.RadGroupBox();
     this.btnHistory = new Telerik.WinControls.UI.RadButton();
     this.btnDocs = new Telerik.WinControls.UI.RadButton();
     this.radGroupBox3 = new Telerik.WinControls.UI.RadGroupBox();
     this.radLabel4 = new Telerik.WinControls.UI.RadLabel();
     this.radCheckBox14 = new Telerik.WinControls.UI.RadCheckBox();
     this.radTextBox2 = new Telerik.WinControls.UI.RadTextBox();
     this.radTextBox1 = new Telerik.WinControls.UI.RadTextBox();
     this.radTextBox3 = new Telerik.WinControls.UI.RadTextBox();
     this.radLabel5 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel3 = new Telerik.WinControls.UI.RadLabel();
     ((System.ComponentModel.ISupportInitialize)(this.patientListGroupBox)).BeginInit();
     this.patientListGroupBox.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.filteringPanel)).BeginInit();
     this.filteringPanel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdPatient)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdPatient.MasterTemplate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnSave)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnCancel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lstIns)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lstIns.MasterTemplate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.patientBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPhone1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPhone2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtAge)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lblAge)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnAdd)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnNew)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCode)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel12)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).BeginInit();
     this.radGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel13)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox12)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox13)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radTextBox4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radTextBox5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.patientHepatitCheckBox)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.patientPregnancyCheckBox)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLastName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtFirstName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDescription)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtAddress)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox2)).BeginInit();
     this.radGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.btnHistory)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnDocs)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox3)).BeginInit();
     this.radGroupBox3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox14)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radTextBox2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radTextBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radTextBox3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // patientListGroupBox
     //
     this.patientListGroupBox.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.patientListGroupBox.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.patientListGroupBox.Controls.Add(this.filteringPanel);
     this.patientListGroupBox.Controls.Add(this.grdPatient);
     this.patientListGroupBox.Font = new System.Drawing.Font("B Titr", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.patientListGroupBox.FooterImageIndex = -1;
     this.patientListGroupBox.FooterImageKey = "";
     this.patientListGroupBox.HeaderImageIndex = -1;
     this.patientListGroupBox.HeaderImageKey = "";
     this.patientListGroupBox.HeaderMargin = new System.Windows.Forms.Padding(0);
     this.patientListGroupBox.HeaderText = "پرونده های ذخیره شده";
     this.patientListGroupBox.Location = new System.Drawing.Point(13, 0);
     this.patientListGroupBox.Name = "patientListGroupBox";
     this.patientListGroupBox.Padding = new System.Windows.Forms.Padding(2, 17, 2, 2);
     this.patientListGroupBox.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     //
     //
     //
     this.patientListGroupBox.RootElement.Padding = new System.Windows.Forms.Padding(2, 17, 2, 2);
     this.patientListGroupBox.Size = new System.Drawing.Size(249, 610);
     this.patientListGroupBox.TabIndex = 1;
     this.patientListGroupBox.Text = "پرونده های ذخیره شده";
     //
     // filteringPanel
     //
     this.filteringPanel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.filteringPanel.Controls.Add(this.ucFilter1);
     this.filteringPanel.Location = new System.Drawing.Point(5, 25);
     this.filteringPanel.Name = "filteringPanel";
     this.filteringPanel.Size = new System.Drawing.Size(239, 32);
     this.filteringPanel.TabIndex = 0;
     //
     // ucFilter1
     //
     this.ucFilter1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ucFilter1.Location = new System.Drawing.Point(0, 0);
     this.ucFilter1.Margin = new System.Windows.Forms.Padding(4);
     this.ucFilter1.Name = "ucFilter1";
     this.ucFilter1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.ucFilter1.Size = new System.Drawing.Size(239, 32);
     this.ucFilter1.TabIndex = 0;
     //
     // grdPatient
     //
     this.grdPatient.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.grdPatient.EnableHotTracking = false;
     this.grdPatient.Font = new System.Drawing.Font("B Lotus", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.grdPatient.Location = new System.Drawing.Point(5, 66);
     //
     // grdPatient
     //
     this.grdPatient.MasterTemplate.AllowAddNewRow = false;
     this.grdPatient.MasterTemplate.AllowCellContextMenu = false;
     this.grdPatient.MasterTemplate.AllowColumnChooser = false;
     this.grdPatient.MasterTemplate.AllowColumnHeaderContextMenu = false;
     this.grdPatient.MasterTemplate.AllowDeleteRow = false;
     this.grdPatient.MasterTemplate.AllowDragToGroup = false;
     this.grdPatient.MasterTemplate.AllowEditRow = false;
     this.grdPatient.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     gridViewTextBoxColumn5.FieldName = "FirstName";
     gridViewTextBoxColumn5.HeaderText = "نام";
     gridViewTextBoxColumn5.Name = "FirstName";
     gridViewTextBoxColumn5.Width = 57;
     gridViewTextBoxColumn6.FieldName = "LastName";
     gridViewTextBoxColumn6.HeaderText = "نام خانوادگی";
     gridViewTextBoxColumn6.Name = "LastName";
     gridViewTextBoxColumn6.Width = 84;
     gridViewTextBoxColumn7.FieldName = "AccountantCode";
     gridViewTextBoxColumn7.HeaderText = "شماره پرونده";
     gridViewTextBoxColumn7.Name = "Code";
     gridViewTextBoxColumn7.Width = 69;
     gridViewCommandColumn2.AllowResize = false;
     gridViewCommandColumn2.HeaderText = "حذف";
     gridViewCommandColumn2.ImageLayout = System.Windows.Forms.ImageLayout.Center;
     gridViewCommandColumn2.Name = "column1";
     gridViewCommandColumn2.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     gridViewCommandColumn2.Width = 30;
     this.grdPatient.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
     gridViewTextBoxColumn5,
     gridViewTextBoxColumn6,
     gridViewTextBoxColumn7,
     gridViewCommandColumn2});
     this.grdPatient.MasterTemplate.EnableGrouping = false;
     this.grdPatient.MasterTemplate.ShowFilteringRow = false;
     this.grdPatient.MasterTemplate.ShowRowHeaderColumn = false;
     this.grdPatient.Name = "grdPatient";
     this.grdPatient.ReadOnly = true;
     this.grdPatient.Size = new System.Drawing.Size(239, 539);
     this.grdPatient.TabIndex = 0;
     this.grdPatient.CellFormatting += new Telerik.WinControls.UI.CellFormattingEventHandler(this.grdPatient_CellFormatting);
     this.grdPatient.CurrentRowChanging += new Telerik.WinControls.UI.CurrentRowChangingEventHandler(this.grdPatient_CurrentRowChanging);
     this.grdPatient.SelectionChanged += new System.EventHandler(this.grdPatient_SelectionChanged);
     this.grdPatient.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.grdPatient_CommandCellClick);
     //
     // btnSave
     //
     this.btnSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnSave.Font = new System.Drawing.Font("B Nazanin", 10.5F, System.Drawing.FontStyle.Bold);
     this.btnSave.Location = new System.Drawing.Point(877, 577);
     this.btnSave.Name = "btnSave";
     this.btnSave.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.btnSave.Size = new System.Drawing.Size(110, 35);
     this.btnSave.TabIndex = 2;
     this.btnSave.Text = "ذخیره   ";
     this.btnSave.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // btnCancel
     //
     this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnCancel.Font = new System.Drawing.Font("B Nazanin", 10.5F, System.Drawing.FontStyle.Bold);
     this.btnCancel.Location = new System.Drawing.Point(761, 577);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.btnCancel.Size = new System.Drawing.Size(110, 35);
     this.btnCancel.TabIndex = 3;
     this.btnCancel.Text = "انصراف   ";
     this.btnCancel.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // lstIns
     //
     this.lstIns.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.lstIns.AutoScroll = true;
     this.lstIns.EnableHotTracking = false;
     this.lstIns.Font = new System.Drawing.Font("B Lotus", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.lstIns.Location = new System.Drawing.Point(5, 217);
     //
     // lstIns
     //
     this.lstIns.MasterTemplate.AddNewRowPosition = Telerik.WinControls.UI.SystemRowPosition.Bottom;
     this.lstIns.MasterTemplate.AllowAddNewRow = false;
     this.lstIns.MasterTemplate.AllowCellContextMenu = false;
     this.lstIns.MasterTemplate.AllowColumnChooser = false;
     this.lstIns.MasterTemplate.AllowColumnHeaderContextMenu = false;
     this.lstIns.MasterTemplate.AllowColumnReorder = false;
     this.lstIns.MasterTemplate.AllowColumnResize = false;
     this.lstIns.MasterTemplate.AllowDeleteRow = false;
     this.lstIns.MasterTemplate.AllowDragToGroup = false;
     this.lstIns.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     gridViewCheckBoxColumn2.FormatString = "";
     gridViewCheckBoxColumn2.HeaderText = "";
     gridViewCheckBoxColumn2.Name = "chkBox";
     gridViewCheckBoxColumn2.Width = 31;
     gridViewTextBoxColumn8.FieldName = "Title";
     gridViewTextBoxColumn8.HeaderText = "عنوان بیمه";
     gridViewTextBoxColumn8.Name = "Title";
     gridViewTextBoxColumn8.ReadOnly = true;
     gridViewTextBoxColumn8.Width = 212;
     this.lstIns.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
     gridViewCheckBoxColumn2,
     gridViewTextBoxColumn8});
     this.lstIns.MasterTemplate.EnableGrouping = false;
     this.lstIns.MasterTemplate.EnableSorting = false;
     this.lstIns.MasterTemplate.ShowRowHeaderColumn = false;
     this.lstIns.Name = "lstIns";
     this.lstIns.ShowGroupPanel = false;
     this.lstIns.Size = new System.Drawing.Size(243, 208);
     this.lstIns.TabIndex = 5;
     this.lstIns.Text = "radGridView1";
     this.lstIns.CellValueChanged += new Telerik.WinControls.UI.GridViewCellEventHandler(this.lstIns_CellValueChanged);
     //
     // radLabel11
     //
     this.radLabel11.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.radLabel11.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radLabel11.Location = new System.Drawing.Point(635, 11);
     this.radLabel11.Name = "radLabel11";
     this.radLabel11.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.radLabel11.Size = new System.Drawing.Size(83, 30);
     this.radLabel11.TabIndex = 48;
     this.radLabel11.Text = "شماره پرونده :";
     this.radLabel11.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // dpBirthDate
     //
     this.dpBirthDate.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.dpBirthDate.DataBindings.Add(new System.Windows.Forms.Binding("SelectedDateTime", this.patientBindingSource, "BirthDate", true));
     this.dpBirthDate.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.dpBirthDate.Location = new System.Drawing.Point(483, 121);
     this.dpBirthDate.Multiline = true;
     this.dpBirthDate.Name = "dpBirthDate";
     this.dpBirthDate.Size = new System.Drawing.Size(162, 27);
     this.dpBirthDate.TabIndex = 8;
     this.dpBirthDate.SelectedDateTimeChanged += new System.EventHandler(this.dpBirthDate_SelectedDateTimeChanged);
     //
     // patientBindingSource
     //
     this.patientBindingSource.DataSource = typeof(Shayan.Data.Patient);
     //
     // txtPhone1
     //
     this.txtPhone1.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtPhone1.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.patientBindingSource, "HomeNumber", true));
     this.txtPhone1.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.txtPhone1.Location = new System.Drawing.Point(10, 25);
     this.txtPhone1.MaxLength = 15;
     this.txtPhone1.Name = "txtPhone1";
     this.txtPhone1.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.txtPhone1.Size = new System.Drawing.Size(166, 28);
     this.txtPhone1.TabIndex = 5;
     this.txtPhone1.TabStop = false;
     this.txtPhone1.TextChanging += new Telerik.WinControls.TextChangingEventHandler(this.txtPhone1_TextChanging);
     //
     // txtPhone2
     //
     this.txtPhone2.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtPhone2.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.patientBindingSource, "CellNumber", true));
     this.txtPhone2.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.txtPhone2.Location = new System.Drawing.Point(10, 57);
     this.txtPhone2.MaxLength = 15;
     this.txtPhone2.Name = "txtPhone2";
     this.txtPhone2.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.txtPhone2.Size = new System.Drawing.Size(166, 28);
     this.txtPhone2.TabIndex = 6;
     this.txtPhone2.TabStop = false;
     this.txtPhone2.TextChanging += new Telerik.WinControls.TextChangingEventHandler(this.txtPhone1_TextChanging);
     //
     // txtAge
     //
     this.txtAge.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtAge.AutoSize = true;
     this.txtAge.Enabled = false;
     this.txtAge.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.txtAge.Location = new System.Drawing.Point(388, 122);
     this.txtAge.MaxLength = 3;
     this.txtAge.Name = "txtAge";
     this.txtAge.Size = new System.Drawing.Size(26, 28);
     this.txtAge.TabIndex = 9;
     this.txtAge.TabStop = false;
     //
     // lblAge
     //
     this.lblAge.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.lblAge.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.lblAge.Location = new System.Drawing.Point(418, 121);
     this.lblAge.Name = "lblAge";
     this.lblAge.Size = new System.Drawing.Size(33, 30);
     this.lblAge.TabIndex = 6;
     this.lblAge.Text = "سن :";
     this.lblAge.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // btnAdd
     //
     this.btnAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnAdd.Font = new System.Drawing.Font("B Nazanin", 10.5F, System.Drawing.FontStyle.Bold);
     this.btnAdd.Location = new System.Drawing.Point(609, 524);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.btnAdd.Size = new System.Drawing.Size(110, 35);
     this.btnAdd.TabIndex = 7;
     this.btnAdd.Text = "افزودن   ";
     this.btnAdd.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // btnNew
     //
     this.btnNew.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnNew.Font = new System.Drawing.Font("B Nazanin", 10.5F, System.Drawing.FontStyle.Bold);
     this.btnNew.Location = new System.Drawing.Point(493, 524);
     this.btnNew.Name = "btnNew";
     this.btnNew.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.btnNew.Size = new System.Drawing.Size(110, 35);
     this.btnNew.TabIndex = 8;
     this.btnNew.Text = "جدید   ";
     this.btnNew.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
     this.btnNew.Click += new System.EventHandler(this.btnNew_Click);
     //
     // txtCode
     //
     this.txtCode.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtCode.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.patientBindingSource, "AccountantCode", true));
     this.txtCode.Enabled = false;
     this.txtCode.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.txtCode.Location = new System.Drawing.Point(489, 13);
     this.txtCode.Name = "txtCode";
     this.txtCode.NullText = "-بعد از ذخیره اختصاص می یابد-";
     this.txtCode.Size = new System.Drawing.Size(141, 25);
     this.txtCode.TabIndex = 0;
     this.txtCode.TabStop = false;
     //
     // radLabel12
     //
     this.radLabel12.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radLabel12.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radLabel12.Location = new System.Drawing.Point(650, 25);
     this.radLabel12.Name = "radLabel12";
     this.radLabel12.Size = new System.Drawing.Size(28, 30);
     this.radLabel12.TabIndex = 41;
     this.radLabel12.Text = "نام :";
     this.radLabel12.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // radGroupBox1
     //
     this.radGroupBox1.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.radGroupBox1.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.radGroupBox1.Controls.Add(this.radCheckBox1);
     this.radGroupBox1.Controls.Add(this.radLabel6);
     this.radGroupBox1.Controls.Add(this.radLabel13);
     this.radGroupBox1.Controls.Add(this.radCheckBox12);
     this.radGroupBox1.Controls.Add(this.radCheckBox11);
     this.radGroupBox1.Controls.Add(this.radCheckBox13);
     this.radGroupBox1.Controls.Add(this.radCheckBox8);
     this.radGroupBox1.Controls.Add(this.radTextBox4);
     this.radGroupBox1.Controls.Add(this.radCheckBox5);
     this.radGroupBox1.Controls.Add(this.radTextBox5);
     this.radGroupBox1.Controls.Add(this.radCheckBox7);
     this.radGroupBox1.Controls.Add(this.radCheckBox3);
     this.radGroupBox1.Controls.Add(this.radCheckBox4);
     this.radGroupBox1.Controls.Add(this.radCheckBox9);
     this.radGroupBox1.Controls.Add(this.radCheckBox10);
     this.radGroupBox1.Controls.Add(this.radCheckBox6);
     this.radGroupBox1.Controls.Add(this.radCheckBox2);
     this.radGroupBox1.Controls.Add(this.patientHepatitCheckBox);
     this.radGroupBox1.Controls.Add(this.patientPregnancyCheckBox);
     this.radGroupBox1.Font = new System.Drawing.Font("B Titr", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radGroupBox1.FooterImageIndex = -1;
     this.radGroupBox1.FooterImageKey = "";
     this.radGroupBox1.HeaderImageIndex = -1;
     this.radGroupBox1.HeaderImageKey = "";
     this.radGroupBox1.HeaderMargin = new System.Windows.Forms.Padding(0);
     this.radGroupBox1.HeaderText = "شرایط ویژه:";
     this.radGroupBox1.Location = new System.Drawing.Point(254, 207);
     this.radGroupBox1.Name = "radGroupBox1";
     this.radGroupBox1.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
     this.radGroupBox1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     //
     //
     //
     this.radGroupBox1.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
     this.radGroupBox1.Size = new System.Drawing.Size(466, 218);
     this.radGroupBox1.TabIndex = 4;
     this.radGroupBox1.Text = "شرایط ویژه:";
     //
     // radCheckBox1
     //
     this.radCheckBox1.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radCheckBox1.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.patientBindingSource, "Alergy", true));
     this.radCheckBox1.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radCheckBox1.Location = new System.Drawing.Point(403, 84);
     this.radCheckBox1.Name = "radCheckBox1";
     this.radCheckBox1.Size = new System.Drawing.Size(55, 30);
     this.radCheckBox1.TabIndex = 8;
     this.radCheckBox1.Text = "آلرژی";
     //
     // radLabel6
     //
     this.radLabel6.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radLabel6.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radLabel6.Location = new System.Drawing.Point(231, 178);
     this.radLabel6.Name = "radLabel6";
     this.radLabel6.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.radLabel6.Size = new System.Drawing.Size(229, 30);
     this.radLabel6.TabIndex = 56;
     this.radLabel6.Text = "آیا در مراجعات قبلی مشکل خاصی داشتید؟";
     this.radLabel6.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // radLabel13
     //
     this.radLabel13.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radLabel13.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radLabel13.Location = new System.Drawing.Point(260, 150);
     this.radLabel13.Name = "radLabel13";
     this.radLabel13.Size = new System.Drawing.Size(209, 30);
     this.radLabel13.TabIndex = 54;
     this.radLabel13.Text = "آیا در حال حاضر دارو مصرف می کنید؟";
     this.radLabel13.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // radCheckBox12
     //
     this.radCheckBox12.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radCheckBox12.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.patientBindingSource, "SingcobAfterInjection", true));
     this.radCheckBox12.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radCheckBox12.Location = new System.Drawing.Point(70, 111);
     this.radCheckBox12.Name = "radCheckBox12";
     this.radCheckBox12.Size = new System.Drawing.Size(116, 30);
     this.radCheckBox12.TabIndex = 13;
     this.radCheckBox12.Text = "غش پس از تزریق";
     //
     // radCheckBox11
     //
     this.radCheckBox11.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radCheckBox11.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.patientBindingSource, "KidneyDesease", true));
     this.radCheckBox11.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radCheckBox11.Location = new System.Drawing.Point(95, 84);
     this.radCheckBox11.Name = "radCheckBox11";
     this.radCheckBox11.Size = new System.Drawing.Size(91, 30);
     this.radCheckBox11.TabIndex = 11;
     this.radCheckBox11.Text = "بیماری کلیوی";
     //
     // radCheckBox13
     //
     this.radCheckBox13.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radCheckBox13.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.patientBindingSource, "AsthmaAfterInjection", true));
     this.radCheckBox13.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radCheckBox13.Location = new System.Drawing.Point(245, 111);
     this.radCheckBox13.Name = "radCheckBox13";
     this.radCheckBox13.Size = new System.Drawing.Size(147, 30);
     this.radCheckBox13.TabIndex = 14;
     this.radCheckBox13.Text = "تنگی نفس پس از تزریق";
     //
     // radCheckBox8
     //
     this.radCheckBox8.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radCheckBox8.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.patientBindingSource, "BloodPresure", true));
     this.radCheckBox8.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radCheckBox8.Location = new System.Drawing.Point(319, 84);
     this.radCheckBox8.Name = "radCheckBox8";
     this.radCheckBox8.Size = new System.Drawing.Size(73, 30);
     this.radCheckBox8.TabIndex = 9;
     this.radCheckBox8.Text = "فشار خون";
     //
     // radTextBox4
     //
     this.radTextBox4.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radTextBox4.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.patientBindingSource, "VisitProblemsDescription", true));
     this.radTextBox4.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radTextBox4.Location = new System.Drawing.Point(4, 180);
     this.radTextBox4.Name = "radTextBox4";
     this.radTextBox4.Size = new System.Drawing.Size(221, 28);
     this.radTextBox4.TabIndex = 16;
     this.radTextBox4.TabStop = false;
     this.radTextBox4.TextChanging += new Telerik.WinControls.TextChangingEventHandler(this.txtAddress_TextChanging);
     //
     // radCheckBox5
     //
     this.radCheckBox5.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radCheckBox5.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.patientBindingSource, "TiroeedDesease", true));
     this.radCheckBox5.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radCheckBox5.Location = new System.Drawing.Point(198, 84);
     this.radCheckBox5.Name = "radCheckBox5";
     this.radCheckBox5.Size = new System.Drawing.Size(98, 30);
     this.radCheckBox5.TabIndex = 10;
     this.radCheckBox5.Text = "بیماری تیروئید";
     //
     // radTextBox5
     //
     this.radTextBox5.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radTextBox5.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.patientBindingSource, "DrugDiscription", true));
     this.radTextBox5.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radTextBox5.Location = new System.Drawing.Point(4, 151);
     this.radTextBox5.Name = "radTextBox5";
     this.radTextBox5.Size = new System.Drawing.Size(221, 28);
     this.radTextBox5.TabIndex = 15;
     this.radTextBox5.TabStop = false;
     this.radTextBox5.TextChanging += new Telerik.WinControls.TextChangingEventHandler(this.txtAddress_TextChanging);
     //
     // radCheckBox7
     //
     this.radCheckBox7.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radCheckBox7.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.patientBindingSource, "Diabetic", true));
     this.radCheckBox7.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radCheckBox7.Location = new System.Drawing.Point(406, 112);
     this.radCheckBox7.Name = "radCheckBox7";
     this.radCheckBox7.Size = new System.Drawing.Size(52, 30);
     this.radCheckBox7.TabIndex = 12;
     this.radCheckBox7.Text = "دیابت";
     //
     // radCheckBox3
     //
     this.radCheckBox3.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radCheckBox3.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.patientBindingSource, "BloodDesease", true));
     this.radCheckBox3.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radCheckBox3.Location = new System.Drawing.Point(96, 26);
     this.radCheckBox3.Name = "radCheckBox3";
     this.radCheckBox3.Size = new System.Drawing.Size(90, 30);
     this.radCheckBox3.TabIndex = 3;
     this.radCheckBox3.Text = "ناراحتی خونی";
     //
     // radCheckBox4
     //
     this.radCheckBox4.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radCheckBox4.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.patientBindingSource, "RadioTeraphy", true));
     this.radCheckBox4.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radCheckBox4.Location = new System.Drawing.Point(189, 55);
     this.radCheckBox4.Name = "radCheckBox4";
     this.radCheckBox4.Size = new System.Drawing.Size(107, 30);
     this.radCheckBox4.TabIndex = 6;
     this.radCheckBox4.Text = "سابقه رادیوتراپی";
     //
     // radCheckBox9
     //
     this.radCheckBox9.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radCheckBox9.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.patientBindingSource, "Hepatit", true));
     this.radCheckBox9.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radCheckBox9.Location = new System.Drawing.Point(400, 26);
     this.radCheckBox9.Name = "radCheckBox9";
     this.radCheckBox9.Size = new System.Drawing.Size(58, 30);
     this.radCheckBox9.TabIndex = 0;
     this.radCheckBox9.Text = "هپاتیت";
     //
     // radCheckBox10
     //
     this.radCheckBox10.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radCheckBox10.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.patientBindingSource, "ChemicalCure", true));
     this.radCheckBox10.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radCheckBox10.Location = new System.Drawing.Point(98, 55);
     this.radCheckBox10.Name = "radCheckBox10";
     this.radCheckBox10.Size = new System.Drawing.Size(88, 30);
     this.radCheckBox10.TabIndex = 7;
     this.radCheckBox10.Text = "شیمی درمانی";
     //
     // radCheckBox6
     //
     this.radCheckBox6.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radCheckBox6.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.patientBindingSource, "NeuroticDesease", true));
     this.radCheckBox6.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radCheckBox6.Location = new System.Drawing.Point(299, 55);
     this.radCheckBox6.Name = "radCheckBox6";
     this.radCheckBox6.Size = new System.Drawing.Size(93, 30);
     this.radCheckBox6.TabIndex = 5;
     this.radCheckBox6.Text = "ناراحتی عصبی";
     //
     // radCheckBox2
     //
     this.radCheckBox2.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radCheckBox2.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.patientBindingSource, "Pregnancy", true));
     this.radCheckBox2.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radCheckBox2.Location = new System.Drawing.Point(397, 55);
     this.radCheckBox2.Name = "radCheckBox2";
     this.radCheckBox2.Size = new System.Drawing.Size(61, 30);
     this.radCheckBox2.TabIndex = 4;
     this.radCheckBox2.Text = "بارداری";
     //
     // patientHepatitCheckBox
     //
     this.patientHepatitCheckBox.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.patientHepatitCheckBox.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.patientBindingSource, "BreathDesease", true));
     this.patientHepatitCheckBox.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.patientHepatitCheckBox.Location = new System.Drawing.Point(200, 26);
     this.patientHepatitCheckBox.Name = "patientHepatitCheckBox";
     this.patientHepatitCheckBox.Size = new System.Drawing.Size(96, 30);
     this.patientHepatitCheckBox.TabIndex = 2;
     this.patientHepatitCheckBox.Text = "ناراحتی تنفسی";
     //
     // patientPregnancyCheckBox
     //
     this.patientPregnancyCheckBox.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.patientPregnancyCheckBox.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.patientBindingSource, "HeartDesease", true));
     this.patientPregnancyCheckBox.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.patientPregnancyCheckBox.Location = new System.Drawing.Point(307, 26);
     this.patientPregnancyCheckBox.Name = "patientPregnancyCheckBox";
     this.patientPregnancyCheckBox.Size = new System.Drawing.Size(85, 30);
     this.patientPregnancyCheckBox.TabIndex = 1;
     this.patientPregnancyCheckBox.Text = "ناراحتی قلبی";
     //
     // radLabel10
     //
     this.radLabel10.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radLabel10.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radLabel10.Location = new System.Drawing.Point(178, 26);
     this.radLabel10.Name = "radLabel10";
     this.radLabel10.Size = new System.Drawing.Size(67, 30);
     this.radLabel10.TabIndex = 42;
     this.radLabel10.Text = "تلفن منزل :";
     this.radLabel10.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // radLabel9
     //
     this.radLabel9.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radLabel9.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radLabel9.Location = new System.Drawing.Point(177, 57);
     this.radLabel9.Name = "radLabel9";
     this.radLabel9.Size = new System.Drawing.Size(71, 30);
     this.radLabel9.TabIndex = 43;
     this.radLabel9.Text = "تلفن همراه :";
     this.radLabel9.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // radLabel8
     //
     this.radLabel8.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radLabel8.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radLabel8.Location = new System.Drawing.Point(649, 88);
     this.radLabel8.Name = "radLabel8";
     this.radLabel8.Size = new System.Drawing.Size(48, 30);
     this.radLabel8.TabIndex = 44;
     this.radLabel8.Text = "آدرس :";
     this.radLabel8.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // radLabel2
     //
     this.radLabel2.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radLabel2.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radLabel2.Location = new System.Drawing.Point(646, 119);
     this.radLabel2.Name = "radLabel2";
     this.radLabel2.Size = new System.Drawing.Size(67, 30);
     this.radLabel2.TabIndex = 55;
     this.radLabel2.Text = "تاریخ تولد :";
     this.radLabel2.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // radLabel7
     //
     this.radLabel7.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.radLabel7.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radLabel7.Location = new System.Drawing.Point(655, 431);
     this.radLabel7.Name = "radLabel7";
     this.radLabel7.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.radLabel7.Size = new System.Drawing.Size(65, 30);
     this.radLabel7.TabIndex = 45;
     this.radLabel7.Text = "توضیحات :";
     this.radLabel7.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // txtLastName
     //
     this.txtLastName.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtLastName.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.patientBindingSource, "LastName", true));
     this.txtLastName.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.txtLastName.Location = new System.Drawing.Point(264, 25);
     this.txtLastName.Name = "txtLastName";
     this.txtLastName.Size = new System.Drawing.Size(150, 28);
     this.txtLastName.TabIndex = 1;
     this.txtLastName.TabStop = false;
     this.txtLastName.TextChanging += new Telerik.WinControls.TextChangingEventHandler(this.txtFirstName_TextChanging);
     //
     // txtFirstName
     //
     this.txtFirstName.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtFirstName.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.patientBindingSource, "FirstName", true));
     this.txtFirstName.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.txtFirstName.Location = new System.Drawing.Point(498, 25);
     this.txtFirstName.Name = "txtFirstName";
     this.txtFirstName.Size = new System.Drawing.Size(147, 28);
     this.txtFirstName.TabIndex = 0;
     this.txtFirstName.TabStop = false;
     this.txtFirstName.TextChanging += new Telerik.WinControls.TextChangingEventHandler(this.txtFirstName_TextChanging);
     //
     // radLabel1
     //
     this.radLabel1.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radLabel1.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radLabel1.Location = new System.Drawing.Point(417, 27);
     this.radLabel1.Name = "radLabel1";
     this.radLabel1.Size = new System.Drawing.Size(79, 30);
     this.radLabel1.TabIndex = 49;
     this.radLabel1.Text = "نام خانوادگی :";
     this.radLabel1.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // txtDescription
     //
     this.txtDescription.AcceptsReturn = true;
     this.txtDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)));
     this.txtDescription.AutoScroll = true;
     this.txtDescription.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.patientBindingSource, "Description", true));
     this.txtDescription.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.txtDescription.Location = new System.Drawing.Point(6, 431);
     this.txtDescription.Multiline = true;
     this.txtDescription.Name = "txtDescription";
     //
     //
     //
     this.txtDescription.RootElement.StretchVertically = true;
     this.txtDescription.Size = new System.Drawing.Size(648, 84);
     this.txtDescription.TabIndex = 6;
     this.txtDescription.TabStop = false;
     this.txtDescription.TextChanging += new Telerik.WinControls.TextChangingEventHandler(this.txtAddress_TextChanging);
     //
     // txtAddress
     //
     this.txtAddress.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtAddress.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.patientBindingSource, "Address", true));
     this.txtAddress.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.txtAddress.Location = new System.Drawing.Point(262, 88);
     this.txtAddress.Multiline = true;
     this.txtAddress.Name = "txtAddress";
     //
     //
     //
     this.txtAddress.RootElement.StretchVertically = true;
     this.txtAddress.ScrollBars = System.Windows.Forms.ScrollBars.Horizontal;
     this.txtAddress.Size = new System.Drawing.Size(383, 30);
     this.txtAddress.TabIndex = 4;
     this.txtAddress.TabStop = false;
     this.txtAddress.TextChanging += new Telerik.WinControls.TextChangingEventHandler(this.txtAddress_TextChanging);
     //
     // radGroupBox2
     //
     this.radGroupBox2.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.radGroupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.radGroupBox2.Controls.Add(this.btnHistory);
     this.radGroupBox2.Controls.Add(this.radLabel7);
     this.radGroupBox2.Controls.Add(this.btnDocs);
     this.radGroupBox2.Controls.Add(this.lstIns);
     this.radGroupBox2.Controls.Add(this.radGroupBox3);
     this.radGroupBox2.Controls.Add(this.btnAdd);
     this.radGroupBox2.Controls.Add(this.txtDescription);
     this.radGroupBox2.Controls.Add(this.btnNew);
     this.radGroupBox2.Controls.Add(this.radGroupBox1);
     this.radGroupBox2.Controls.Add(this.radLabel11);
     this.radGroupBox2.Controls.Add(this.txtCode);
     this.radGroupBox2.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radGroupBox2.FooterImageIndex = -1;
     this.radGroupBox2.FooterImageKey = "";
     this.radGroupBox2.HeaderImageIndex = -1;
     this.radGroupBox2.HeaderImageKey = "";
     this.radGroupBox2.HeaderMargin = new System.Windows.Forms.Padding(0);
     this.radGroupBox2.HeaderText = "";
     this.radGroupBox2.Location = new System.Drawing.Point(268, 7);
     this.radGroupBox2.Name = "radGroupBox2";
     this.radGroupBox2.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
     this.radGroupBox2.Size = new System.Drawing.Size(730, 564);
     this.radGroupBox2.TabIndex = 0;
     //
     // btnHistory
     //
     this.btnHistory.Font = new System.Drawing.Font("B Nazanin", 10.5F, System.Drawing.FontStyle.Bold);
     this.btnHistory.Location = new System.Drawing.Point(10, 11);
     this.btnHistory.Name = "btnHistory";
     this.btnHistory.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.btnHistory.Size = new System.Drawing.Size(110, 35);
     this.btnHistory.TabIndex = 2;
     this.btnHistory.Text = "سابقه بیمار   ";
     this.btnHistory.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
     this.btnHistory.Click += new System.EventHandler(this.radButton2_Click);
     //
     // btnDocs
     //
     this.btnDocs.Font = new System.Drawing.Font("B Nazanin", 10.5F, System.Drawing.FontStyle.Bold);
     this.btnDocs.Location = new System.Drawing.Point(126, 11);
     this.btnDocs.Name = "btnDocs";
     this.btnDocs.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.btnDocs.Size = new System.Drawing.Size(110, 35);
     this.btnDocs.TabIndex = 1;
     this.btnDocs.Text = "اسناد بیمار   ";
     this.btnDocs.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
     this.btnDocs.Click += new System.EventHandler(this.radButton1_Click);
     //
     // radGroupBox3
     //
     this.radGroupBox3.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.radGroupBox3.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.radGroupBox3.Controls.Add(this.radLabel4);
     this.radGroupBox3.Controls.Add(this.radCheckBox14);
     this.radGroupBox3.Controls.Add(this.dpBirthDate);
     this.radGroupBox3.Controls.Add(this.radTextBox2);
     this.radGroupBox3.Controls.Add(this.radTextBox1);
     this.radGroupBox3.Controls.Add(this.txtFirstName);
     this.radGroupBox3.Controls.Add(this.radTextBox3);
     this.radGroupBox3.Controls.Add(this.radLabel5);
     this.radGroupBox3.Controls.Add(this.radLabel3);
     this.radGroupBox3.Controls.Add(this.txtAddress);
     this.radGroupBox3.Controls.Add(this.txtPhone1);
     this.radGroupBox3.Controls.Add(this.radLabel1);
     this.radGroupBox3.Controls.Add(this.txtPhone2);
     this.radGroupBox3.Controls.Add(this.txtLastName);
     this.radGroupBox3.Controls.Add(this.txtAge);
     this.radGroupBox3.Controls.Add(this.radLabel2);
     this.radGroupBox3.Controls.Add(this.lblAge);
     this.radGroupBox3.Controls.Add(this.radLabel8);
     this.radGroupBox3.Controls.Add(this.radLabel9);
     this.radGroupBox3.Controls.Add(this.radLabel10);
     this.radGroupBox3.Controls.Add(this.radLabel12);
     this.radGroupBox3.Font = new System.Drawing.Font("B Titr", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radGroupBox3.FooterImageIndex = -1;
     this.radGroupBox3.FooterImageKey = "";
     this.radGroupBox3.HeaderImageIndex = -1;
     this.radGroupBox3.HeaderImageKey = "";
     this.radGroupBox3.HeaderMargin = new System.Windows.Forms.Padding(0);
     this.radGroupBox3.HeaderText = "مشخصات بیمار";
     this.radGroupBox3.Location = new System.Drawing.Point(5, 42);
     this.radGroupBox3.Name = "radGroupBox3";
     this.radGroupBox3.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
     this.radGroupBox3.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.radGroupBox3.Size = new System.Drawing.Size(715, 159);
     this.radGroupBox3.TabIndex = 3;
     this.radGroupBox3.Text = "مشخصات بیمار";
     //
     // radLabel4
     //
     this.radLabel4.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radLabel4.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radLabel4.Location = new System.Drawing.Point(417, 57);
     this.radLabel4.Name = "radLabel4";
     this.radLabel4.Size = new System.Drawing.Size(39, 30);
     this.radLabel4.TabIndex = 53;
     this.radLabel4.Text = "شغل :";
     this.radLabel4.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // radCheckBox14
     //
     this.radCheckBox14.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radCheckBox14.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.patientBindingSource, "IsChild", true));
     this.radCheckBox14.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radCheckBox14.Location = new System.Drawing.Point(8, 122);
     this.radCheckBox14.Name = "radCheckBox14";
     this.radCheckBox14.Size = new System.Drawing.Size(168, 30);
     this.radCheckBox14.TabIndex = 9;
     this.radCheckBox14.Text = "بیمار در گروه اطفال می باشد";
     //
     // radTextBox2
     //
     this.radTextBox2.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radTextBox2.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.patientBindingSource, "Introducer", true));
     this.radTextBox2.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radTextBox2.Location = new System.Drawing.Point(498, 57);
     this.radTextBox2.Name = "radTextBox2";
     this.radTextBox2.Size = new System.Drawing.Size(147, 28);
     this.radTextBox2.TabIndex = 2;
     this.radTextBox2.TabStop = false;
     this.radTextBox2.TextChanging += new Telerik.WinControls.TextChangingEventHandler(this.txtFirstName_TextChanging);
     //
     // radTextBox1
     //
     this.radTextBox1.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radTextBox1.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.patientBindingSource, "WorkNumber", true));
     this.radTextBox1.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radTextBox1.Location = new System.Drawing.Point(10, 88);
     this.radTextBox1.MaxLength = 15;
     this.radTextBox1.Name = "radTextBox1";
     this.radTextBox1.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.radTextBox1.Size = new System.Drawing.Size(166, 28);
     this.radTextBox1.TabIndex = 7;
     this.radTextBox1.TabStop = false;
     this.radTextBox1.TextChanging += new Telerik.WinControls.TextChangingEventHandler(this.txtPhone1_TextChanging);
     //
     // radTextBox3
     //
     this.radTextBox3.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radTextBox3.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.patientBindingSource, "Job", true));
     this.radTextBox3.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radTextBox3.Location = new System.Drawing.Point(264, 57);
     this.radTextBox3.Name = "radTextBox3";
     this.radTextBox3.Size = new System.Drawing.Size(150, 28);
     this.radTextBox3.TabIndex = 3;
     this.radTextBox3.TabStop = false;
     this.radTextBox3.TextChanging += new Telerik.WinControls.TextChangingEventHandler(this.txtFirstName_TextChanging);
     //
     // radLabel5
     //
     this.radLabel5.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radLabel5.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radLabel5.Location = new System.Drawing.Point(649, 57);
     this.radLabel5.Name = "radLabel5";
     this.radLabel5.Size = new System.Drawing.Size(46, 30);
     this.radLabel5.TabIndex = 52;
     this.radLabel5.Text = "معرف :";
     this.radLabel5.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // radLabel3
     //
     this.radLabel3.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radLabel3.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radLabel3.Location = new System.Drawing.Point(177, 89);
     this.radLabel3.Name = "radLabel3";
     this.radLabel3.Size = new System.Drawing.Size(85, 30);
     this.radLabel3.TabIndex = 45;
     this.radLabel3.Text = "تلفن محل کار :";
     this.radLabel3.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // FormDefinePatient
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1000, 622);
     this.Controls.Add(this.btnSave);
     this.Controls.Add(this.radGroupBox2);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.patientListGroupBox);
     this.Font = new System.Drawing.Font("B Nazanin", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.Margin = new System.Windows.Forms.Padding(4);
     this.MinimumSize = new System.Drawing.Size(1008, 540);
     this.Name = "FormDefinePatient";
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "بیمار";
     this.ThemeName = "ControlDefault";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     ((System.ComponentModel.ISupportInitialize)(this.patientListGroupBox)).EndInit();
     this.patientListGroupBox.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.filteringPanel)).EndInit();
     this.filteringPanel.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdPatient.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdPatient)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnSave)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnCancel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lstIns.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lstIns)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.patientBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPhone1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPhone2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtAge)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lblAge)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnAdd)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnNew)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCode)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel12)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).EndInit();
     this.radGroupBox1.ResumeLayout(false);
     this.radGroupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel13)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox12)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox13)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radTextBox4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radTextBox5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.patientHepatitCheckBox)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.patientPregnancyCheckBox)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLastName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtFirstName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDescription)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtAddress)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox2)).EndInit();
     this.radGroupBox2.ResumeLayout(false);
     this.radGroupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.btnHistory)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnDocs)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox3)).EndInit();
     this.radGroupBox3.ResumeLayout(false);
     this.radGroupBox3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox14)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radTextBox2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radTextBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radTextBox3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
     this.ResumeLayout(false);
 }
Exemple #38
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn2 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewCommandColumn   gridViewCommandColumn1 = new Telerik.WinControls.UI.GridViewCommandColumn();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmEnterSilosEmptying));
     Telerik.WinControls.UI.GridViewCommandColumn   gridViewCommandColumn2 = new Telerik.WinControls.UI.GridViewCommandColumn();
     Telerik.WinControls.UI.TableViewDefinition     tableViewDefinition1   = new Telerik.WinControls.UI.TableViewDefinition();
     this.tableLayoutPanel1        = new System.Windows.Forms.TableLayoutPanel();
     this.tableLayoutPanel2        = new System.Windows.Forms.TableLayoutPanel();
     this.lbCurrentStandard        = new Telerik.WinControls.UI.RadLabel();
     this.btnShowStandardSelection = new Telerik.WinControls.UI.RadButton();
     this.tableLayoutPanel3        = new System.Windows.Forms.TableLayoutPanel();
     this.gvSilos             = new Telerik.WinControls.UI.RadGridView();
     this.btnCrearVaciamiento = new Telerik.WinControls.UI.RadButton();
     this.tableLayoutPanel1.SuspendLayout();
     this.tableLayoutPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lbCurrentStandard)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnShowStandardSelection)).BeginInit();
     this.tableLayoutPanel3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gvSilos)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvSilos.MasterTemplate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnCrearVaciamiento)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // 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.tableLayoutPanel2, 0, 0);
     this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel3, 0, 1);
     this.tableLayoutPanel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
     this.tableLayoutPanel1.Margin   = new System.Windows.Forms.Padding(4);
     this.tableLayoutPanel1.Name     = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 3;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 62F));
     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, 25F));
     this.tableLayoutPanel1.Size     = new System.Drawing.Size(1109, 606);
     this.tableLayoutPanel1.TabIndex = 1;
     //
     // tableLayoutPanel2
     //
     this.tableLayoutPanel2.ColumnCount = 2;
     this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 267F));
     this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 1140F));
     this.tableLayoutPanel2.Controls.Add(this.lbCurrentStandard, 1, 0);
     this.tableLayoutPanel2.Controls.Add(this.btnShowStandardSelection, 0, 0);
     this.tableLayoutPanel2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel2.Location = new System.Drawing.Point(4, 4);
     this.tableLayoutPanel2.Margin   = new System.Windows.Forms.Padding(4);
     this.tableLayoutPanel2.Name     = "tableLayoutPanel2";
     this.tableLayoutPanel2.RowCount = 1;
     this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel2.Size     = new System.Drawing.Size(1101, 54);
     this.tableLayoutPanel2.TabIndex = 4;
     //
     // lbCurrentStandard
     //
     this.lbCurrentStandard.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.lbCurrentStandard.Font     = new System.Drawing.Font("Segoe UI", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbCurrentStandard.Location = new System.Drawing.Point(271, 4);
     this.lbCurrentStandard.Margin   = new System.Windows.Forms.Padding(4);
     this.lbCurrentStandard.Name     = "lbCurrentStandard";
     this.lbCurrentStandard.Size     = new System.Drawing.Size(1132, 46);
     this.lbCurrentStandard.TabIndex = 2;
     this.lbCurrentStandard.Text     = "{{Current Standard}}";
     //
     // btnShowStandardSelection
     //
     this.btnShowStandardSelection.Location = new System.Drawing.Point(4, 4);
     this.btnShowStandardSelection.Margin   = new System.Windows.Forms.Padding(4);
     this.btnShowStandardSelection.Name     = "btnShowStandardSelection";
     this.btnShowStandardSelection.Size     = new System.Drawing.Size(236, 46);
     this.btnShowStandardSelection.TabIndex = 1;
     this.btnShowStandardSelection.Text     = "Ir Seleccionar Indicador";
     this.btnShowStandardSelection.Click   += new System.EventHandler(this.btnShowStandardSelection_Click);
     //
     // tableLayoutPanel3
     //
     this.tableLayoutPanel3.ColumnCount = 1;
     this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel3.Controls.Add(this.gvSilos, 0, 1);
     this.tableLayoutPanel3.Controls.Add(this.btnCrearVaciamiento, 0, 0);
     this.tableLayoutPanel3.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel3.Location = new System.Drawing.Point(3, 65);
     this.tableLayoutPanel3.Name     = "tableLayoutPanel3";
     this.tableLayoutPanel3.RowCount = 2;
     this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 7.992203F));
     this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 92.0078F));
     this.tableLayoutPanel3.Size     = new System.Drawing.Size(1103, 513);
     this.tableLayoutPanel3.TabIndex = 5;
     //
     // gvSilos
     //
     this.gvSilos.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.gvSilos.Location = new System.Drawing.Point(4, 45);
     this.gvSilos.Margin   = new System.Windows.Forms.Padding(4);
     //
     //
     //
     this.gvSilos.MasterTemplate.AllowAddNewRow      = false;
     this.gvSilos.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     gridViewTextBoxColumn1.FieldName    = "Id";
     gridViewTextBoxColumn1.HeaderText   = "Id";
     gridViewTextBoxColumn1.IsVisible    = false;
     gridViewTextBoxColumn1.Name         = "Id";
     gridViewTextBoxColumn2.FieldName    = "Date";
     gridViewTextBoxColumn2.FormatString = "{0: dd/M/yyyy}";
     gridViewTextBoxColumn2.HeaderText   = "Fecha";
     gridViewTextBoxColumn2.Name         = "Date";
     gridViewTextBoxColumn2.Width        = 1005;
     gridViewCommandColumn1.HeaderText   = "";
     gridViewCommandColumn1.Image        = ((System.Drawing.Image)(resources.GetObject("gridViewCommandColumn1.Image")));
     gridViewCommandColumn1.MaxWidth     = 36;
     gridViewCommandColumn1.MinWidth     = 36;
     gridViewCommandColumn1.Name         = "btnEdit";
     gridViewCommandColumn1.Width        = 36;
     gridViewCommandColumn2.HeaderText   = "";
     gridViewCommandColumn2.Image        = ((System.Drawing.Image)(resources.GetObject("gridViewCommandColumn2.Image")));
     gridViewCommandColumn2.MaxWidth     = 36;
     gridViewCommandColumn2.MinWidth     = 36;
     gridViewCommandColumn2.Name         = "btnDelete";
     gridViewCommandColumn2.Width        = 36;
     this.gvSilos.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewTextBoxColumn1,
         gridViewTextBoxColumn2,
         gridViewCommandColumn1,
         gridViewCommandColumn2
     });
     this.gvSilos.MasterTemplate.ViewDefinition = tableViewDefinition1;
     this.gvSilos.Name              = "gvSilos";
     this.gvSilos.ReadOnly          = true;
     this.gvSilos.ShowGroupPanel    = false;
     this.gvSilos.Size              = new System.Drawing.Size(1095, 464);
     this.gvSilos.TabIndex          = 85;
     this.gvSilos.Text              = "radGridView1";
     this.gvSilos.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.gvSilos_CommandCellClick);
     //
     // btnCrearVaciamiento
     //
     this.btnCrearVaciamiento.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnCrearVaciamiento.Location = new System.Drawing.Point(863, 4);
     this.btnCrearVaciamiento.Margin   = new System.Windows.Forms.Padding(4);
     this.btnCrearVaciamiento.Name     = "btnCrearVaciamiento";
     this.btnCrearVaciamiento.Size     = new System.Drawing.Size(236, 33);
     this.btnCrearVaciamiento.TabIndex = 2;
     this.btnCrearVaciamiento.Text     = "Registrar Vaciamiento";
     this.btnCrearVaciamiento.Click   += new System.EventHandler(this.btnCrearVaciamiento_Click);
     //
     // FrmEnterSilosEmptying
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1109, 606);
     this.Controls.Add(this.tableLayoutPanel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Margin          = new System.Windows.Forms.Padding(5);
     this.Name            = "FrmEnterSilosEmptying";
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.Text  = "FrmBatchSelection";
     this.Load += new System.EventHandler(this.FrmEnterSilosEmptying_Load);
     this.tableLayoutPanel1.ResumeLayout(false);
     this.tableLayoutPanel2.ResumeLayout(false);
     this.tableLayoutPanel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lbCurrentStandard)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnShowStandardSelection)).EndInit();
     this.tableLayoutPanel3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gvSilos.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvSilos)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnCrearVaciamiento)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).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()
        {
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn2 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn3 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn1 = new Telerik.WinControls.UI.GridViewCommandColumn();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmTheDonorsAndProjectManage));
            Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn2 = new Telerik.WinControls.UI.GridViewCommandColumn();
            this.telerikMetroTheme1 = new Telerik.WinControls.Themes.TelerikMetroTheme();
            this.toolStrip1 = new System.Windows.Forms.ToolStrip();
            this.AddBtn = new System.Windows.Forms.ToolStripButton();
            this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
            this.RefreshBtn = new System.Windows.Forms.ToolStripButton();
            this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
            this.radGridView1 = new Telerik.WinControls.UI.RadGridView();
            this.statusStrip1 = new System.Windows.Forms.StatusStrip();
            this.StatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
            this.radGroupBox1 = new Telerik.WinControls.UI.RadGroupBox();
            this.toolStrip1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView1.MasterTemplate)).BeginInit();
            this.statusStrip1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).BeginInit();
            this.radGroupBox1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            this.SuspendLayout();
            // 
            // toolStrip1
            // 
            this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.AddBtn,
            this.toolStripSeparator1,
            this.RefreshBtn,
            this.toolStripSeparator2});
            this.toolStrip1.Location = new System.Drawing.Point(0, 0);
            this.toolStrip1.Name = "toolStrip1";
            this.toolStrip1.Size = new System.Drawing.Size(688, 39);
            this.toolStrip1.TabIndex = 7;
            this.toolStrip1.Text = "toolStrip1";
            // 
            // AddBtn
            // 
            this.AddBtn.Image = global::UcasProWindowsForm.Properties.Resources.Add1;
            this.AddBtn.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
            this.AddBtn.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.AddBtn.Name = "AddBtn";
            this.AddBtn.Size = new System.Drawing.Size(99, 36);
            this.AddBtn.Text = "اضافة ممول";
            this.AddBtn.Click += new System.EventHandler(this.AddDonorsBtn_Click);
            // 
            // toolStripSeparator1
            // 
            this.toolStripSeparator1.Name = "toolStripSeparator1";
            this.toolStripSeparator1.Size = new System.Drawing.Size(6, 39);
            // 
            // RefreshBtn
            // 
            this.RefreshBtn.Image = global::UcasProWindowsForm.Properties.Resources.Refrech;
            this.RefreshBtn.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
            this.RefreshBtn.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.RefreshBtn.Name = "RefreshBtn";
            this.RefreshBtn.Size = new System.Drawing.Size(117, 36);
            this.RefreshBtn.Text = "تحديث السجلات";
            this.RefreshBtn.Click += new System.EventHandler(this.RefreshBtn_Click);
            // 
            // toolStripSeparator2
            // 
            this.toolStripSeparator2.Name = "toolStripSeparator2";
            this.toolStripSeparator2.Size = new System.Drawing.Size(6, 39);
            // 
            // radGridView1
            // 
            this.radGridView1.BackColor = System.Drawing.Color.White;
            this.radGridView1.Cursor = System.Windows.Forms.Cursors.Default;
            this.radGridView1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.radGridView1.Font = new System.Drawing.Font("Segoe UI", 9F);
            this.radGridView1.ForeColor = System.Drawing.SystemColors.ControlText;
            this.radGridView1.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.radGridView1.Location = new System.Drawing.Point(2, 18);
            // 
            // radGridView1
            // 
            this.radGridView1.MasterTemplate.AllowAddNewRow = false;
            this.radGridView1.MasterTemplate.AllowColumnReorder = false;
            this.radGridView1.MasterTemplate.AllowSearchRow = true;
            this.radGridView1.MasterTemplate.AutoGenerateColumns = false;
            this.radGridView1.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
            gridViewTextBoxColumn1.EnableExpressionEditor = false;
            gridViewTextBoxColumn1.FieldName = "ID";
            gridViewTextBoxColumn1.HeaderText = "ID";
            gridViewTextBoxColumn1.IsVisible = false;
            gridViewTextBoxColumn1.Name = "ID";
            gridViewTextBoxColumn1.Width = 73;
            gridViewTextBoxColumn2.EnableExpressionEditor = false;
            gridViewTextBoxColumn2.FieldName = "TheDonor.Name";
            gridViewTextBoxColumn2.HeaderText = "الممول";
            gridViewTextBoxColumn2.Name = "Name";
            gridViewTextBoxColumn2.Width = 397;
            gridViewTextBoxColumn3.EnableExpressionEditor = false;
            gridViewTextBoxColumn3.FieldName = "TotalCost";
            gridViewTextBoxColumn3.HeaderText = "مبلغ المنحة";
            gridViewTextBoxColumn3.Name = "TotalCost";
            gridViewTextBoxColumn3.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            gridViewTextBoxColumn3.Width = 180;
            gridViewCommandColumn1.EnableExpressionEditor = false;
            gridViewCommandColumn1.HeaderText = "تعديل";
            gridViewCommandColumn1.Image = ((System.Drawing.Image)(resources.GetObject("gridViewCommandColumn1.Image")));
            gridViewCommandColumn1.ImageLayout = System.Windows.Forms.ImageLayout.Center;
            gridViewCommandColumn1.MaxWidth = 45;
            gridViewCommandColumn1.MinWidth = 45;
            gridViewCommandColumn1.Name = "EditClm";
            gridViewCommandColumn1.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            gridViewCommandColumn1.Width = 45;
            gridViewCommandColumn2.EnableExpressionEditor = false;
            gridViewCommandColumn2.HeaderText = "حذف";
            gridViewCommandColumn2.Image = ((System.Drawing.Image)(resources.GetObject("gridViewCommandColumn2.Image")));
            gridViewCommandColumn2.ImageLayout = System.Windows.Forms.ImageLayout.Center;
            gridViewCommandColumn2.MaxWidth = 45;
            gridViewCommandColumn2.MinWidth = 45;
            gridViewCommandColumn2.Name = "DelClm";
            gridViewCommandColumn2.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            gridViewCommandColumn2.Width = 45;
            this.radGridView1.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn1,
            gridViewTextBoxColumn2,
            gridViewTextBoxColumn3,
            gridViewCommandColumn1,
            gridViewCommandColumn2});
            this.radGridView1.MasterTemplate.EnableFiltering = true;
            this.radGridView1.MasterTemplate.SearchRowPosition = Telerik.WinControls.UI.SystemRowPosition.Bottom;
            this.radGridView1.Name = "radGridView1";
            this.radGridView1.ReadOnly = true;
            this.radGridView1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.radGridView1.ShowGroupPanel = false;
            this.radGridView1.Size = new System.Drawing.Size(684, 359);
            this.radGridView1.TabIndex = 8;
            this.radGridView1.Text = "radGridView1";
            this.radGridView1.ThemeName = "TelerikMetro";
            this.radGridView1.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.radGridView1_CommandCellClick);
            // 
            // statusStrip1
            // 
            this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.StatusLabel1});
            this.statusStrip1.Location = new System.Drawing.Point(0, 418);
            this.statusStrip1.Name = "statusStrip1";
            this.statusStrip1.Size = new System.Drawing.Size(688, 22);
            this.statusStrip1.TabIndex = 9;
            this.statusStrip1.Text = "statusStrip1";
            // 
            // StatusLabel1
            // 
            this.StatusLabel1.Name = "StatusLabel1";
            this.StatusLabel1.Size = new System.Drawing.Size(12, 17);
            this.StatusLabel1.Text = "-";
            // 
            // radGroupBox1
            // 
            this.radGroupBox1.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox1.Controls.Add(this.radGridView1);
            this.radGroupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.radGroupBox1.GroupBoxStyle = Telerik.WinControls.UI.RadGroupBoxStyle.Office;
            this.radGroupBox1.HeaderText = "سجلات ممولين المشروع";
            this.radGroupBox1.Location = new System.Drawing.Point(0, 39);
            this.radGroupBox1.Name = "radGroupBox1";
            this.radGroupBox1.Size = new System.Drawing.Size(688, 379);
            this.radGroupBox1.TabIndex = 10;
            this.radGroupBox1.Text = "سجلات ممولين المشروع";
            this.radGroupBox1.ThemeName = "TelerikMetro";
            // 
            // FrmTheDonorsAndProjectManage
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(688, 440);
            this.Controls.Add(this.radGroupBox1);
            this.Controls.Add(this.statusStrip1);
            this.Controls.Add(this.toolStrip1);
            this.MaximizeBox = false;
            this.MaximumSize = new System.Drawing.Size(696, 475);
            this.MinimumSize = new System.Drawing.Size(696, 475);
            this.Name = "FrmTheDonorsAndProjectManage";
            this.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            // 
            // 
            // 
            this.RootElement.ApplyShapeToControl = true;
            this.RootElement.MaxSize = new System.Drawing.Size(696, 475);
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "ممولين المشروع";
            this.ThemeName = "TelerikMetro";
            this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.FrmTheDonorsAndProjectManage_FormClosed);
            this.Load += new System.EventHandler(this.FrmTheDonorsAndProjectManage_Load);
            this.toolStrip1.ResumeLayout(false);
            this.toolStrip1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView1.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).EndInit();
            this.statusStrip1.ResumeLayout(false);
            this.statusStrip1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).EndInit();
            this.radGroupBox1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
Exemple #40
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn2 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn3 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn4 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn5 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn1 = new Telerik.WinControls.UI.GridViewCommandColumn();
     this.DgvListadoPagoBase = new Telerik.WinControls.UI.RadGridView();
     this.BtnAceptar         = new System.Windows.Forms.Button();
     ((System.ComponentModel.ISupportInitialize)(this.DgvListadoPagoBase)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DgvListadoPagoBase.MasterTemplate)).BeginInit();
     this.SuspendLayout();
     //
     // DgvListadoPagoBase
     //
     this.DgvListadoPagoBase.AutoSizeRows = true;
     this.DgvListadoPagoBase.Font         = new System.Drawing.Font("Consolas", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.DgvListadoPagoBase.Location     = new System.Drawing.Point(3, 60);
     //
     // DgvListadoPagoBase
     //
     this.DgvListadoPagoBase.MasterTemplate.AllowAddNewRow      = false;
     this.DgvListadoPagoBase.MasterTemplate.AllowColumnReorder  = false;
     this.DgvListadoPagoBase.MasterTemplate.AllowDragToGroup    = false;
     this.DgvListadoPagoBase.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     gridViewTextBoxColumn1.FieldName  = "Desde";
     gridViewTextBoxColumn1.HeaderText = "Desde";
     gridViewTextBoxColumn1.Name       = "Desde";
     gridViewTextBoxColumn1.Width      = 147;
     gridViewTextBoxColumn2.FieldName  = "Hasta";
     gridViewTextBoxColumn2.HeaderText = "Hasta";
     gridViewTextBoxColumn2.Name       = "Hasta";
     gridViewTextBoxColumn2.Width      = 147;
     gridViewTextBoxColumn3.FieldName  = "Movil.Numero";
     gridViewTextBoxColumn3.HeaderText = "Movil";
     gridViewTextBoxColumn3.Name       = "Movil.Numero";
     gridViewTextBoxColumn3.Width      = 124;
     gridViewTextBoxColumn4.FieldName  = "Total";
     gridViewTextBoxColumn4.HeaderText = "Monto";
     gridViewTextBoxColumn4.Name       = "Total";
     gridViewTextBoxColumn4.Width      = 147;
     gridViewTextBoxColumn5.FieldName  = "Taller";
     gridViewTextBoxColumn5.HeaderText = "Taller";
     gridViewTextBoxColumn5.Name       = "Taller";
     gridViewTextBoxColumn5.Width      = 148;
     gridViewCommandColumn1.HeaderText = "";
     gridViewCommandColumn1.Image      = global::GestionAdministrativa.Win.Properties.Resources.Garbage_Closed;
     gridViewCommandColumn1.MaxWidth   = 25;
     gridViewCommandColumn1.MinWidth   = 25;
     gridViewCommandColumn1.Name       = "Delete";
     gridViewCommandColumn1.Width      = 25;
     this.DgvListadoPagoBase.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewTextBoxColumn1,
         gridViewTextBoxColumn2,
         gridViewTextBoxColumn3,
         gridViewTextBoxColumn4,
         gridViewTextBoxColumn5,
         gridViewCommandColumn1
     });
     this.DgvListadoPagoBase.Name              = "DgvListadoPagoBase";
     this.DgvListadoPagoBase.ReadOnly          = true;
     this.DgvListadoPagoBase.Size              = new System.Drawing.Size(755, 337);
     this.DgvListadoPagoBase.TabIndex          = 14;
     this.DgvListadoPagoBase.Text              = "radGridView1";
     this.DgvListadoPagoBase.ThemeName         = "TelerikMetro";
     this.DgvListadoPagoBase.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.DgvListadoPagoBase_CommandCellClick);
     //
     // BtnAceptar
     //
     this.BtnAceptar.DialogResult            = System.Windows.Forms.DialogResult.OK;
     this.BtnAceptar.Font                    = new System.Drawing.Font("Consolas", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.BtnAceptar.Location                = new System.Drawing.Point(649, 13);
     this.BtnAceptar.Name                    = "BtnAceptar";
     this.BtnAceptar.Size                    = new System.Drawing.Size(109, 41);
     this.BtnAceptar.TabIndex                = 13;
     this.BtnAceptar.Text                    = "Agregar";
     this.BtnAceptar.UseVisualStyleBackColor = true;
     this.BtnAceptar.Click                  += new System.EventHandler(this.BtnAceptar_Click);
     //
     // UcListadoPago
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.DgvListadoPagoBase);
     this.Controls.Add(this.BtnAceptar);
     this.Name  = "UcListadoPago";
     this.Size  = new System.Drawing.Size(768, 418);
     this.Load += new System.EventHandler(this.UcListadoPago_Load);
     ((System.ComponentModel.ISupportInitialize)(this.DgvListadoPagoBase.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DgvListadoPagoBase)).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()
        {
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn2 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn3 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn4 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn5 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn6 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn1 = new Telerik.WinControls.UI.GridViewCommandColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn7 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn8 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn9 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn10 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn11 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn12 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn13 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn14 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn2 = new Telerik.WinControls.UI.GridViewCommandColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn15 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            this.ucBuscadorFactura = new LaPaz.Win.Forms.Ventas.CreditosDevolucion.UcBuscadorFactura();
            this.GrillaLineasFactura = new Telerik.WinControls.UI.RadGridView();
            this.PnlTotales = new Telerik.WinControls.UI.RadPanel();
            this.RbtnCredito = new Telerik.WinControls.UI.RadRadioButton();
            this.RbtnEgreso = new Telerik.WinControls.UI.RadRadioButton();
            this.BtnGuardar = new Telerik.WinControls.UI.RadButton();
            this.TxtTotal = new Telerik.WinControls.UI.RadTextBox();
            this.radLabel1 = new Telerik.WinControls.UI.RadLabel();
            this.PnlFactura = new Telerik.WinControls.UI.RadPanel();
            this.TxtImporte = new Telerik.WinControls.UI.RadTextBox();
            this.TxtFecha = new Telerik.WinControls.UI.RadTextBox();
            this.TxtConcepto = new Telerik.WinControls.UI.RadTextBox();
            this.TxtCliente = new Telerik.WinControls.UI.RadTextBox();
            this.radLabel8 = new Telerik.WinControls.UI.RadLabel();
            this.radLabel9 = new Telerik.WinControls.UI.RadLabel();
            this.radLabel4 = new Telerik.WinControls.UI.RadLabel();
            this.radLabel5 = new Telerik.WinControls.UI.RadLabel();
            this.radLabel6 = new Telerik.WinControls.UI.RadLabel();
            this.radLabel7 = new Telerik.WinControls.UI.RadLabel();
            this.radLabel2 = new Telerik.WinControls.UI.RadLabel();
            this.radLabel3 = new Telerik.WinControls.UI.RadLabel();
            this.radPanel2 = new Telerik.WinControls.UI.RadPanel();
            this.radPanel3 = new Telerik.WinControls.UI.RadPanel();
            this.radPanel4 = new Telerik.WinControls.UI.RadPanel();
            this.GrillaDevueltos = new Telerik.WinControls.UI.RadGridView();
            ((System.ComponentModel.ISupportInitialize)(this.GrillaLineasFactura)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.GrillaLineasFactura.MasterTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.PnlTotales)).BeginInit();
            this.PnlTotales.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.RbtnCredito)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.RbtnEgreso)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.BtnGuardar)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.TxtTotal)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.PnlFactura)).BeginInit();
            this.PnlFactura.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.TxtImporte)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.TxtFecha)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.TxtConcepto)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.TxtCliente)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel8)).BeginInit();
            this.radLabel8.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel9)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).BeginInit();
            this.radLabel4.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel5)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel6)).BeginInit();
            this.radLabel6.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel7)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).BeginInit();
            this.radLabel2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radPanel2)).BeginInit();
            this.radPanel2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radPanel3)).BeginInit();
            this.radPanel3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radPanel4)).BeginInit();
            this.radPanel4.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.GrillaDevueltos)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.GrillaDevueltos.MasterTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            this.SuspendLayout();
            // 
            // ucBuscadorFactura
            // 
            this.ucBuscadorFactura.Location = new System.Drawing.Point(3, 3);
            this.ucBuscadorFactura.Name = "ucBuscadorFactura";
            this.ucBuscadorFactura.Size = new System.Drawing.Size(491, 58);
            this.ucBuscadorFactura.TabIndex = 0;
            // 
            // GrillaLineasFactura
            // 
            this.GrillaLineasFactura.Location = new System.Drawing.Point(1, 3);
            // 
            // GrillaLineasFactura
            // 
            this.GrillaLineasFactura.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
            gridViewTextBoxColumn1.FieldName = "TituloNombreTitulo";
            gridViewTextBoxColumn1.HeaderText = "Titulo";
            gridViewTextBoxColumn1.Name = "Titulo";
            gridViewTextBoxColumn1.Width = 246;
            gridViewTextBoxColumn2.FieldName = "CantidadAuditada";
            gridViewTextBoxColumn2.FormatString = "";
            gridViewTextBoxColumn2.HeaderText = "Cantidad";
            gridViewTextBoxColumn2.MaxWidth = 75;
            gridViewTextBoxColumn2.MinWidth = 75;
            gridViewTextBoxColumn2.Name = "Cantidad";
            gridViewTextBoxColumn2.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
            gridViewTextBoxColumn2.Width = 75;
            gridViewTextBoxColumn3.Expression = "IIF(Descuento>0,  PrecioBase -(PrecioBase * Descuento / 100), PrecioBase)";
            gridViewTextBoxColumn3.HeaderText = "Precio";
            gridViewTextBoxColumn3.Name = "PrecioUnitario";
            gridViewTextBoxColumn3.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
            gridViewTextBoxColumn3.Width = 97;
            gridViewTextBoxColumn4.Expression = "";
            gridViewTextBoxColumn4.FieldName = "Precio";
            gridViewTextBoxColumn4.FormatString = "";
            gridViewTextBoxColumn4.HeaderText = "Total";
            gridViewTextBoxColumn4.MaxWidth = 75;
            gridViewTextBoxColumn4.MinWidth = 75;
            gridViewTextBoxColumn4.Name = "Precio";
            gridViewTextBoxColumn4.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
            gridViewTextBoxColumn4.Width = 75;
            gridViewTextBoxColumn5.FieldName = "PrecioBase";
            gridViewTextBoxColumn5.FormatString = "";
            gridViewTextBoxColumn5.HeaderText = "PrecioBase";
            gridViewTextBoxColumn5.IsVisible = false;
            gridViewTextBoxColumn5.MaxWidth = 75;
            gridViewTextBoxColumn5.MinWidth = 75;
            gridViewTextBoxColumn5.Name = "PrecioBase";
            gridViewTextBoxColumn5.Width = 75;
            gridViewTextBoxColumn6.FieldName = "Descuento";
            gridViewTextBoxColumn6.FormatString = "";
            gridViewTextBoxColumn6.HeaderText = "Descuento";
            gridViewTextBoxColumn6.IsVisible = false;
            gridViewTextBoxColumn6.MaxWidth = 75;
            gridViewTextBoxColumn6.MinWidth = 75;
            gridViewTextBoxColumn6.Name = "Descuento";
            gridViewTextBoxColumn6.Width = 75;
            gridViewCommandColumn1.HeaderText = "";
            gridViewCommandColumn1.Image = global::LaPaz.Win.Properties.Resources.devolver;
            gridViewCommandColumn1.MaxWidth = 30;
            gridViewCommandColumn1.MinWidth = 30;
            gridViewCommandColumn1.Name = "ColumnaDevolver";
            gridViewCommandColumn1.Width = 30;
            gridViewTextBoxColumn7.Expression = "Id";
            gridViewTextBoxColumn7.HeaderText = "Id";
            gridViewTextBoxColumn7.IsVisible = false;
            gridViewTextBoxColumn7.Name = "Id";
            gridViewTextBoxColumn7.Width = 44;
            this.GrillaLineasFactura.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn1,
            gridViewTextBoxColumn2,
            gridViewTextBoxColumn3,
            gridViewTextBoxColumn4,
            gridViewTextBoxColumn5,
            gridViewTextBoxColumn6,
            gridViewCommandColumn1,
            gridViewTextBoxColumn7});
            this.GrillaLineasFactura.MasterTemplate.EnableGrouping = false;
            this.GrillaLineasFactura.Name = "GrillaLineasFactura";
            this.GrillaLineasFactura.ReadOnly = true;
            this.GrillaLineasFactura.Size = new System.Drawing.Size(541, 280);
            this.GrillaLineasFactura.TabIndex = 1;
            this.GrillaLineasFactura.Text = "radGridView1";
            this.GrillaLineasFactura.ThemeName = "TelerikMetroBlue";
            this.GrillaLineasFactura.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.GrillaLineasFactura_CommandCellClick);
            // 
            // PnlTotales
            // 
            this.PnlTotales.Controls.Add(this.RbtnCredito);
            this.PnlTotales.Controls.Add(this.RbtnEgreso);
            this.PnlTotales.Controls.Add(this.BtnGuardar);
            this.PnlTotales.Controls.Add(this.TxtTotal);
            this.PnlTotales.Controls.Add(this.radLabel1);
            this.PnlTotales.Location = new System.Drawing.Point(563, 76);
            this.PnlTotales.Name = "PnlTotales";
            this.PnlTotales.Size = new System.Drawing.Size(585, 114);
            this.PnlTotales.TabIndex = 3;
            // 
            // RbtnCredito
            // 
            this.RbtnCredito.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.RbtnCredito.Location = new System.Drawing.Point(38, 24);
            this.RbtnCredito.Name = "RbtnCredito";
            this.RbtnCredito.Size = new System.Drawing.Size(198, 18);
            this.RbtnCredito.TabIndex = 5;
            this.RbtnCredito.TabStop = true;
            this.RbtnCredito.Text = "Crédito por Devolución";
            this.RbtnCredito.ThemeName = "TelerikMetroBlue";
            this.RbtnCredito.ToggleState = Telerik.WinControls.Enumerations.ToggleState.On;
            // 
            // RbtnEgreso
            // 
            this.RbtnEgreso.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.RbtnEgreso.Location = new System.Drawing.Point(38, 72);
            this.RbtnEgreso.Name = "RbtnEgreso";
            this.RbtnEgreso.Size = new System.Drawing.Size(232, 18);
            this.RbtnEgreso.TabIndex = 6;
            this.RbtnEgreso.Text = "Egreso - Devolver Importe";
            this.RbtnEgreso.ThemeName = "TelerikMetroBlue";
            // 
            // BtnGuardar
            // 
            this.BtnGuardar.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.BtnGuardar.Location = new System.Drawing.Point(438, 61);
            this.BtnGuardar.Name = "BtnGuardar";
            this.BtnGuardar.Size = new System.Drawing.Size(123, 29);
            this.BtnGuardar.TabIndex = 2;
            this.BtnGuardar.Text = "Guardar";
            this.BtnGuardar.ThemeName = "TelerikMetroBlue";
            this.BtnGuardar.Click += new System.EventHandler(this.BtnGuardar_Click);
            // 
            // TxtTotal
            // 
            this.TxtTotal.Enabled = false;
            this.TxtTotal.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.TxtTotal.Location = new System.Drawing.Point(438, 16);
            this.TxtTotal.Name = "TxtTotal";
            this.TxtTotal.Size = new System.Drawing.Size(123, 26);
            this.TxtTotal.TabIndex = 1;
            this.TxtTotal.TabStop = false;
            this.TxtTotal.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            this.TxtTotal.ThemeName = "TelerikMetroBlue";
            // 
            // radLabel1
            // 
            this.radLabel1.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.radLabel1.Location = new System.Drawing.Point(387, 18);
            this.radLabel1.Name = "radLabel1";
            this.radLabel1.Size = new System.Drawing.Size(45, 24);
            this.radLabel1.TabIndex = 0;
            this.radLabel1.Text = "Total:";
            // 
            // PnlFactura
            // 
            this.PnlFactura.Controls.Add(this.TxtImporte);
            this.PnlFactura.Controls.Add(this.TxtFecha);
            this.PnlFactura.Controls.Add(this.TxtConcepto);
            this.PnlFactura.Controls.Add(this.TxtCliente);
            this.PnlFactura.Controls.Add(this.radLabel8);
            this.PnlFactura.Controls.Add(this.radLabel4);
            this.PnlFactura.Controls.Add(this.radLabel6);
            this.PnlFactura.Controls.Add(this.radLabel2);
            this.PnlFactura.Location = new System.Drawing.Point(12, 76);
            this.PnlFactura.Name = "PnlFactura";
            this.PnlFactura.Size = new System.Drawing.Size(545, 114);
            this.PnlFactura.TabIndex = 4;
            // 
            // TxtImporte
            // 
            this.TxtImporte.Enabled = false;
            this.TxtImporte.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.TxtImporte.Location = new System.Drawing.Point(354, 77);
            this.TxtImporte.Name = "TxtImporte";
            this.TxtImporte.Size = new System.Drawing.Size(148, 26);
            this.TxtImporte.TabIndex = 8;
            this.TxtImporte.TabStop = false;
            this.TxtImporte.ThemeName = "TelerikMetroBlue";
            // 
            // TxtFecha
            // 
            this.TxtFecha.Enabled = false;
            this.TxtFecha.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.TxtFecha.Location = new System.Drawing.Point(96, 78);
            this.TxtFecha.Name = "TxtFecha";
            this.TxtFecha.Size = new System.Drawing.Size(182, 26);
            this.TxtFecha.TabIndex = 7;
            this.TxtFecha.TabStop = false;
            this.TxtFecha.ThemeName = "TelerikMetroBlue";
            // 
            // TxtConcepto
            // 
            this.TxtConcepto.Enabled = false;
            this.TxtConcepto.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.TxtConcepto.Location = new System.Drawing.Point(96, 46);
            this.TxtConcepto.Name = "TxtConcepto";
            this.TxtConcepto.Size = new System.Drawing.Size(406, 26);
            this.TxtConcepto.TabIndex = 6;
            this.TxtConcepto.TabStop = false;
            this.TxtConcepto.ThemeName = "TelerikMetroBlue";
            // 
            // TxtCliente
            // 
            this.TxtCliente.Enabled = false;
            this.TxtCliente.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.TxtCliente.Location = new System.Drawing.Point(96, 14);
            this.TxtCliente.Name = "TxtCliente";
            this.TxtCliente.Size = new System.Drawing.Size(406, 26);
            this.TxtCliente.TabIndex = 5;
            this.TxtCliente.TabStop = false;
            this.TxtCliente.ThemeName = "TelerikMetroBlue";
            // 
            // radLabel8
            // 
            this.radLabel8.Controls.Add(this.radLabel9);
            this.radLabel8.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.radLabel8.Location = new System.Drawing.Point(284, 79);
            this.radLabel8.Name = "radLabel8";
            this.radLabel8.Size = new System.Drawing.Size(65, 24);
            this.radLabel8.TabIndex = 4;
            this.radLabel8.Text = "Importe:";
            // 
            // radLabel9
            // 
            this.radLabel9.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.radLabel9.Location = new System.Drawing.Point(3, 30);
            this.radLabel9.Name = "radLabel9";
            this.radLabel9.Size = new System.Drawing.Size(58, 24);
            this.radLabel9.TabIndex = 1;
            this.radLabel9.Text = "Cliente:";
            // 
            // radLabel4
            // 
            this.radLabel4.Controls.Add(this.radLabel5);
            this.radLabel4.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.radLabel4.Location = new System.Drawing.Point(13, 79);
            this.radLabel4.Name = "radLabel4";
            this.radLabel4.Size = new System.Drawing.Size(50, 24);
            this.radLabel4.TabIndex = 3;
            this.radLabel4.Text = "Fecha:";
            // 
            // radLabel5
            // 
            this.radLabel5.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.radLabel5.Location = new System.Drawing.Point(3, 30);
            this.radLabel5.Name = "radLabel5";
            this.radLabel5.Size = new System.Drawing.Size(58, 24);
            this.radLabel5.TabIndex = 1;
            this.radLabel5.Text = "Cliente:";
            // 
            // radLabel6
            // 
            this.radLabel6.Controls.Add(this.radLabel7);
            this.radLabel6.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.radLabel6.Location = new System.Drawing.Point(13, 47);
            this.radLabel6.Name = "radLabel6";
            this.radLabel6.Size = new System.Drawing.Size(77, 24);
            this.radLabel6.TabIndex = 2;
            this.radLabel6.Text = "Concepto:";
            // 
            // radLabel7
            // 
            this.radLabel7.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.radLabel7.Location = new System.Drawing.Point(3, 30);
            this.radLabel7.Name = "radLabel7";
            this.radLabel7.Size = new System.Drawing.Size(58, 24);
            this.radLabel7.TabIndex = 1;
            this.radLabel7.Text = "Cliente:";
            // 
            // radLabel2
            // 
            this.radLabel2.Controls.Add(this.radLabel3);
            this.radLabel2.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.radLabel2.Location = new System.Drawing.Point(13, 15);
            this.radLabel2.Name = "radLabel2";
            this.radLabel2.Size = new System.Drawing.Size(58, 24);
            this.radLabel2.TabIndex = 0;
            this.radLabel2.Text = "Cliente:";
            // 
            // radLabel3
            // 
            this.radLabel3.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.radLabel3.Location = new System.Drawing.Point(3, 30);
            this.radLabel3.Name = "radLabel3";
            this.radLabel3.Size = new System.Drawing.Size(58, 24);
            this.radLabel3.TabIndex = 1;
            this.radLabel3.Text = "Cliente:";
            // 
            // radPanel2
            // 
            this.radPanel2.Controls.Add(this.ucBuscadorFactura);
            this.radPanel2.Location = new System.Drawing.Point(12, 4);
            this.radPanel2.Name = "radPanel2";
            this.radPanel2.Size = new System.Drawing.Size(545, 66);
            this.radPanel2.TabIndex = 5;
            // 
            // radPanel3
            // 
            this.radPanel3.Controls.Add(this.GrillaLineasFactura);
            this.radPanel3.Location = new System.Drawing.Point(12, 196);
            this.radPanel3.Name = "radPanel3";
            this.radPanel3.Size = new System.Drawing.Size(545, 291);
            this.radPanel3.TabIndex = 6;
            this.radPanel3.Text = "radPanel3";
            // 
            // radPanel4
            // 
            this.radPanel4.Controls.Add(this.GrillaDevueltos);
            this.radPanel4.Location = new System.Drawing.Point(563, 196);
            this.radPanel4.Name = "radPanel4";
            this.radPanel4.Size = new System.Drawing.Size(587, 291);
            this.radPanel4.TabIndex = 7;
            this.radPanel4.Text = "radPanel4";
            // 
            // GrillaDevueltos
            // 
            this.GrillaDevueltos.Location = new System.Drawing.Point(1, 5);
            // 
            // GrillaDevueltos
            // 
            this.GrillaDevueltos.MasterTemplate.AllowColumnReorder = false;
            this.GrillaDevueltos.MasterTemplate.AllowDragToGroup = false;
            this.GrillaDevueltos.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
            gridViewTextBoxColumn8.Expression = "";
            gridViewTextBoxColumn8.FieldName = "TituloId";
            gridViewTextBoxColumn8.HeaderText = "TituloId";
            gridViewTextBoxColumn8.IsVisible = false;
            gridViewTextBoxColumn8.Name = "TituloId";
            gridViewTextBoxColumn9.Expression = "";
            gridViewTextBoxColumn9.FieldName = "NombreTitulo";
            gridViewTextBoxColumn9.HeaderText = "Titulo";
            gridViewTextBoxColumn9.Name = "TituloNombre";
            gridViewTextBoxColumn9.Width = 312;
            gridViewTextBoxColumn10.Expression = "";
            gridViewTextBoxColumn10.FieldName = "CantidadConsignada";
            gridViewTextBoxColumn10.HeaderText = "Consignada";
            gridViewTextBoxColumn10.IsVisible = false;
            gridViewTextBoxColumn10.Name = "CantidadConsignada";
            gridViewTextBoxColumn11.Expression = "";
            gridViewTextBoxColumn11.FieldName = "CantidadPropia";
            gridViewTextBoxColumn11.HeaderText = "Propia";
            gridViewTextBoxColumn11.IsVisible = false;
            gridViewTextBoxColumn11.Name = "CantidadPropia";
            gridViewTextBoxColumn12.Expression = "";
            gridViewTextBoxColumn12.FieldName = "CantidadTotal";
            gridViewTextBoxColumn12.HeaderText = "Cantidad";
            gridViewTextBoxColumn12.MaxWidth = 75;
            gridViewTextBoxColumn12.MinWidth = 75;
            gridViewTextBoxColumn12.Name = "CantidadTotal";
            gridViewTextBoxColumn12.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
            gridViewTextBoxColumn12.Width = 75;
            gridViewTextBoxColumn13.Expression = "";
            gridViewTextBoxColumn13.FieldName = "PrecioUnitario";
            gridViewTextBoxColumn13.HeaderText = "Precio";
            gridViewTextBoxColumn13.MaxWidth = 75;
            gridViewTextBoxColumn13.MinWidth = 75;
            gridViewTextBoxColumn13.Name = "PrecioUnitario";
            gridViewTextBoxColumn13.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
            gridViewTextBoxColumn13.Width = 75;
            gridViewTextBoxColumn14.Expression = "";
            gridViewTextBoxColumn14.FieldName = "Importe";
            gridViewTextBoxColumn14.HeaderText = "Total";
            gridViewTextBoxColumn14.MaxWidth = 75;
            gridViewTextBoxColumn14.MinWidth = 75;
            gridViewTextBoxColumn14.Name = "Importe";
            gridViewTextBoxColumn14.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
            gridViewTextBoxColumn14.Width = 75;
            gridViewCommandColumn2.HeaderText = "";
            gridViewCommandColumn2.Image = global::LaPaz.Win.Properties.Resources.Garbage_Closed;
            gridViewCommandColumn2.MaxWidth = 30;
            gridViewCommandColumn2.MinWidth = 30;
            gridViewCommandColumn2.Name = "ColumnaEliminar";
            gridViewCommandColumn2.Width = 30;
            gridViewTextBoxColumn15.FieldName = "Id";
            gridViewTextBoxColumn15.HeaderText = "Id";
            gridViewTextBoxColumn15.IsVisible = false;
            gridViewTextBoxColumn15.Name = "Id";
            gridViewTextBoxColumn15.Width = 43;
            this.GrillaDevueltos.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn8,
            gridViewTextBoxColumn9,
            gridViewTextBoxColumn10,
            gridViewTextBoxColumn11,
            gridViewTextBoxColumn12,
            gridViewTextBoxColumn13,
            gridViewTextBoxColumn14,
            gridViewCommandColumn2,
            gridViewTextBoxColumn15});
            this.GrillaDevueltos.MasterTemplate.EnableGrouping = false;
            this.GrillaDevueltos.Name = "GrillaDevueltos";
            this.GrillaDevueltos.ReadOnly = true;
            this.GrillaDevueltos.Size = new System.Drawing.Size(585, 280);
            this.GrillaDevueltos.TabIndex = 3;
            this.GrillaDevueltos.Text = "radGridView1";
            this.GrillaDevueltos.ThemeName = "TelerikMetroBlue";
            this.GrillaDevueltos.CellClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.GrillaDevueltos_CellClick_1);
            // 
            // FrmCreditoDevolucion
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1210, 577);
            this.Controls.Add(this.radPanel4);
            this.Controls.Add(this.radPanel3);
            this.Controls.Add(this.radPanel2);
            this.Controls.Add(this.PnlFactura);
            this.Controls.Add(this.PnlTotales);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
            this.Name = "FrmCreditoDevolucion";
            // 
            // 
            // 
            this.RootElement.ApplyShapeToControl = true;
            this.Text = "";
            this.Load += new System.EventHandler(this.FrmCreditoDevolucion_Load);
            ((System.ComponentModel.ISupportInitialize)(this.GrillaLineasFactura.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.GrillaLineasFactura)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.PnlTotales)).EndInit();
            this.PnlTotales.ResumeLayout(false);
            this.PnlTotales.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.RbtnCredito)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.RbtnEgreso)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.BtnGuardar)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.TxtTotal)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.PnlFactura)).EndInit();
            this.PnlFactura.ResumeLayout(false);
            this.PnlFactura.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.TxtImporte)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.TxtFecha)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.TxtConcepto)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.TxtCliente)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel8)).EndInit();
            this.radLabel8.ResumeLayout(false);
            this.radLabel8.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel9)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).EndInit();
            this.radLabel4.ResumeLayout(false);
            this.radLabel4.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel5)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel6)).EndInit();
            this.radLabel6.ResumeLayout(false);
            this.radLabel6.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel7)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).EndInit();
            this.radLabel2.ResumeLayout(false);
            this.radLabel2.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radPanel2)).EndInit();
            this.radPanel2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radPanel3)).EndInit();
            this.radPanel3.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radPanel4)).EndInit();
            this.radPanel4.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.GrillaDevueltos.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.GrillaDevueltos)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this)).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(frmCustomers));
     Telerik.WinControls.UI.GridViewCommandColumn   gridViewCommandColumn11 = new Telerik.WinControls.UI.GridViewCommandColumn();
     Telerik.WinControls.UI.GridViewCommandColumn   gridViewCommandColumn12 = new Telerik.WinControls.UI.GridViewCommandColumn();
     Telerik.WinControls.UI.TableViewDefinition     tableViewDefinition6    = new Telerik.WinControls.UI.TableViewDefinition();
     this.pictureBox2         = new System.Windows.Forms.PictureBox();
     this.btnSave             = new System.Windows.Forms.Button();
     this.pictureBox3         = new System.Windows.Forms.PictureBox();
     this.btnSearch           = new System.Windows.Forms.Button();
     this.pictureBox4         = new System.Windows.Forms.PictureBox();
     this.txtCustomerFullName = new Utility.SizableTextBox();
     this.txtCustomerPhone    = new Utility.NumericTextBox();
     this.txtCustomerAddress  = new Utility.SizableTextBox();
     this.txtSearch           = new Utility.SizableTextBox();
     this.lblTotalCost        = new System.Windows.Forms.Label();
     this.lblTotalServices    = new System.Windows.Forms.Label();
     this.lblLastCost         = new System.Windows.Forms.Label();
     this.lblLastOrigin       = new System.Windows.Forms.Label();
     this.lblLastDestination  = new System.Windows.Forms.Label();
     this.btnCancel           = new System.Windows.Forms.Button();
     this.btnPrevious         = new System.Windows.Forms.Button();
     this.btnNext             = new System.Windows.Forms.Button();
     this.lbl1            = new System.Windows.Forms.Label();
     this.gridCustomers   = new Utility.RadGridViewCustom();
     this.lblCustomerName = new System.Windows.Forms.Label();
     this.materialTheme1  = new Telerik.WinControls.Themes.MaterialTheme();
     //((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
     //((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit();
     //((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).BeginInit();
     //((System.ComponentModel.ISupportInitialize)(this.gridCustomers)).BeginInit();
     //((System.ComponentModel.ISupportInitialize)(this.gridCustomers.MasterTemplate)).BeginInit();
     this.SuspendLayout();
     //
     // btnDashboard
     //
     this.btnDashboard.FlatAppearance.BorderColor        = System.Drawing.Color.FromArgb(((int)(((byte)(246)))), ((int)(((byte)(190)))), ((int)(((byte)(100)))));
     this.btnDashboard.FlatAppearance.BorderSize         = 0;
     this.btnDashboard.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(246)))), ((int)(((byte)(190)))), ((int)(((byte)(100)))));
     this.btnDashboard.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(246)))), ((int)(((byte)(190)))), ((int)(((byte)(100)))));
     //
     // btnDrivers
     //
     this.btnDrivers.FlatAppearance.BorderColor        = System.Drawing.Color.FromArgb(((int)(((byte)(246)))), ((int)(((byte)(190)))), ((int)(((byte)(100)))));
     this.btnDrivers.FlatAppearance.BorderSize         = 0;
     this.btnDrivers.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(246)))), ((int)(((byte)(190)))), ((int)(((byte)(100)))));
     this.btnDrivers.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(246)))), ((int)(((byte)(190)))), ((int)(((byte)(100)))));
     //
     // btnServices
     //
     this.btnServices.FlatAppearance.BorderColor        = System.Drawing.Color.FromArgb(((int)(((byte)(246)))), ((int)(((byte)(190)))), ((int)(((byte)(100)))));
     this.btnServices.FlatAppearance.BorderSize         = 0;
     this.btnServices.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(246)))), ((int)(((byte)(190)))), ((int)(((byte)(100)))));
     this.btnServices.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(246)))), ((int)(((byte)(190)))), ((int)(((byte)(100)))));
     //
     // btnPaths
     //
     this.btnPaths.FlatAppearance.BorderColor        = System.Drawing.Color.FromArgb(((int)(((byte)(246)))), ((int)(((byte)(190)))), ((int)(((byte)(100)))));
     this.btnPaths.FlatAppearance.BorderSize         = 0;
     this.btnPaths.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(246)))), ((int)(((byte)(190)))), ((int)(((byte)(100)))));
     this.btnPaths.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(246)))), ((int)(((byte)(190)))), ((int)(((byte)(100)))));
     //
     // btnExit
     //
     this.btnExit.FlatAppearance.BorderColor        = System.Drawing.Color.FromArgb(((int)(((byte)(246)))), ((int)(((byte)(190)))), ((int)(((byte)(100)))));
     this.btnExit.FlatAppearance.BorderSize         = 0;
     this.btnExit.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(246)))), ((int)(((byte)(190)))), ((int)(((byte)(100)))));
     this.btnExit.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(246)))), ((int)(((byte)(190)))), ((int)(((byte)(100)))));
     //
     // pictureBox2
     //
     this.pictureBox2.Image    = ((System.Drawing.Image)(resources.GetObject("pictureBox2.Image")));
     this.pictureBox2.Location = new System.Drawing.Point(183, 189);
     this.pictureBox2.Name     = "pictureBox2";
     this.pictureBox2.Size     = new System.Drawing.Size(1201, 564);
     this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
     this.pictureBox2.TabIndex = 16;
     this.pictureBox2.TabStop  = false;
     this.pictureBox2.Click   += new System.EventHandler(this.pictureBox2_Click);
     //
     // btnSave
     //
     this.btnSave.BackColor             = System.Drawing.Color.White;
     this.btnSave.BackgroundImage       = ((System.Drawing.Image)(resources.GetObject("btnSave.BackgroundImage")));
     this.btnSave.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
     this.btnSave.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btnSave.FlatAppearance.BorderColor        = System.Drawing.Color.White;
     this.btnSave.FlatAppearance.BorderSize         = 0;
     this.btnSave.FlatAppearance.MouseDownBackColor = System.Drawing.Color.White;
     this.btnSave.FlatAppearance.MouseOverBackColor = System.Drawing.Color.White;
     this.btnSave.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnSave.Font      = new System.Drawing.Font("IRANYekan", 9.749999F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.btnSave.Location  = new System.Drawing.Point(390, 624);
     this.btnSave.Name      = "btnSave";
     this.btnSave.Size      = new System.Drawing.Size(272, 30);
     this.btnSave.TabIndex  = 12;
     this.btnSave.UseVisualStyleBackColor = false;
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // pictureBox3
     //
     this.pictureBox3.Image    = ((System.Drawing.Image)(resources.GetObject("pictureBox3.Image")));
     this.pictureBox3.Location = new System.Drawing.Point(208, 132);
     this.pictureBox3.Name     = "pictureBox3";
     this.pictureBox3.Size     = new System.Drawing.Size(462, 51);
     this.pictureBox3.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox3.TabIndex = 39;
     this.pictureBox3.TabStop  = false;
     //
     // btnSearch
     //
     this.btnSearch.BackColor             = System.Drawing.Color.White;
     this.btnSearch.BackgroundImage       = global::WND.Properties.Resources.search;
     this.btnSearch.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.btnSearch.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btnSearch.FlatAppearance.BorderColor        = System.Drawing.Color.White;
     this.btnSearch.FlatAppearance.BorderSize         = 0;
     this.btnSearch.FlatAppearance.MouseDownBackColor = System.Drawing.Color.White;
     this.btnSearch.FlatAppearance.MouseOverBackColor = System.Drawing.Color.White;
     this.btnSearch.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnSearch.Font      = new System.Drawing.Font("IRANYekan", 9.749999F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.btnSearch.Location  = new System.Drawing.Point(611, 138);
     this.btnSearch.Name      = "btnSearch";
     this.btnSearch.Size      = new System.Drawing.Size(48, 33);
     this.btnSearch.TabIndex  = 7;
     this.btnSearch.UseVisualStyleBackColor = false;
     this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
     //
     // pictureBox4
     //
     this.pictureBox4.Image    = ((System.Drawing.Image)(resources.GetObject("pictureBox4.Image")));
     this.pictureBox4.Location = new System.Drawing.Point(208, 78);
     this.pictureBox4.Name     = "pictureBox4";
     this.pictureBox4.Size     = new System.Drawing.Size(213, 45);
     this.pictureBox4.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
     this.pictureBox4.TabIndex = 41;
     this.pictureBox4.TabStop  = false;
     //
     // txtCustomerFullName
     //
     this.txtCustomerFullName.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest;
     this.txtCustomerFullName.BackColor        = System.Drawing.Color.FromArgb(((int)(((byte)(244)))), ((int)(((byte)(244)))), ((int)(((byte)(245)))));
     this.txtCustomerFullName.BorderStyle      = System.Windows.Forms.BorderStyle.None;
     this.txtCustomerFullName.Font             = new System.Drawing.Font("IRANYekan", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.txtCustomerFullName.Location         = new System.Drawing.Point(282, 535);
     this.txtCustomerFullName.MaxLength        = 75;
     this.txtCustomerFullName.Multiline        = true;
     this.txtCustomerFullName.Name             = "txtCustomerFullName";
     this.txtCustomerFullName.Size             = new System.Drawing.Size(167, 28);
     this.txtCustomerFullName.TabIndex         = 9;
     //
     // txtCustomerPhone
     //
     this.txtCustomerPhone.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest;
     this.txtCustomerPhone.BackColor        = System.Drawing.Color.FromArgb(((int)(((byte)(244)))), ((int)(((byte)(244)))), ((int)(((byte)(245)))));
     this.txtCustomerPhone.BorderStyle      = System.Windows.Forms.BorderStyle.None;
     this.txtCustomerPhone.Font             = new System.Drawing.Font("IRANYekan", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.txtCustomerPhone.Location         = new System.Drawing.Point(507, 535);
     this.txtCustomerPhone.MaxLength        = 11;
     this.txtCustomerPhone.Multiline        = true;
     this.txtCustomerPhone.Name             = "txtCustomerPhone";
     this.txtCustomerPhone.Size             = new System.Drawing.Size(163, 28);
     this.txtCustomerPhone.TabIndex         = 10;
     //
     // txtCustomerAddress
     //
     this.txtCustomerAddress.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest;
     this.txtCustomerAddress.BackColor        = System.Drawing.Color.FromArgb(((int)(((byte)(244)))), ((int)(((byte)(244)))), ((int)(((byte)(245)))));
     this.txtCustomerAddress.BorderStyle      = System.Windows.Forms.BorderStyle.None;
     this.txtCustomerAddress.Font             = new System.Drawing.Font("IRANYekan", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.txtCustomerAddress.Location         = new System.Drawing.Point(282, 580);
     this.txtCustomerAddress.MaxLength        = 75;
     this.txtCustomerAddress.Multiline        = true;
     this.txtCustomerAddress.Name             = "txtCustomerAddress";
     this.txtCustomerAddress.Size             = new System.Drawing.Size(388, 28);
     this.txtCustomerAddress.TabIndex         = 11;
     //
     // txtSearch
     //
     this.txtSearch.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest;
     this.txtSearch.BackColor        = System.Drawing.Color.White;
     this.txtSearch.BorderStyle      = System.Windows.Forms.BorderStyle.None;
     this.txtSearch.Font             = new System.Drawing.Font("IRANYekan", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.txtSearch.Location         = new System.Drawing.Point(223, 138);
     this.txtSearch.MaxLength        = 75;
     this.txtSearch.Multiline        = true;
     this.txtSearch.Name             = "txtSearch";
     this.txtSearch.Size             = new System.Drawing.Size(384, 33);
     this.txtSearch.TabIndex         = 6;
     //
     // lblTotalCost
     //
     this.lblTotalCost.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(244)))), ((int)(((byte)(244)))), ((int)(((byte)(245)))));
     this.lblTotalCost.Font      = new System.Drawing.Font("IRANYekan", 7F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.lblTotalCost.Location  = new System.Drawing.Point(904, 288);
     this.lblTotalCost.Name      = "lblTotalCost";
     this.lblTotalCost.Size      = new System.Drawing.Size(89, 24);
     this.lblTotalCost.TabIndex  = 47;
     this.lblTotalCost.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // lblTotalServices
     //
     this.lblTotalServices.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(244)))), ((int)(((byte)(244)))), ((int)(((byte)(245)))));
     this.lblTotalServices.Font      = new System.Drawing.Font("IRANYekan", 7F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.lblTotalServices.Location  = new System.Drawing.Point(1033, 287);
     this.lblTotalServices.Name      = "lblTotalServices";
     this.lblTotalServices.Size      = new System.Drawing.Size(89, 24);
     this.lblTotalServices.TabIndex  = 48;
     this.lblTotalServices.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // lblLastCost
     //
     this.lblLastCost.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(221)))), ((int)(((byte)(130)))));
     this.lblLastCost.Font      = new System.Drawing.Font("IRANYekan", 25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblLastCost.ForeColor = System.Drawing.Color.Black;
     this.lblLastCost.Image     = ((System.Drawing.Image)(resources.GetObject("lblLastCost.Image")));
     this.lblLastCost.Location  = new System.Drawing.Point(752, 474);
     this.lblLastCost.Name      = "lblLastCost";
     this.lblLastCost.Size      = new System.Drawing.Size(78, 52);
     this.lblLastCost.TabIndex  = 49;
     this.lblLastCost.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // lblLastOrigin
     //
     this.lblLastOrigin.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(244)))), ((int)(((byte)(244)))), ((int)(((byte)(245)))));
     this.lblLastOrigin.Font      = new System.Drawing.Font("IRANYekan", 7F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.lblLastOrigin.Location  = new System.Drawing.Point(827, 584);
     this.lblLastOrigin.Name      = "lblLastOrigin";
     this.lblLastOrigin.Size      = new System.Drawing.Size(89, 20);
     this.lblLastOrigin.TabIndex  = 50;
     this.lblLastOrigin.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // lblLastDestination
     //
     this.lblLastDestination.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(244)))), ((int)(((byte)(244)))), ((int)(((byte)(245)))));
     this.lblLastDestination.Font      = new System.Drawing.Font("IRANYekan", 7F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.lblLastDestination.Location  = new System.Drawing.Point(827, 604);
     this.lblLastDestination.Name      = "lblLastDestination";
     this.lblLastDestination.Size      = new System.Drawing.Size(89, 20);
     this.lblLastDestination.TabIndex  = 51;
     this.lblLastDestination.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // btnCancel
     //
     this.btnCancel.BackColor             = System.Drawing.Color.White;
     this.btnCancel.BackgroundImage       = ((System.Drawing.Image)(resources.GetObject("btnCancel.BackgroundImage")));
     this.btnCancel.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
     this.btnCancel.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btnCancel.FlatAppearance.BorderColor        = System.Drawing.Color.White;
     this.btnCancel.FlatAppearance.BorderSize         = 0;
     this.btnCancel.FlatAppearance.MouseDownBackColor = System.Drawing.Color.White;
     this.btnCancel.FlatAppearance.MouseOverBackColor = System.Drawing.Color.White;
     this.btnCancel.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnCancel.Font      = new System.Drawing.Font("IRANYekan", 9.749999F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.btnCancel.Location  = new System.Drawing.Point(252, 624);
     this.btnCancel.Name      = "btnCancel";
     this.btnCancel.Size      = new System.Drawing.Size(128, 30);
     this.btnCancel.TabIndex  = 13;
     this.btnCancel.UseVisualStyleBackColor = false;
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // btnPrevious
     //
     this.btnPrevious.BackColor             = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(220)))), ((int)(((byte)(220)))));
     this.btnPrevious.BackgroundImage       = ((System.Drawing.Image)(resources.GetObject("btnPrevious.BackgroundImage")));
     this.btnPrevious.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
     this.btnPrevious.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btnPrevious.FlatAppearance.BorderColor        = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(220)))), ((int)(((byte)(220)))));
     this.btnPrevious.FlatAppearance.BorderSize         = 0;
     this.btnPrevious.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(220)))), ((int)(((byte)(220)))));
     this.btnPrevious.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(220)))), ((int)(((byte)(220)))));
     this.btnPrevious.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnPrevious.Font      = new System.Drawing.Font("IRANYekan", 9.749999F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.btnPrevious.Location  = new System.Drawing.Point(1250, 635);
     this.btnPrevious.Name      = "btnPrevious";
     this.btnPrevious.Size      = new System.Drawing.Size(31, 30);
     this.btnPrevious.TabIndex  = 14;
     this.btnPrevious.UseVisualStyleBackColor = false;
     this.btnPrevious.Click += new System.EventHandler(this.btnPrevious_Click);
     //
     // btnNext
     //
     this.btnNext.BackColor             = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(220)))), ((int)(((byte)(220)))));
     this.btnNext.BackgroundImage       = ((System.Drawing.Image)(resources.GetObject("btnNext.BackgroundImage")));
     this.btnNext.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
     this.btnNext.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btnNext.FlatAppearance.BorderColor        = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(220)))), ((int)(((byte)(220)))));
     this.btnNext.FlatAppearance.BorderSize         = 0;
     this.btnNext.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(220)))), ((int)(((byte)(220)))));
     this.btnNext.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(220)))), ((int)(((byte)(220)))));
     this.btnNext.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnNext.Font      = new System.Drawing.Font("IRANYekan", 9.749999F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.btnNext.Location  = new System.Drawing.Point(1212, 635);
     this.btnNext.Name      = "btnNext";
     this.btnNext.Size      = new System.Drawing.Size(31, 30);
     this.btnNext.TabIndex  = 15;
     this.btnNext.UseVisualStyleBackColor = false;
     this.btnNext.Click += new System.EventHandler(this.btnNext_Click);
     //
     // lbl1
     //
     this.lbl1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(220)))), ((int)(((byte)(220)))));
     this.lbl1.Font      = new System.Drawing.Font("IRANYekan", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.lbl1.Location  = new System.Drawing.Point(872, 203);
     this.lbl1.Name      = "lbl1";
     this.lbl1.Size      = new System.Drawing.Size(106, 47);
     this.lbl1.TabIndex  = 55;
     this.lbl1.Text      = "مسافرت‌های";
     this.lbl1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // gridCustomers
     //
     this.gridCustomers.Cursor   = System.Windows.Forms.Cursors.Hand;
     this.gridCustomers.Font     = new System.Drawing.Font("IRANYekan", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.gridCustomers.Location = new System.Drawing.Point(212, 221);
     //
     //
     //
     this.gridCustomers.MasterTemplate.AllowAddNewRow      = false;
     this.gridCustomers.MasterTemplate.AllowColumnReorder  = false;
     this.gridCustomers.MasterTemplate.AllowDragToGroup    = false;
     this.gridCustomers.MasterTemplate.AllowEditRow        = false;
     this.gridCustomers.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     gridViewCommandColumn11.AllowHide  = false;
     gridViewCommandColumn11.HeaderText = "ویرایش";
     gridViewCommandColumn11.Image      = global::WND.Properties.Resources.Icon_feather_edit;
     gridViewCommandColumn11.MaxWidth   = 60;
     gridViewCommandColumn11.Name       = "GridEditBtn";
     gridViewCommandColumn11.Width      = 60;
     gridViewCommandColumn12.AllowHide  = false;
     gridViewCommandColumn12.HeaderText = "حذف";
     gridViewCommandColumn12.Image      = global::WND.Properties.Resources.Icon_material_delete_forever;
     gridViewCommandColumn12.MaxWidth   = 50;
     gridViewCommandColumn12.Name       = "GridDeleteBtn";
     this.gridCustomers.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewCommandColumn11,
         gridViewCommandColumn12
     });
     this.gridCustomers.MasterTemplate.EnableGrouping = false;
     this.gridCustomers.MasterTemplate.SelectionMode  = Telerik.WinControls.UI.GridViewSelectionMode.None;
     this.gridCustomers.MasterTemplate.ViewDefinition = tableViewDefinition6;
     this.gridCustomers.Name     = "gridCustomers";
     this.gridCustomers.ReadOnly = true;
     //
     //
     //
     this.gridCustomers.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.Auto;
     this.gridCustomers.Size      = new System.Drawing.Size(488, 271);
     this.gridCustomers.TabIndex  = 8;
     this.gridCustomers.ThemeName = "Material";
     //
     // lblCustomerName
     //
     this.lblCustomerName.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(220)))), ((int)(((byte)(220)))));
     this.lblCustomerName.Font      = new System.Drawing.Font("IRANYekan", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.lblCustomerName.Location  = new System.Drawing.Point(973, 203);
     this.lblCustomerName.Name      = "lblCustomerName";
     this.lblCustomerName.Size      = new System.Drawing.Size(212, 47);
     this.lblCustomerName.TabIndex  = 63;
     this.lblCustomerName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // frmCustomers
     //
     this.AcceptButton        = this.btnSave;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1370, 749);
     this.Controls.Add(this.lblCustomerName);
     this.Controls.Add(this.gridCustomers);
     this.Controls.Add(this.lbl1);
     this.Controls.Add(this.btnNext);
     this.Controls.Add(this.btnPrevious);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.lblLastDestination);
     this.Controls.Add(this.lblLastOrigin);
     this.Controls.Add(this.lblLastCost);
     this.Controls.Add(this.lblTotalServices);
     this.Controls.Add(this.lblTotalCost);
     this.Controls.Add(this.txtSearch);
     this.Controls.Add(this.txtCustomerAddress);
     this.Controls.Add(this.txtCustomerPhone);
     this.Controls.Add(this.txtCustomerFullName);
     this.Controls.Add(this.pictureBox4);
     this.Controls.Add(this.btnSearch);
     this.Controls.Add(this.pictureBox3);
     this.Controls.Add(this.btnSave);
     this.Controls.Add(this.pictureBox2);
     this.Location    = new System.Drawing.Point(0, 0);
     this.MaximizeBox = false;
     this.Name        = "frmCustomers";
     this.ShowIcon    = false;
     this.Text        = "مسافران";
     this.Controls.SetChildIndex(this.pictureBox2, 0);
     this.Controls.SetChildIndex(this.btnSave, 0);
     this.Controls.SetChildIndex(this.pictureBox3, 0);
     this.Controls.SetChildIndex(this.btnSearch, 0);
     this.Controls.SetChildIndex(this.pictureBox4, 0);
     this.Controls.SetChildIndex(this.txtCustomerFullName, 0);
     this.Controls.SetChildIndex(this.txtCustomerPhone, 0);
     this.Controls.SetChildIndex(this.txtCustomerAddress, 0);
     this.Controls.SetChildIndex(this.txtSearch, 0);
     this.Controls.SetChildIndex(this.lblTotalCost, 0);
     this.Controls.SetChildIndex(this.lblTotalServices, 0);
     this.Controls.SetChildIndex(this.lblLastCost, 0);
     this.Controls.SetChildIndex(this.lblLastOrigin, 0);
     this.Controls.SetChildIndex(this.lblLastDestination, 0);
     this.Controls.SetChildIndex(this.btnCancel, 0);
     this.Controls.SetChildIndex(this.btnPrevious, 0);
     this.Controls.SetChildIndex(this.btnNext, 0);
     this.Controls.SetChildIndex(this.lbl1, 0);
     this.Controls.SetChildIndex(this.btnDashboard, 0);
     this.Controls.SetChildIndex(this.btnDrivers, 0);
     this.Controls.SetChildIndex(this.btnServices, 0);
     this.Controls.SetChildIndex(this.btnPaths, 0);
     this.Controls.SetChildIndex(this.btnExit, 0);
     this.Controls.SetChildIndex(this.gridCustomers, 0);
     this.Controls.SetChildIndex(this.lblCustomerName, 0);
     //((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
     //((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit();
     //((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).EndInit();
     //((System.ComponentModel.ISupportInitialize)(this.gridCustomers.MasterTemplate)).EndInit();
     //((System.ComponentModel.ISupportInitialize)(this.gridCustomers)).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(FrmAdmin));
            Telerik.WinControls.UI.GridViewDecimalColumn gridViewDecimalColumn1 = new Telerik.WinControls.UI.GridViewDecimalColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn2 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewDateTimeColumn gridViewDateTimeColumn1 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
            Telerik.WinControls.UI.GridViewDateTimeColumn gridViewDateTimeColumn2 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn3 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewDecimalColumn gridViewDecimalColumn2 = new Telerik.WinControls.UI.GridViewDecimalColumn();
            Telerik.WinControls.UI.GridViewDecimalColumn gridViewDecimalColumn3 = new Telerik.WinControls.UI.GridViewDecimalColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn4 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn1 = new Telerik.WinControls.UI.GridViewCommandColumn();
            Telerik.WinControls.Data.SortDescriptor sortDescriptor1 = new Telerik.WinControls.Data.SortDescriptor();
            this.telerikMetroTheme1 = new Telerik.WinControls.Themes.TelerikMetroTheme();
            this.radButtonElement1 = new Telerik.WinControls.UI.RadButtonElement();
            this.toolStrip1 = new System.Windows.Forms.ToolStrip();
            this.toolStripDropDownButton1 = new System.Windows.Forms.ToolStripDropDownButton();
            this.ProjectAddBtn = new System.Windows.Forms.ToolStripMenuItem();
            this.ProjectMangBtn = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
            this.EmployeeAddBtn = new System.Windows.Forms.ToolStripDropDownButton();
            this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
            this.EmployeeMangBtn = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
            this.toolStripDropDownButton2 = new System.Windows.Forms.ToolStripDropDownButton();
            this.FinanAddBtn = new System.Windows.Forms.ToolStripMenuItem();
            this.FinanMangBtn = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
            this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem3 = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
            this.UserstoolStripDropDownButton3 = new System.Windows.Forms.ToolStripDropDownButton();
            this.UserNameEditBtn = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator7 = new System.Windows.Forms.ToolStripSeparator();
            this.AddUserToProjectBtn = new System.Windows.Forms.ToolStripMenuItem();
            this.UserProjectManageBtn = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator();
            this.UserMangBtn = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator8 = new System.Windows.Forms.ToolStripSeparator();
            this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
            this.toolStripSeparator9 = new System.Windows.Forms.ToolStripSeparator();
            this.ExitBtn = new System.Windows.Forms.ToolStripButton();
            this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
            this.radGridView1 = new Telerik.WinControls.UI.RadGridView();
            this.statusStrip1 = new System.Windows.Forms.StatusStrip();
            this.StatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
            this.radGroupBox1 = new Telerik.WinControls.UI.RadGroupBox();
            this.toolStrip1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView1.MasterTemplate)).BeginInit();
            this.statusStrip1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).BeginInit();
            this.radGroupBox1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            this.SuspendLayout();
            // 
            // radButtonElement1
            // 
            this.radButtonElement1.AccessibleDescription = "New button";
            this.radButtonElement1.AccessibleName = "New button";
            this.radButtonElement1.Name = "radButtonElement1";
            this.radButtonElement1.Text = "New button";
            // 
            // toolStrip1
            // 
            this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolStripDropDownButton1,
            this.toolStripSeparator1,
            this.EmployeeAddBtn,
            this.toolStripSeparator3,
            this.toolStripDropDownButton2,
            this.toolStripSeparator5,
            this.UserstoolStripDropDownButton3,
            this.toolStripSeparator8,
            this.toolStripButton1,
            this.toolStripSeparator9,
            this.ExitBtn,
            this.toolStripSeparator4});
            this.toolStrip1.Location = new System.Drawing.Point(0, 0);
            this.toolStrip1.Name = "toolStrip1";
            this.toolStrip1.Size = new System.Drawing.Size(1358, 39);
            this.toolStrip1.TabIndex = 5;
            this.toolStrip1.Text = "toolStrip1";
            // 
            // toolStripDropDownButton1
            // 
            this.toolStripDropDownButton1.BackColor = System.Drawing.Color.Transparent;
            this.toolStripDropDownButton1.BackgroundImage = global::UcasProWindowsForm.Properties.Resources.Green;
            this.toolStripDropDownButton1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.toolStripDropDownButton1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.ProjectAddBtn,
            this.ProjectMangBtn});
            this.toolStripDropDownButton1.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.toolStripDropDownButton1.ForeColor = System.Drawing.SystemColors.ActiveCaptionText;
            this.toolStripDropDownButton1.Image = global::UcasProWindowsForm.Properties.Resources.Project1;
            this.toolStripDropDownButton1.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
            this.toolStripDropDownButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripDropDownButton1.Name = "toolStripDropDownButton1";
            this.toolStripDropDownButton1.Size = new System.Drawing.Size(99, 36);
            this.toolStripDropDownButton1.Text = "المشاريع";
            // 
            // ProjectAddBtn
            // 
            this.ProjectAddBtn.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.ProjectAddBtn.Image = global::UcasProWindowsForm.Properties.Resources.AddPro;
            this.ProjectAddBtn.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
            this.ProjectAddBtn.Name = "ProjectAddBtn";
            this.ProjectAddBtn.Size = new System.Drawing.Size(153, 38);
            this.ProjectAddBtn.Text = "اضافة مشروع";
            this.ProjectAddBtn.Click += new System.EventHandler(this.ProjectAddBtn_Click);
            // 
            // ProjectMangBtn
            // 
            this.ProjectMangBtn.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.ProjectMangBtn.Image = global::UcasProWindowsForm.Properties.Resources.EditPro;
            this.ProjectMangBtn.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
            this.ProjectMangBtn.Name = "ProjectMangBtn";
            this.ProjectMangBtn.Size = new System.Drawing.Size(153, 38);
            this.ProjectMangBtn.Text = "إدارة المشاريع";
            this.ProjectMangBtn.Click += new System.EventHandler(this.ProjectMangBtn_Click);
            // 
            // toolStripSeparator1
            // 
            this.toolStripSeparator1.Name = "toolStripSeparator1";
            this.toolStripSeparator1.Size = new System.Drawing.Size(6, 39);
            // 
            // EmployeeAddBtn
            // 
            this.EmployeeAddBtn.BackColor = System.Drawing.Color.White;
            this.EmployeeAddBtn.BackgroundImage = global::UcasProWindowsForm.Properties.Resources.blue;
            this.EmployeeAddBtn.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.EmployeeAddBtn.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolStripMenuItem1,
            this.EmployeeMangBtn});
            this.EmployeeAddBtn.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.EmployeeAddBtn.Image = global::UcasProWindowsForm.Properties.Resources.Emplyee;
            this.EmployeeAddBtn.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
            this.EmployeeAddBtn.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.EmployeeAddBtn.Name = "EmployeeAddBtn";
            this.EmployeeAddBtn.Size = new System.Drawing.Size(94, 36);
            this.EmployeeAddBtn.Text = "الموظفين";
            // 
            // toolStripMenuItem1
            // 
            this.toolStripMenuItem1.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.toolStripMenuItem1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripMenuItem1.Image")));
            this.toolStripMenuItem1.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
            this.toolStripMenuItem1.Name = "toolStripMenuItem1";
            this.toolStripMenuItem1.Size = new System.Drawing.Size(154, 32);
            this.toolStripMenuItem1.Text = "اضافة موظف";
            this.toolStripMenuItem1.Click += new System.EventHandler(this.EmployeeAddBtn_Click);
            // 
            // EmployeeMangBtn
            // 
            this.EmployeeMangBtn.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.EmployeeMangBtn.Image = ((System.Drawing.Image)(resources.GetObject("EmployeeMangBtn.Image")));
            this.EmployeeMangBtn.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
            this.EmployeeMangBtn.Name = "EmployeeMangBtn";
            this.EmployeeMangBtn.Size = new System.Drawing.Size(154, 32);
            this.EmployeeMangBtn.Text = "ادارة الموظفين";
            this.EmployeeMangBtn.Click += new System.EventHandler(this.EmployeeMangBtn_Click);
            // 
            // toolStripSeparator3
            // 
            this.toolStripSeparator3.Name = "toolStripSeparator3";
            this.toolStripSeparator3.Size = new System.Drawing.Size(6, 39);
            // 
            // toolStripDropDownButton2
            // 
            this.toolStripDropDownButton2.BackColor = System.Drawing.Color.White;
            this.toolStripDropDownButton2.BackgroundImage = global::UcasProWindowsForm.Properties.Resources.Orange;
            this.toolStripDropDownButton2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.toolStripDropDownButton2.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.FinanAddBtn,
            this.FinanMangBtn,
            this.toolStripSeparator2,
            this.toolStripMenuItem2,
            this.toolStripMenuItem3});
            this.toolStripDropDownButton2.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.toolStripDropDownButton2.Image = global::UcasProWindowsForm.Properties.Resources.Supplier;
            this.toolStripDropDownButton2.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
            this.toolStripDropDownButton2.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripDropDownButton2.Name = "toolStripDropDownButton2";
            this.toolStripDropDownButton2.Size = new System.Drawing.Size(152, 36);
            this.toolStripDropDownButton2.Text = "الممولين والموردين";
            // 
            // FinanAddBtn
            // 
            this.FinanAddBtn.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.FinanAddBtn.Image = global::UcasProWindowsForm.Properties.Resources.Donorsadd;
            this.FinanAddBtn.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
            this.FinanAddBtn.Name = "FinanAddBtn";
            this.FinanAddBtn.Size = new System.Drawing.Size(153, 38);
            this.FinanAddBtn.Text = "اضافة ممول";
            this.FinanAddBtn.Click += new System.EventHandler(this.FinanAddBtn_Click);
            // 
            // FinanMangBtn
            // 
            this.FinanMangBtn.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.FinanMangBtn.Image = global::UcasProWindowsForm.Properties.Resources.Donors;
            this.FinanMangBtn.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
            this.FinanMangBtn.Name = "FinanMangBtn";
            this.FinanMangBtn.Size = new System.Drawing.Size(153, 38);
            this.FinanMangBtn.Text = "ادارة الممولين";
            this.FinanMangBtn.Click += new System.EventHandler(this.FinanMangBtn_Click);
            // 
            // toolStripSeparator2
            // 
            this.toolStripSeparator2.Name = "toolStripSeparator2";
            this.toolStripSeparator2.Size = new System.Drawing.Size(150, 6);
            // 
            // toolStripMenuItem2
            // 
            this.toolStripMenuItem2.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.toolStripMenuItem2.Image = global::UcasProWindowsForm.Properties.Resources.AddSupp;
            this.toolStripMenuItem2.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
            this.toolStripMenuItem2.Name = "toolStripMenuItem2";
            this.toolStripMenuItem2.Size = new System.Drawing.Size(153, 38);
            this.toolStripMenuItem2.Text = "اضافة مورد";
            this.toolStripMenuItem2.Click += new System.EventHandler(this.SuppAddBtn_Click);
            // 
            // toolStripMenuItem3
            // 
            this.toolStripMenuItem3.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.toolStripMenuItem3.Image = global::UcasProWindowsForm.Properties.Resources.EditSupp;
            this.toolStripMenuItem3.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
            this.toolStripMenuItem3.Name = "toolStripMenuItem3";
            this.toolStripMenuItem3.Size = new System.Drawing.Size(153, 38);
            this.toolStripMenuItem3.Text = "ادارة الموردين";
            this.toolStripMenuItem3.Click += new System.EventHandler(this.SupmanageBtn_Click);
            // 
            // toolStripSeparator5
            // 
            this.toolStripSeparator5.Name = "toolStripSeparator5";
            this.toolStripSeparator5.Size = new System.Drawing.Size(6, 39);
            // 
            // UserstoolStripDropDownButton3
            // 
            this.UserstoolStripDropDownButton3.BackgroundImage = global::UcasProWindowsForm.Properties.Resources._61;
            this.UserstoolStripDropDownButton3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.UserstoolStripDropDownButton3.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.UserNameEditBtn,
            this.toolStripSeparator7,
            this.AddUserToProjectBtn,
            this.UserProjectManageBtn,
            this.toolStripSeparator6,
            this.UserMangBtn});
            this.UserstoolStripDropDownButton3.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.UserstoolStripDropDownButton3.Image = ((System.Drawing.Image)(resources.GetObject("UserstoolStripDropDownButton3.Image")));
            this.UserstoolStripDropDownButton3.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
            this.UserstoolStripDropDownButton3.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.UserstoolStripDropDownButton3.Name = "UserstoolStripDropDownButton3";
            this.UserstoolStripDropDownButton3.Size = new System.Drawing.Size(145, 36);
            this.UserstoolStripDropDownButton3.Text = "ادارة المستخدمين";
            // 
            // UserNameEditBtn
            // 
            this.UserNameEditBtn.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.UserNameEditBtn.Name = "UserNameEditBtn";
            this.UserNameEditBtn.Size = new System.Drawing.Size(215, 22);
            this.UserNameEditBtn.Text = "تغير اسم المستخدم وكلمة المرور";
            this.UserNameEditBtn.Click += new System.EventHandler(this.UserNameEditBtn_Click);
            // 
            // toolStripSeparator7
            // 
            this.toolStripSeparator7.Name = "toolStripSeparator7";
            this.toolStripSeparator7.Size = new System.Drawing.Size(212, 6);
            // 
            // AddUserToProjectBtn
            // 
            this.AddUserToProjectBtn.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.AddUserToProjectBtn.Name = "AddUserToProjectBtn";
            this.AddUserToProjectBtn.Size = new System.Drawing.Size(215, 22);
            this.AddUserToProjectBtn.Text = "اضافة مستخدم لمشروع";
            this.AddUserToProjectBtn.Click += new System.EventHandler(this.AddUserToProjectBtn_Click);
            // 
            // UserProjectManageBtn
            // 
            this.UserProjectManageBtn.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.UserProjectManageBtn.Name = "UserProjectManageBtn";
            this.UserProjectManageBtn.Size = new System.Drawing.Size(215, 22);
            this.UserProjectManageBtn.Text = "ادارة مستخدمين المشروع";
            this.UserProjectManageBtn.Click += new System.EventHandler(this.UserProjectManageBtn_Click);
            // 
            // toolStripSeparator6
            // 
            this.toolStripSeparator6.Name = "toolStripSeparator6";
            this.toolStripSeparator6.Size = new System.Drawing.Size(212, 6);
            // 
            // UserMangBtn
            // 
            this.UserMangBtn.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.UserMangBtn.Name = "UserMangBtn";
            this.UserMangBtn.Size = new System.Drawing.Size(215, 22);
            this.UserMangBtn.Text = "ادارة صلاحيات المستخدمين";
            this.UserMangBtn.Click += new System.EventHandler(this.UserMangBtn_Click_1);
            // 
            // toolStripSeparator8
            // 
            this.toolStripSeparator8.Name = "toolStripSeparator8";
            this.toolStripSeparator8.Size = new System.Drawing.Size(6, 39);
            // 
            // toolStripButton1
            // 
            this.toolStripButton1.BackgroundImage = global::UcasProWindowsForm.Properties.Resources.Yalow;
            this.toolStripButton1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.toolStripButton1.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.toolStripButton1.Image = global::UcasProWindowsForm.Properties.Resources.RefreshWhite1;
            this.toolStripButton1.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
            this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripButton1.Name = "toolStripButton1";
            this.toolStripButton1.Size = new System.Drawing.Size(77, 36);
            this.toolStripButton1.Text = "تحديث ";
            this.toolStripButton1.Click += new System.EventHandler(this.RefreshBtn_Click);
            // 
            // toolStripSeparator9
            // 
            this.toolStripSeparator9.Name = "toolStripSeparator9";
            this.toolStripSeparator9.Size = new System.Drawing.Size(6, 39);
            // 
            // ExitBtn
            // 
            this.ExitBtn.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
            this.ExitBtn.Image = global::UcasProWindowsForm.Properties.Resources.Exit;
            this.ExitBtn.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
            this.ExitBtn.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.ExitBtn.Name = "ExitBtn";
            this.ExitBtn.Size = new System.Drawing.Size(113, 36);
            this.ExitBtn.Text = "تسجيل خروج";
            this.ExitBtn.Click += new System.EventHandler(this.ExitBtn_Click);
            // 
            // toolStripSeparator4
            // 
            this.toolStripSeparator4.Name = "toolStripSeparator4";
            this.toolStripSeparator4.Size = new System.Drawing.Size(6, 39);
            // 
            // radGridView1
            // 
            this.radGridView1.BackColor = System.Drawing.SystemColors.Control;
            this.radGridView1.Cursor = System.Windows.Forms.Cursors.Default;
            this.radGridView1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.radGridView1.EnableCustomFiltering = true;
            this.radGridView1.Font = new System.Drawing.Font("Segoe UI", 9F);
            this.radGridView1.ForeColor = System.Drawing.SystemColors.ControlText;
            this.radGridView1.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.radGridView1.Location = new System.Drawing.Point(2, 18);
            // 
            // radGridView1
            // 
            this.radGridView1.MasterTemplate.AllowAddNewRow = false;
            this.radGridView1.MasterTemplate.AllowEditRow = false;
            this.radGridView1.MasterTemplate.AllowSearchRow = true;
            this.radGridView1.MasterTemplate.AutoGenerateColumns = false;
            this.radGridView1.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
            gridViewDecimalColumn1.EnableExpressionEditor = false;
            gridViewDecimalColumn1.FieldName = "ID";
            gridViewDecimalColumn1.HeaderText = "الرقم";
            gridViewDecimalColumn1.IsAutoGenerated = true;
            gridViewDecimalColumn1.IsVisible = false;
            gridViewDecimalColumn1.Name = "ID";
            gridViewDecimalColumn1.SortOrder = Telerik.WinControls.UI.RadSortOrder.Ascending;
            gridViewDecimalColumn1.Width = 29;
            gridViewTextBoxColumn1.EnableExpressionEditor = false;
            gridViewTextBoxColumn1.FieldName = "ProjectName";
            gridViewTextBoxColumn1.HeaderText = "اسم المشروع";
            gridViewTextBoxColumn1.IsAutoGenerated = true;
            gridViewTextBoxColumn1.Name = "ProjectName";
            gridViewTextBoxColumn1.Width = 228;
            gridViewTextBoxColumn2.EnableExpressionEditor = false;
            gridViewTextBoxColumn2.FieldName = "ProjectDescription";
            gridViewTextBoxColumn2.HeaderText = "الوصف";
            gridViewTextBoxColumn2.IsAutoGenerated = true;
            gridViewTextBoxColumn2.Name = "ProjectDescription";
            gridViewTextBoxColumn2.Width = 324;
            gridViewDateTimeColumn1.CustomFormat = "dd/MM/yyyy";
            gridViewDateTimeColumn1.DateTimeKind = System.DateTimeKind.Local;
            gridViewDateTimeColumn1.EnableExpressionEditor = false;
            gridViewDateTimeColumn1.ExcelExportType = Telerik.WinControls.UI.Export.DisplayFormatType.GeneralDate;
            gridViewDateTimeColumn1.FieldName = "StartDate";
            gridViewDateTimeColumn1.FilteringMode = Telerik.WinControls.UI.GridViewTimeFilteringMode.Date;
            gridViewDateTimeColumn1.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
            gridViewDateTimeColumn1.HeaderText = "تاريخ البداية";
            gridViewDateTimeColumn1.IsAutoGenerated = true;
            gridViewDateTimeColumn1.Name = "StartDate";
            gridViewDateTimeColumn1.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            gridViewDateTimeColumn1.Width = 138;
            gridViewDateTimeColumn2.CustomFormat = "dd/MM/yyyy";
            gridViewDateTimeColumn2.DateTimeKind = System.DateTimeKind.Local;
            gridViewDateTimeColumn2.EnableExpressionEditor = false;
            gridViewDateTimeColumn2.ExcelExportType = Telerik.WinControls.UI.Export.DisplayFormatType.GeneralDate;
            gridViewDateTimeColumn2.FieldName = "EndDate";
            gridViewDateTimeColumn2.FilteringMode = Telerik.WinControls.UI.GridViewTimeFilteringMode.Date;
            gridViewDateTimeColumn2.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
            gridViewDateTimeColumn2.HeaderText = "تاريخ الانتهاء";
            gridViewDateTimeColumn2.IsAutoGenerated = true;
            gridViewDateTimeColumn2.Name = "EndDate";
            gridViewDateTimeColumn2.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            gridViewDateTimeColumn2.Width = 189;
            gridViewTextBoxColumn3.EnableExpressionEditor = false;
            gridViewTextBoxColumn3.FieldName = "Status";
            gridViewTextBoxColumn3.HeaderText = "الحالة";
            gridViewTextBoxColumn3.IsAutoGenerated = true;
            gridViewTextBoxColumn3.Name = "Status";
            gridViewTextBoxColumn3.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            gridViewTextBoxColumn3.Width = 103;
            gridViewDecimalColumn2.EnableExpressionEditor = false;
            gridViewDecimalColumn2.FieldName = "progress";
            gridViewDecimalColumn2.HeaderText = "الانجاز%";
            gridViewDecimalColumn2.IsAutoGenerated = true;
            gridViewDecimalColumn2.Name = "progress";
            gridViewDecimalColumn2.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            gridViewDecimalColumn2.Width = 124;
            gridViewDecimalColumn3.EnableExpressionEditor = false;
            gridViewDecimalColumn3.FieldName = "TotalCost";
            gridViewDecimalColumn3.HeaderText = "المبلغ المخصص";
            gridViewDecimalColumn3.IsAutoGenerated = true;
            gridViewDecimalColumn3.Name = "TotalCost";
            gridViewDecimalColumn3.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            gridViewDecimalColumn3.Width = 110;
            gridViewTextBoxColumn4.EnableExpressionEditor = false;
            gridViewTextBoxColumn4.FieldName = "Coin";
            gridViewTextBoxColumn4.HeaderText = "العملة";
            gridViewTextBoxColumn4.IsAutoGenerated = true;
            gridViewTextBoxColumn4.Name = "Coin";
            gridViewTextBoxColumn4.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            gridViewTextBoxColumn4.Width = 66;
            gridViewCommandColumn1.EnableExpressionEditor = false;
            gridViewCommandColumn1.HeaderText = "دخول ";
            gridViewCommandColumn1.Image = ((System.Drawing.Image)(resources.GetObject("gridViewCommandColumn1.Image")));
            gridViewCommandColumn1.ImageLayout = System.Windows.Forms.ImageLayout.Zoom;
            gridViewCommandColumn1.MaxWidth = 60;
            gridViewCommandColumn1.MinWidth = 60;
            gridViewCommandColumn1.Name = "EnterBtn";
            gridViewCommandColumn1.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
            gridViewCommandColumn1.Width = 60;
            this.radGridView1.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewDecimalColumn1,
            gridViewTextBoxColumn1,
            gridViewTextBoxColumn2,
            gridViewDateTimeColumn1,
            gridViewDateTimeColumn2,
            gridViewTextBoxColumn3,
            gridViewDecimalColumn2,
            gridViewDecimalColumn3,
            gridViewTextBoxColumn4,
            gridViewCommandColumn1});
            this.radGridView1.MasterTemplate.EnableCustomFiltering = true;
            this.radGridView1.MasterTemplate.EnableFiltering = true;
            this.radGridView1.MasterTemplate.EnableSorting = false;
            sortDescriptor1.PropertyName = "ID";
            this.radGridView1.MasterTemplate.SortDescriptors.AddRange(new Telerik.WinControls.Data.SortDescriptor[] {
            sortDescriptor1});
            this.radGridView1.Name = "radGridView1";
            this.radGridView1.ReadOnly = true;
            this.radGridView1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.radGridView1.Size = new System.Drawing.Size(1354, 612);
            this.radGridView1.TabIndex = 0;
            this.radGridView1.Text = "radGridView1";
            this.radGridView1.ThemeName = "TelerikMetro";
            this.radGridView1.CellFormatting += new Telerik.WinControls.UI.CellFormattingEventHandler(this.radGridView1_CellFormatting);
            this.radGridView1.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.radGridView1_CommandCellClick);
            // 
            // statusStrip1
            // 
            this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.StatusLabel1});
            this.statusStrip1.Location = new System.Drawing.Point(0, 671);
            this.statusStrip1.Name = "statusStrip1";
            this.statusStrip1.Size = new System.Drawing.Size(1358, 22);
            this.statusStrip1.TabIndex = 7;
            this.statusStrip1.Text = "statusStrip1";
            // 
            // StatusLabel1
            // 
            this.StatusLabel1.Name = "StatusLabel1";
            this.StatusLabel1.Size = new System.Drawing.Size(12, 17);
            this.StatusLabel1.Text = "-";
            // 
            // radGroupBox1
            // 
            this.radGroupBox1.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox1.Controls.Add(this.radGridView1);
            this.radGroupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.radGroupBox1.GroupBoxStyle = Telerik.WinControls.UI.RadGroupBoxStyle.Office;
            this.radGroupBox1.HeaderAlignment = Telerik.WinControls.UI.HeaderAlignment.Far;
            this.radGroupBox1.HeaderText = "قائمة المشاريع";
            this.radGroupBox1.Location = new System.Drawing.Point(0, 39);
            this.radGroupBox1.Name = "radGroupBox1";
            this.radGroupBox1.Size = new System.Drawing.Size(1358, 632);
            this.radGroupBox1.TabIndex = 8;
            this.radGroupBox1.Text = "قائمة المشاريع";
            this.radGroupBox1.ThemeName = "TelerikMetro";
            // 
            // FrmAdmin
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1358, 693);
            this.Controls.Add(this.radGroupBox1);
            this.Controls.Add(this.statusStrip1);
            this.Controls.Add(this.toolStrip1);
            this.Name = "FrmAdmin";
            this.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            // 
            // 
            // 
            this.RootElement.ApplyShapeToControl = true;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "القائمة الرئيسية";
            this.ThemeName = "TelerikMetro";
            this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
            this.Activated += new System.EventHandler(this.FrmAdmin_Activated);
            this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.FrmAdmin_FormClosed);
            this.Load += new System.EventHandler(this.FrmAdmin_Load);
            this.toolStrip1.ResumeLayout(false);
            this.toolStrip1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView1.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).EndInit();
            this.statusStrip1.ResumeLayout(false);
            this.statusStrip1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).EndInit();
            this.radGroupBox1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this)).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()
 {
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn1  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn2  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn3  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn1 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn4  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewCommandColumn  gridViewCommandColumn1  = new Telerik.WinControls.UI.GridViewCommandColumn();
     this.radLabel2          = new Telerik.WinControls.UI.RadLabel();
     this.TxtMovil           = new Telerik.WinControls.UI.RadTextBox();
     this.BtnCrear           = new System.Windows.Forms.Button();
     this.DgvTalleresMoviles = new Telerik.WinControls.UI.RadGridView();
     this.BtnLimpiar         = new Telerik.WinControls.UI.RadButton();
     this.panel1             = new System.Windows.Forms.Panel();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtMovil)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DgvTalleresMoviles)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DgvTalleresMoviles.MasterTemplate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BtnLimpiar)).BeginInit();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // radLabel2
     //
     this.radLabel2.Font     = new System.Drawing.Font("Consolas", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel2.Location = new System.Drawing.Point(3, 15);
     this.radLabel2.Name     = "radLabel2";
     this.radLabel2.Size     = new System.Drawing.Size(70, 25);
     this.radLabel2.TabIndex = 23;
     this.radLabel2.Text     = "Movil:";
     //
     // TxtMovil
     //
     this.TxtMovil.Font         = new System.Drawing.Font("Consolas", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.TxtMovil.Location     = new System.Drawing.Point(79, 12);
     this.TxtMovil.Name         = "TxtMovil";
     this.TxtMovil.Size         = new System.Drawing.Size(357, 28);
     this.TxtMovil.TabIndex     = 17;
     this.TxtMovil.TabStop      = false;
     this.TxtMovil.ThemeName    = "TelerikMetro";
     this.TxtMovil.TextChanged += new System.EventHandler(this.TxtMovil_TextChanged);
     //
     // BtnCrear
     //
     this.BtnCrear.BackColor = System.Drawing.Color.Yellow;
     this.BtnCrear.FlatAppearance.BorderSize = 0;
     this.BtnCrear.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.BtnCrear.Location  = new System.Drawing.Point(12, -6);
     this.BtnCrear.Name      = "BtnCrear";
     this.BtnCrear.Size      = new System.Drawing.Size(153, 41);
     this.BtnCrear.TabIndex  = 11;
     this.BtnCrear.Text      = "Crear";
     this.BtnCrear.UseVisualStyleBackColor = false;
     this.BtnCrear.Click += new System.EventHandler(this.BtnCrear_Click);
     //
     // DgvTalleresMoviles
     //
     this.DgvTalleresMoviles.Location = new System.Drawing.Point(12, 96);
     //
     // DgvTalleresMoviles
     //
     this.DgvTalleresMoviles.MasterTemplate.AllowAddNewRow   = false;
     this.DgvTalleresMoviles.MasterTemplate.AllowDeleteRow   = false;
     this.DgvTalleresMoviles.MasterTemplate.AllowDragToGroup = false;
     gridViewTextBoxColumn1.FieldName    = "MovilNumero";
     gridViewTextBoxColumn1.FormatString = "";
     gridViewTextBoxColumn1.HeaderText   = "Movil";
     gridViewTextBoxColumn1.Name         = "Movil";
     gridViewTextBoxColumn1.ReadOnly     = true;
     gridViewTextBoxColumn1.Width        = 70;
     gridViewTextBoxColumn2.FieldName    = "FechaDesde";
     gridViewTextBoxColumn2.FormatString = "";
     gridViewTextBoxColumn2.HeaderText   = "Fecha Desde";
     gridViewTextBoxColumn2.Name         = "FechaDesde";
     gridViewTextBoxColumn2.ReadOnly     = true;
     gridViewTextBoxColumn2.Width        = 150;
     gridViewTextBoxColumn3.FieldName    = "FechaHasta";
     gridViewTextBoxColumn3.FormatString = "";
     gridViewTextBoxColumn3.HeaderText   = "Fecha Hasta";
     gridViewTextBoxColumn3.Name         = "FechaHasta";
     gridViewTextBoxColumn3.ReadOnly     = true;
     gridViewTextBoxColumn3.Width        = 150;
     gridViewCheckBoxColumn1.FieldName   = "Activo";
     gridViewCheckBoxColumn1.HeaderText  = "Activo";
     gridViewCheckBoxColumn1.Name        = "Activo";
     gridViewCheckBoxColumn1.ReadOnly    = true;
     gridViewCheckBoxColumn1.Width       = 80;
     gridViewTextBoxColumn4.FieldName    = "Observaciones";
     gridViewTextBoxColumn4.HeaderText   = "Observaciones";
     gridViewTextBoxColumn4.MinWidth     = 350;
     gridViewTextBoxColumn4.Name         = "Observaciones";
     gridViewTextBoxColumn4.ReadOnly     = true;
     gridViewTextBoxColumn4.Width        = 350;
     gridViewCommandColumn1.HeaderText   = "";
     gridViewCommandColumn1.Image        = global::GestionAdministrativa.Win.Properties.Resources.Reload_16x16;
     gridViewCommandColumn1.MaxWidth     = 25;
     gridViewCommandColumn1.MinWidth     = 25;
     gridViewCommandColumn1.Name         = "Fin";
     gridViewCommandColumn1.RowSpan      = 16;
     gridViewCommandColumn1.Width        = 25;
     this.DgvTalleresMoviles.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewTextBoxColumn1,
         gridViewTextBoxColumn2,
         gridViewTextBoxColumn3,
         gridViewCheckBoxColumn1,
         gridViewTextBoxColumn4,
         gridViewCommandColumn1
     });
     this.DgvTalleresMoviles.Name              = "DgvTalleresMoviles";
     this.DgvTalleresMoviles.Size              = new System.Drawing.Size(1254, 607);
     this.DgvTalleresMoviles.TabIndex          = 0;
     this.DgvTalleresMoviles.Text              = "radGridView1";
     this.DgvTalleresMoviles.ThemeName         = "TelerikMetro";
     this.DgvTalleresMoviles.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.DgvTalleresMoviles_CommandCellClick);
     //
     // BtnLimpiar
     //
     this.BtnLimpiar.Font      = new System.Drawing.Font("Consolas", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.BtnLimpiar.Location  = new System.Drawing.Point(1045, 4);
     this.BtnLimpiar.Margin    = new System.Windows.Forms.Padding(4);
     this.BtnLimpiar.Name      = "BtnLimpiar";
     this.BtnLimpiar.Size      = new System.Drawing.Size(205, 41);
     this.BtnLimpiar.TabIndex  = 24;
     this.BtnLimpiar.Text      = "Limpiar Filtros";
     this.BtnLimpiar.ThemeName = "TelerikMetro";
     this.BtnLimpiar.Click    += new System.EventHandler(this.BtnLimpiar_Click);
     //
     // panel1
     //
     this.panel1.Controls.Add(this.radLabel2);
     this.panel1.Controls.Add(this.BtnLimpiar);
     this.panel1.Controls.Add(this.TxtMovil);
     this.panel1.Location = new System.Drawing.Point(12, 41);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(1254, 49);
     this.panel1.TabIndex = 25;
     //
     // FrmTalleresListado
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1268, 705);
     this.ControlBox          = false;
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.BtnCrear);
     this.Controls.Add(this.DgvTalleresMoviles);
     this.Margin = new System.Windows.Forms.Padding(4);
     this.Name   = "FrmTalleresListado";
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.Text  = "Listado Talleres";
     this.Load += new System.EventHandler(this.FrmTalleresListado_Load);
     ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtMovil)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DgvTalleresMoviles.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DgvTalleresMoviles)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BtnLimpiar)).EndInit();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this)).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()
        {
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn4 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn5 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn6 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn2 = new Telerik.WinControls.UI.GridViewCommandColumn();
            this.TxtSenas = new Framework.WinForm.Controls.CustomControls.DecimalTextBox();
            this.TxtFaltaPagar = new Telerik.WinControls.UI.RadTextBox();
            this.radLabel1 = new Telerik.WinControls.UI.RadLabel();
            this.TxtSenasDisp = new Framework.WinForm.Controls.CustomControls.DecimalTextBox();
            this.BtnAgregarPago = new Telerik.WinControls.UI.RadButton();
            this.GrillaPagos = new Telerik.WinControls.UI.RadGridView();
            this.TxtTotalPagar = new Telerik.WinControls.UI.RadTextBox();
            this.metroLabel3 = new Telerik.WinControls.UI.RadLabel();
            this.metroLabel1 = new Telerik.WinControls.UI.RadLabel();
            this.TxtSubtotal = new Telerik.WinControls.UI.RadTextBox();
            this.metroLabel7 = new Telerik.WinControls.UI.RadLabel();
            this.Eliminar = new LaPaz.Win.Controls.DeleteCell.DeleteColumn();
            this.TxtCreditos = new Framework.WinForm.Controls.CustomControls.DecimalTextBox();
            this.TxtCreditoDisp = new Framework.WinForm.Controls.CustomControls.DecimalTextBox();
            this.radLabel2 = new Telerik.WinControls.UI.RadLabel();
            this.TxtEgresos = new Framework.WinForm.Controls.CustomControls.DecimalTextBox();
            this.TxtEgresosDisp = new Framework.WinForm.Controls.CustomControls.DecimalTextBox();
            this.radLabel3 = new Telerik.WinControls.UI.RadLabel();
            ((System.ComponentModel.ISupportInitialize)(this.TxtSenas)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.TxtFaltaPagar)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.TxtSenasDisp)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.BtnAgregarPago)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.GrillaPagos)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.GrillaPagos.MasterTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.TxtTotalPagar)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.metroLabel3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.metroLabel1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.TxtSubtotal)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.metroLabel7)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.TxtCreditos)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.TxtCreditoDisp)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.TxtEgresos)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.TxtEgresosDisp)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).BeginInit();
            this.SuspendLayout();
            // 
            // TxtSenas
            // 
            this.TxtSenas.AceptaNegativos = false;
            this.TxtSenas.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.TxtSenas.Location = new System.Drawing.Point(264, 43);
            this.TxtSenas.Name = "TxtSenas";
            this.TxtSenas.Size = new System.Drawing.Size(66, 26);
            this.TxtSenas.TabIndex = 2;
            this.TxtSenas.TabStop = false;
            this.TxtSenas.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            this.TxtSenas.ThemeName = "TelerikMetroBlue";
            this.TxtSenas.KeyUp += new System.Windows.Forms.KeyEventHandler(this.TxtSenas_KeyUp_1);
            // 
            // TxtFaltaPagar
            // 
            this.TxtFaltaPagar.Enabled = false;
            this.TxtFaltaPagar.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.TxtFaltaPagar.Location = new System.Drawing.Point(189, 368);
            this.TxtFaltaPagar.MaxLength = 11;
            this.TxtFaltaPagar.Name = "TxtFaltaPagar";
            this.TxtFaltaPagar.Size = new System.Drawing.Size(141, 26);
            this.TxtFaltaPagar.TabIndex = 43;
            this.TxtFaltaPagar.TabStop = false;
            this.TxtFaltaPagar.ThemeName = "TelerikMetroBlue";
            this.TxtFaltaPagar.TextChanged += new System.EventHandler(this.TxtFaltaPagar_TextChanged);
            // 
            // radLabel1
            // 
            this.radLabel1.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.radLabel1.Location = new System.Drawing.Point(8, 369);
            this.radLabel1.Name = "radLabel1";
            this.radLabel1.Size = new System.Drawing.Size(86, 24);
            this.radLabel1.TabIndex = 44;
            this.radLabel1.Text = "Falta Pagar:";
            this.radLabel1.ThemeName = "TelerikMetroBlue";
            // 
            // TxtSenasDisp
            // 
            this.TxtSenasDisp.AceptaNegativos = false;
            this.TxtSenasDisp.Enabled = false;
            this.TxtSenasDisp.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.TxtSenasDisp.Location = new System.Drawing.Point(189, 43);
            this.TxtSenasDisp.Name = "TxtSenasDisp";
            this.TxtSenasDisp.Size = new System.Drawing.Size(66, 26);
            this.TxtSenasDisp.TabIndex = 1;
            this.TxtSenasDisp.TabStop = false;
            this.TxtSenasDisp.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            this.TxtSenasDisp.ThemeName = "TelerikMetroBlue";
            this.TxtSenasDisp.TextChanged += new System.EventHandler(this.TxtSenas_TextChanged);
            // 
            // BtnAgregarPago
            // 
            this.BtnAgregarPago.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.BtnAgregarPago.Location = new System.Drawing.Point(255, 178);
            this.BtnAgregarPago.Name = "BtnAgregarPago";
            this.BtnAgregarPago.Size = new System.Drawing.Size(75, 29);
            this.BtnAgregarPago.TabIndex = 5;
            this.BtnAgregarPago.Text = "Agregar";
            this.BtnAgregarPago.ThemeName = "TelerikMetroBlue";
            this.BtnAgregarPago.Click += new System.EventHandler(this.BtnAgregarPago_Click);
            // 
            // GrillaPagos
            // 
            this.GrillaPagos.Font = new System.Drawing.Font("Segoe UI", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
            this.GrillaPagos.Location = new System.Drawing.Point(8, 213);
            // 
            // GrillaPagos
            // 
            this.GrillaPagos.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
            gridViewTextBoxColumn4.FieldName = "TipoPago";
            gridViewTextBoxColumn4.HeaderText = "Tipo Pago";
            gridViewTextBoxColumn4.Name = "TipoPago";
            gridViewTextBoxColumn4.ReadOnly = true;
            gridViewTextBoxColumn4.Width = 79;
            gridViewTextBoxColumn5.FieldName = "Descripcion";
            gridViewTextBoxColumn5.HeaderText = "Descripción";
            gridViewTextBoxColumn5.Name = "Descripcion";
            gridViewTextBoxColumn5.ReadOnly = true;
            gridViewTextBoxColumn5.Width = 89;
            gridViewTextBoxColumn6.FieldName = "Importe";
            gridViewTextBoxColumn6.HeaderText = "Importe";
            gridViewTextBoxColumn6.Name = "Importe";
            gridViewTextBoxColumn6.ReadOnly = true;
            gridViewTextBoxColumn6.Width = 102;
            gridViewCommandColumn2.HeaderText = "";
            gridViewCommandColumn2.Image = global::LaPaz.Win.Properties.Resources.Garbage_Closed;
            gridViewCommandColumn2.ImageLayout = System.Windows.Forms.ImageLayout.Center;
            gridViewCommandColumn2.MaxWidth = 30;
            gridViewCommandColumn2.MinWidth = 30;
            gridViewCommandColumn2.Name = "Eliminar";
            gridViewCommandColumn2.Width = 30;
            this.GrillaPagos.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn4,
            gridViewTextBoxColumn5,
            gridViewTextBoxColumn6,
            gridViewCommandColumn2});
            this.GrillaPagos.MasterTemplate.EnableGrouping = false;
            this.GrillaPagos.Name = "GrillaPagos";
            this.GrillaPagos.ReadOnly = true;
            this.GrillaPagos.Size = new System.Drawing.Size(319, 150);
            this.GrillaPagos.TabIndex = 6;
            this.GrillaPagos.ThemeName = "TelerikMetroBlue";
            this.GrillaPagos.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.GrillaPagos_CommandCellClick);
            this.GrillaPagos.KeyUp += new System.Windows.Forms.KeyEventHandler(this.GrillaPagos_KeyUp);
            // 
            // TxtTotalPagar
            // 
            this.TxtTotalPagar.Enabled = false;
            this.TxtTotalPagar.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.TxtTotalPagar.Location = new System.Drawing.Point(189, 140);
            this.TxtTotalPagar.MaxLength = 11;
            this.TxtTotalPagar.Name = "TxtTotalPagar";
            this.TxtTotalPagar.Size = new System.Drawing.Size(141, 26);
            this.TxtTotalPagar.TabIndex = 4;
            this.TxtTotalPagar.TabStop = false;
            this.TxtTotalPagar.ThemeName = "TelerikMetroBlue";
            this.TxtTotalPagar.TextChanged += new System.EventHandler(this.TxtTotalPagar_TextChanged);
            // 
            // metroLabel3
            // 
            this.metroLabel3.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.metroLabel3.Location = new System.Drawing.Point(8, 142);
            this.metroLabel3.Name = "metroLabel3";
            this.metroLabel3.Size = new System.Drawing.Size(100, 24);
            this.metroLabel3.TabIndex = 38;
            this.metroLabel3.Text = "Total a Pagar:";
            this.metroLabel3.ThemeName = "TelerikMetroBlue";
            // 
            // metroLabel1
            // 
            this.metroLabel1.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.metroLabel1.Location = new System.Drawing.Point(8, 45);
            this.metroLabel1.Name = "metroLabel1";
            this.metroLabel1.Size = new System.Drawing.Size(50, 24);
            this.metroLabel1.TabIndex = 34;
            this.metroLabel1.Text = "Señas:";
            this.metroLabel1.ThemeName = "TelerikMetroBlue";
            // 
            // TxtSubtotal
            // 
            this.TxtSubtotal.Enabled = false;
            this.TxtSubtotal.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.TxtSubtotal.Location = new System.Drawing.Point(189, 11);
            this.TxtSubtotal.MaxLength = 11;
            this.TxtSubtotal.Name = "TxtSubtotal";
            this.TxtSubtotal.Size = new System.Drawing.Size(141, 26);
            this.TxtSubtotal.TabIndex = 0;
            this.TxtSubtotal.TabStop = false;
            this.TxtSubtotal.ThemeName = "TelerikMetroBlue";
            // 
            // metroLabel7
            // 
            this.metroLabel7.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.metroLabel7.Location = new System.Drawing.Point(8, 12);
            this.metroLabel7.Name = "metroLabel7";
            this.metroLabel7.Size = new System.Drawing.Size(75, 24);
            this.metroLabel7.TabIndex = 32;
            this.metroLabel7.Text = "Sub Total:";
            this.metroLabel7.ThemeName = "TelerikMetroBlue";
            // 
            // Eliminar
            // 
            this.Eliminar.FillWeight = 25F;
            this.Eliminar.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.Eliminar.HeaderText = "";
            this.Eliminar.Name = "Eliminar";
            this.Eliminar.ReadOnly = true;
            this.Eliminar.Resizable = System.Windows.Forms.DataGridViewTriState.False;
            this.Eliminar.Width = 30;
            // 
            // TxtCreditos
            // 
            this.TxtCreditos.AceptaNegativos = false;
            this.TxtCreditos.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.TxtCreditos.Location = new System.Drawing.Point(264, 75);
            this.TxtCreditos.Name = "TxtCreditos";
            this.TxtCreditos.Size = new System.Drawing.Size(66, 26);
            this.TxtCreditos.TabIndex = 36;
            this.TxtCreditos.TabStop = false;
            this.TxtCreditos.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            this.TxtCreditos.ThemeName = "TelerikMetroBlue";
            this.TxtCreditos.KeyUp += new System.Windows.Forms.KeyEventHandler(this.TxtCreditos_KeyUp);
            // 
            // TxtCreditoDisp
            // 
            this.TxtCreditoDisp.AceptaNegativos = false;
            this.TxtCreditoDisp.Enabled = false;
            this.TxtCreditoDisp.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.TxtCreditoDisp.Location = new System.Drawing.Point(189, 75);
            this.TxtCreditoDisp.Name = "TxtCreditoDisp";
            this.TxtCreditoDisp.Size = new System.Drawing.Size(66, 26);
            this.TxtCreditoDisp.TabIndex = 35;
            this.TxtCreditoDisp.TabStop = false;
            this.TxtCreditoDisp.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            this.TxtCreditoDisp.ThemeName = "TelerikMetroBlue";
            // 
            // radLabel2
            // 
            this.radLabel2.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.radLabel2.Location = new System.Drawing.Point(8, 77);
            this.radLabel2.Name = "radLabel2";
            this.radLabel2.Size = new System.Drawing.Size(131, 24);
            this.radLabel2.TabIndex = 37;
            this.radLabel2.Text = "Notas de créditos:";
            this.radLabel2.ThemeName = "TelerikMetroBlue";
            // 
            // TxtEgresos
            // 
            this.TxtEgresos.AceptaNegativos = false;
            this.TxtEgresos.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.TxtEgresos.Location = new System.Drawing.Point(264, 108);
            this.TxtEgresos.Name = "TxtEgresos";
            this.TxtEgresos.Size = new System.Drawing.Size(66, 26);
            this.TxtEgresos.TabIndex = 39;
            this.TxtEgresos.TabStop = false;
            this.TxtEgresos.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            this.TxtEgresos.ThemeName = "TelerikMetroBlue";
            this.TxtEgresos.KeyUp += new System.Windows.Forms.KeyEventHandler(this.TxtEgresos_KeyUp);
            // 
            // TxtEgresosDisp
            // 
            this.TxtEgresosDisp.AceptaNegativos = false;
            this.TxtEgresosDisp.Enabled = false;
            this.TxtEgresosDisp.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.TxtEgresosDisp.Location = new System.Drawing.Point(189, 108);
            this.TxtEgresosDisp.Name = "TxtEgresosDisp";
            this.TxtEgresosDisp.Size = new System.Drawing.Size(66, 26);
            this.TxtEgresosDisp.TabIndex = 38;
            this.TxtEgresosDisp.TabStop = false;
            this.TxtEgresosDisp.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            this.TxtEgresosDisp.ThemeName = "TelerikMetroBlue";
            // 
            // radLabel3
            // 
            this.radLabel3.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.radLabel3.Location = new System.Drawing.Point(8, 110);
            this.radLabel3.Name = "radLabel3";
            this.radLabel3.Size = new System.Drawing.Size(91, 24);
            this.radLabel3.TabIndex = 40;
            this.radLabel3.Text = "Por Egresos:";
            this.radLabel3.ThemeName = "TelerikMetroBlue";
            // 
            // UcTotalesCompraSeña
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.TxtEgresos);
            this.Controls.Add(this.TxtCreditos);
            this.Controls.Add(this.TxtEgresosDisp);
            this.Controls.Add(this.TxtSenas);
            this.Controls.Add(this.radLabel3);
            this.Controls.Add(this.TxtCreditoDisp);
            this.Controls.Add(this.radLabel2);
            this.Controls.Add(this.TxtFaltaPagar);
            this.Controls.Add(this.radLabel1);
            this.Controls.Add(this.TxtSenasDisp);
            this.Controls.Add(this.BtnAgregarPago);
            this.Controls.Add(this.GrillaPagos);
            this.Controls.Add(this.TxtTotalPagar);
            this.Controls.Add(this.metroLabel3);
            this.Controls.Add(this.metroLabel1);
            this.Controls.Add(this.TxtSubtotal);
            this.Controls.Add(this.metroLabel7);
            this.Name = "UcTotalesCompraSeña";
            this.Size = new System.Drawing.Size(340, 407);
            this.Load += new System.EventHandler(this.UcTotalesVenta_Load);
            ((System.ComponentModel.ISupportInitialize)(this.TxtSenas)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.TxtFaltaPagar)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.TxtSenasDisp)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.BtnAgregarPago)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.GrillaPagos.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.GrillaPagos)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.TxtTotalPagar)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.metroLabel3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.metroLabel1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.TxtSubtotal)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.metroLabel7)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.TxtCreditos)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.TxtCreditoDisp)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.TxtEgresos)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.TxtEgresosDisp)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
Exemple #46
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn2 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn1 = new Telerik.WinControls.UI.GridViewCommandColumn();
     Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn2 = new Telerik.WinControls.UI.GridViewCommandColumn();
     Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn3 = new Telerik.WinControls.UI.GridViewCommandColumn();
     this.splitContainer1    = new System.Windows.Forms.SplitContainer();
     this.tableLayoutPanel1  = new System.Windows.Forms.TableLayoutPanel();
     this.tableLayoutPanel2  = new System.Windows.Forms.TableLayoutPanel();
     this.BtnCrearTema       = new Telerik.WinControls.UI.RadButton();
     this.ucProgressSpinner1 = new LaPaz.Win.Forms.Util.UcProgressSpinner();
     this.ucFiltrosTemas     = new LaPaz.Win.Forms.Autores.UcFiltrosAutores();
     this.TemasPager         = new Framework.WinForm.Controls.MetroPager();
     this.GridTemas          = new Telerik.WinControls.UI.RadGridView();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.tableLayoutPanel1.SuspendLayout();
     this.tableLayoutPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.BtnCrearTema)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridTemas)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridTemas.MasterTemplate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // splitContainer1
     //
     this.splitContainer1.Dock            = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.FixedPanel      = System.Windows.Forms.FixedPanel.Panel1;
     this.splitContainer1.IsSplitterFixed = true;
     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.tableLayoutPanel1);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.GridTemas);
     this.splitContainer1.Size             = new System.Drawing.Size(1045, 694);
     this.splitContainer1.SplitterDistance = 200;
     this.splitContainer1.TabIndex         = 9;
     //
     // 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.tableLayoutPanel2, 0, 0);
     this.tableLayoutPanel1.Controls.Add(this.ucFiltrosTemas, 0, 1);
     this.tableLayoutPanel1.Controls.Add(this.TemasPager, 0, 2);
     this.tableLayoutPanel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
     this.tableLayoutPanel1.Name     = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 3;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 40F));
     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, 58F));
     this.tableLayoutPanel1.Size     = new System.Drawing.Size(1045, 200);
     this.tableLayoutPanel1.TabIndex = 0;
     //
     // tableLayoutPanel2
     //
     this.tableLayoutPanel2.ColumnCount = 2;
     this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel2.Controls.Add(this.BtnCrearTema, 0, 0);
     this.tableLayoutPanel2.Controls.Add(this.ucProgressSpinner1, 1, 0);
     this.tableLayoutPanel2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel2.Location = new System.Drawing.Point(3, 3);
     this.tableLayoutPanel2.Name     = "tableLayoutPanel2";
     this.tableLayoutPanel2.RowCount = 1;
     this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel2.Size     = new System.Drawing.Size(1039, 34);
     this.tableLayoutPanel2.TabIndex = 17;
     //
     // BtnCrearTema
     //
     this.BtnCrearTema.Anchor    = System.Windows.Forms.AnchorStyles.Left;
     this.BtnCrearTema.Font      = new System.Drawing.Font("Segoe UI", 11F);
     this.BtnCrearTema.Location  = new System.Drawing.Point(3, 3);
     this.BtnCrearTema.Name      = "BtnCrearTema";
     this.BtnCrearTema.Size      = new System.Drawing.Size(75, 28);
     this.BtnCrearTema.TabIndex  = 16;
     this.BtnCrearTema.Text      = "Crear";
     this.BtnCrearTema.ThemeName = "TelerikMetroBlue";
     this.BtnCrearTema.Click    += new System.EventHandler(this.BtnCrearTema_Click);
     //
     // ucProgressSpinner1
     //
     this.ucProgressSpinner1.Anchor   = System.Windows.Forms.AnchorStyles.Right;
     this.ucProgressSpinner1.Location = new System.Drawing.Point(874, 3);
     this.ucProgressSpinner1.Name     = "ucProgressSpinner1";
     this.ucProgressSpinner1.Size     = new System.Drawing.Size(162, 27);
     this.ucProgressSpinner1.TabIndex = 17;
     //
     // ucFiltrosTemas
     //
     this.ucFiltrosTemas.Location = new System.Drawing.Point(3, 43);
     this.ucFiltrosTemas.Name     = "ucFiltrosTemas";
     this.ucFiltrosTemas.Nombre   = "";
     this.ucFiltrosTemas.Size     = new System.Drawing.Size(852, 96);
     this.ucFiltrosTemas.TabIndex = 18;
     //
     // TemasPager
     //
     this.TemasPager.Anchor             = System.Windows.Forms.AnchorStyles.Right;
     this.TemasPager.CurrentPage        = 1;
     this.TemasPager.Location           = new System.Drawing.Point(664, 151);
     this.TemasPager.Name               = "TemasPager";
     this.TemasPager.PageSize           = 50;
     this.TemasPager.PageTotal          = 1;
     this.TemasPager.RefreshAction      = null;
     this.TemasPager.RefreshActionAsync = null;
     this.TemasPager.Size               = new System.Drawing.Size(378, 39);
     this.TemasPager.TabIndex           = 14;
     //
     // GridTemas
     //
     this.GridTemas.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.GridTemas.Font     = new System.Drawing.Font("Segoe UI", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
     this.GridTemas.Location = new System.Drawing.Point(0, 0);
     //
     // GridTemas
     //
     this.GridTemas.MasterTemplate.AutoGenerateColumns = false;
     this.GridTemas.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     gridViewTextBoxColumn1.FieldName           = "Id";
     gridViewTextBoxColumn1.HeaderText          = "Id";
     gridViewTextBoxColumn1.IsVisible           = false;
     gridViewTextBoxColumn1.Name                = "Id";
     gridViewTextBoxColumn1.ReadOnly            = true;
     gridViewTextBoxColumn1.Width               = 136;
     gridViewTextBoxColumn2.FieldName           = "Nombre";
     gridViewTextBoxColumn2.HeaderText          = "Nombre";
     gridViewTextBoxColumn2.Name                = "NombreTitulo";
     gridViewTextBoxColumn2.ReadOnly            = true;
     gridViewTextBoxColumn2.Width               = 936;
     gridViewCommandColumn1.HeaderText          = "";
     gridViewCommandColumn1.Image               = global::LaPaz.Win.Properties.Resources.View_Details;
     gridViewCommandColumn1.ImageLayout         = System.Windows.Forms.ImageLayout.Center;
     gridViewCommandColumn1.MaxWidth            = 30;
     gridViewCommandColumn1.MinWidth            = 30;
     gridViewCommandColumn1.Name                = "ColumnaDetalle";
     gridViewCommandColumn1.Width               = 30;
     gridViewCommandColumn2.HeaderText          = "";
     gridViewCommandColumn2.Image               = global::LaPaz.Win.Properties.Resources.Data_Edit;
     gridViewCommandColumn2.ImageLayout         = System.Windows.Forms.ImageLayout.Center;
     gridViewCommandColumn2.MaxWidth            = 30;
     gridViewCommandColumn2.MinWidth            = 30;
     gridViewCommandColumn2.Name                = "ColumnaEditar";
     gridViewCommandColumn2.Width               = 30;
     gridViewCommandColumn3.HeaderText          = "";
     gridViewCommandColumn3.HeaderTextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
     gridViewCommandColumn3.Image               = global::LaPaz.Win.Properties.Resources.Garbage_Closed;
     gridViewCommandColumn3.ImageLayout         = System.Windows.Forms.ImageLayout.Center;
     gridViewCommandColumn3.MaxWidth            = 30;
     gridViewCommandColumn3.MinWidth            = 30;
     gridViewCommandColumn3.Name                = "ColumnaEliminar";
     gridViewCommandColumn3.Width               = 30;
     this.GridTemas.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewTextBoxColumn1,
         gridViewTextBoxColumn2,
         gridViewCommandColumn1,
         gridViewCommandColumn2,
         gridViewCommandColumn3
     });
     this.GridTemas.MasterTemplate.EnableGrouping = false;
     this.GridTemas.Name              = "GridTemas";
     this.GridTemas.ReadOnly          = true;
     this.GridTemas.Size              = new System.Drawing.Size(1045, 490);
     this.GridTemas.TabIndex          = 12;
     this.GridTemas.ThemeName         = "TelerikMetroBlue";
     this.GridTemas.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.GridTemas_CommandCellClick);
     //
     // FrmTemasListado
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1045, 694);
     this.ControlBox          = false;
     this.Controls.Add(this.splitContainer1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name            = "FrmTemasListado";
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.Text  = "Temas";
     this.Load += new System.EventHandler(this.FrmTemasListado_Load);
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
     this.splitContainer1.ResumeLayout(false);
     this.tableLayoutPanel1.ResumeLayout(false);
     this.tableLayoutPanel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.BtnCrearTema)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridTemas.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridTemas)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).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();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn1 = new Telerik.WinControls.UI.GridViewCommandColumn();
     Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn1 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
     Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn2 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
     Telerik.WinControls.UI.GridViewDecimalColumn gridViewDecimalColumn1 = new Telerik.WinControls.UI.GridViewDecimalColumn();
     this.serviceBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.radGroupBox2 = new Telerik.WinControls.UI.RadGroupBox();
     this.filteringPanel = new Telerik.WinControls.UI.RadPanel();
     this.ucFilter1 = new ShayanDental.UserControls.UCFilter();
     this.grdInsurance = new Telerik.WinControls.UI.RadGridView();
     this.btnSave = new Telerik.WinControls.UI.RadButton();
     this.btnCancel = new Telerik.WinControls.UI.RadButton();
     this.radGroupBox1 = new Telerik.WinControls.UI.RadGroupBox();
     this.grdFee = new Telerik.WinControls.UI.RadGridView();
     this.insuranceBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.btnAdd = new Telerik.WinControls.UI.RadButton();
     this.btnNew = new Telerik.WinControls.UI.RadButton();
     this.roleTitleLabel = new Telerik.WinControls.UI.RadLabel();
     this.txtInssuranceName = new Telerik.WinControls.UI.RadTextBox();
     ((System.ComponentModel.ISupportInitialize)(this.serviceBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox2)).BeginInit();
     this.radGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.filteringPanel)).BeginInit();
     this.filteringPanel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdInsurance)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnSave)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnCancel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).BeginInit();
     this.radGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdFee)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.insuranceBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnAdd)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnNew)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.roleTitleLabel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInssuranceName)).BeginInit();
     this.SuspendLayout();
     //
     // serviceBindingSource
     //
     this.serviceBindingSource.DataSource = typeof(Shayan.Data.Service);
     //
     // radGroupBox2
     //
     this.radGroupBox2.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.radGroupBox2.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.radGroupBox2.Controls.Add(this.filteringPanel);
     this.radGroupBox2.Controls.Add(this.grdInsurance);
     this.radGroupBox2.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radGroupBox2.FooterImageIndex = -1;
     this.radGroupBox2.FooterImageKey = "";
     this.radGroupBox2.HeaderImageIndex = -1;
     this.radGroupBox2.HeaderImageKey = "";
     this.radGroupBox2.HeaderMargin = new System.Windows.Forms.Padding(0);
     this.radGroupBox2.HeaderText = "بیمه های ذخیره شده";
     this.radGroupBox2.Location = new System.Drawing.Point(3, 3);
     this.radGroupBox2.Name = "radGroupBox2";
     this.radGroupBox2.Padding = new System.Windows.Forms.Padding(2, 17, 2, 2);
     //
     //
     //
     this.radGroupBox2.RootElement.Padding = new System.Windows.Forms.Padding(2, 17, 2, 2);
     this.radGroupBox2.Size = new System.Drawing.Size(204, 358);
     this.radGroupBox2.TabIndex = 18;
     this.radGroupBox2.Text = "بیمه های ذخیره شده";
     //
     // filteringPanel
     //
     this.filteringPanel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.filteringPanel.Controls.Add(this.ucFilter1);
     this.filteringPanel.Location = new System.Drawing.Point(5, 26);
     this.filteringPanel.Name = "filteringPanel";
     this.filteringPanel.Size = new System.Drawing.Size(194, 32);
     this.filteringPanel.TabIndex = 12;
     //
     // ucFilter1
     //
     this.ucFilter1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ucFilter1.Location = new System.Drawing.Point(0, 0);
     this.ucFilter1.Name = "ucFilter1";
     this.ucFilter1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.ucFilter1.Size = new System.Drawing.Size(194, 32);
     this.ucFilter1.TabIndex = 0;
     //
     // grdInsurance
     //
     this.grdInsurance.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.grdInsurance.AutoScroll = true;
     this.grdInsurance.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.grdInsurance.Location = new System.Drawing.Point(5, 64);
     //
     // grdInsurance
     //
     this.grdInsurance.MasterTemplate.AllowAddNewRow = false;
     this.grdInsurance.MasterTemplate.AllowCellContextMenu = false;
     this.grdInsurance.MasterTemplate.AllowColumnChooser = false;
     this.grdInsurance.MasterTemplate.AllowColumnHeaderContextMenu = false;
     this.grdInsurance.MasterTemplate.AllowColumnReorder = false;
     this.grdInsurance.MasterTemplate.AllowDeleteRow = false;
     this.grdInsurance.MasterTemplate.AllowDragToGroup = false;
     this.grdInsurance.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     gridViewTextBoxColumn1.FieldName = "Title";
     gridViewTextBoxColumn1.HeaderText = "عنوان بیمه";
     gridViewTextBoxColumn1.Name = "Title";
     gridViewTextBoxColumn1.Width = 163;
     gridViewCommandColumn1.AllowHide = false;
     gridViewCommandColumn1.AllowReorder = false;
     gridViewCommandColumn1.AllowResize = false;
     gridViewCommandColumn1.AllowSort = false;
     gridViewCommandColumn1.HeaderText = "حذف";
     gridViewCommandColumn1.Name = "column3";
     gridViewCommandColumn1.Width = 30;
     this.grdInsurance.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
     gridViewTextBoxColumn1,
     gridViewCommandColumn1});
     this.grdInsurance.MasterTemplate.EnableGrouping = false;
     this.grdInsurance.MasterTemplate.ShowFilteringRow = false;
     this.grdInsurance.MasterTemplate.ShowRowHeaderColumn = false;
     this.grdInsurance.Name = "grdInsurance";
     this.grdInsurance.ReadOnly = true;
     this.grdInsurance.ShowGroupPanel = false;
     this.grdInsurance.Size = new System.Drawing.Size(194, 284);
     this.grdInsurance.TabIndex = 0;
     this.grdInsurance.CellFormatting += new Telerik.WinControls.UI.CellFormattingEventHandler(this.grdInsurance_CellFormatting);
     this.grdInsurance.CurrentRowChanging += new Telerik.WinControls.UI.CurrentRowChangingEventHandler(this.grdInsurance_CurrentRowChanging);
     this.grdInsurance.SelectionChanged += new System.EventHandler(this.grdInsurance_SelectionChanged);
     this.grdInsurance.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.grdInsurance_CommandCellClick);
     //
     // btnSave
     //
     this.btnSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnSave.Font = new System.Drawing.Font("B Nazanin", 10.5F, System.Drawing.FontStyle.Bold);
     this.btnSave.Location = new System.Drawing.Point(494, 363);
     this.btnSave.Name = "btnSave";
     this.btnSave.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.btnSave.Size = new System.Drawing.Size(100, 35);
     this.btnSave.TabIndex = 0;
     this.btnSave.Text = "ذخیره   ";
     this.btnSave.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // btnCancel
     //
     this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnCancel.Font = new System.Drawing.Font("B Nazanin", 10.5F, System.Drawing.FontStyle.Bold);
     this.btnCancel.Location = new System.Drawing.Point(390, 363);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.btnCancel.Size = new System.Drawing.Size(100, 35);
     this.btnCancel.TabIndex = 1;
     this.btnCancel.Text = "انصراف   ";
     this.btnCancel.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
     this.btnCancel.Click += new System.EventHandler(this.btnExit_Click);
     //
     // radGroupBox1
     //
     this.radGroupBox1.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.radGroupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.radGroupBox1.Controls.Add(this.grdFee);
     this.radGroupBox1.Controls.Add(this.btnAdd);
     this.radGroupBox1.Controls.Add(this.btnNew);
     this.radGroupBox1.Controls.Add(this.roleTitleLabel);
     this.radGroupBox1.Controls.Add(this.txtInssuranceName);
     this.radGroupBox1.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radGroupBox1.FooterImageIndex = -1;
     this.radGroupBox1.FooterImageKey = "";
     this.radGroupBox1.HeaderImageIndex = -1;
     this.radGroupBox1.HeaderImageKey = "";
     this.radGroupBox1.HeaderMargin = new System.Windows.Forms.Padding(0);
     this.radGroupBox1.HeaderText = "تعریف بیمه";
     this.radGroupBox1.Location = new System.Drawing.Point(213, 3);
     this.radGroupBox1.Name = "radGroupBox1";
     this.radGroupBox1.Padding = new System.Windows.Forms.Padding(2, 17, 2, 2);
     //
     //
     //
     this.radGroupBox1.RootElement.MinSize = new System.Drawing.Size(0, 0);
     this.radGroupBox1.RootElement.Padding = new System.Windows.Forms.Padding(2, 17, 2, 2);
     this.radGroupBox1.Size = new System.Drawing.Size(386, 358);
     this.radGroupBox1.TabIndex = 15;
     this.radGroupBox1.Text = "تعریف بیمه";
     //
     // grdFee
     //
     this.grdFee.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.grdFee.AutoScroll = true;
     this.grdFee.DataBindings.Add(new System.Windows.Forms.Binding("DataSource", this.insuranceBindingSource, "InsuranceDefs", true));
     this.grdFee.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.grdFee.Location = new System.Drawing.Point(5, 76);
     //
     // grdFee
     //
     this.grdFee.MasterTemplate.AllowAddNewRow = false;
     this.grdFee.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     gridViewComboBoxColumn1.DataSource = this.serviceBindingSource;
     gridViewComboBoxColumn1.DisplayMember = "Title";
     gridViewComboBoxColumn1.FieldName = "ServiceId";
     gridViewComboBoxColumn1.HeaderText = "نام خدمات";
     gridViewComboBoxColumn1.Name = "ServiceName";
     gridViewComboBoxColumn1.ReadOnly = true;
     gridViewComboBoxColumn1.ValueMember = "Id";
     gridViewComboBoxColumn1.Width = 174;
     gridViewComboBoxColumn2.DataSource = this.serviceBindingSource;
     gridViewComboBoxColumn2.DisplayMember = "Price";
     gridViewComboBoxColumn2.FieldName = "ServiceId";
     gridViewComboBoxColumn2.FormatString = "{0:N0}";
     gridViewComboBoxColumn2.HeaderText = "قیمت";
     gridViewComboBoxColumn2.Name = "Price";
     gridViewComboBoxColumn2.ReadOnly = true;
     gridViewComboBoxColumn2.ValueMember = "Id";
     gridViewComboBoxColumn2.Width = 101;
     gridViewDecimalColumn1.FieldName = "Fee";
     gridViewDecimalColumn1.FormatString = "{0:N0}";
     gridViewDecimalColumn1.HeaderText = "تعرفه بیمه";
     gridViewDecimalColumn1.Maximum = new decimal(new int[] {
     1000000000,
     0,
     0,
     0});
     gridViewDecimalColumn1.Minimum = new decimal(new int[] {
     0,
     0,
     0,
     0});
     gridViewDecimalColumn1.Name = "column3";
     gridViewDecimalColumn1.Width = 102;
     this.grdFee.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
     gridViewComboBoxColumn1,
     gridViewComboBoxColumn2,
     gridViewDecimalColumn1});
     this.grdFee.MasterTemplate.ShowRowHeaderColumn = false;
     this.grdFee.Name = "grdFee";
     this.grdFee.ShowGroupPanel = false;
     this.grdFee.Size = new System.Drawing.Size(376, 231);
     this.grdFee.TabIndex = 1;
     this.grdFee.Text = "radGridView1";
     //
     // insuranceBindingSource
     //
     this.insuranceBindingSource.DataSource = typeof(Shayan.Data.Insurance);
     //
     // btnAdd
     //
     this.btnAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnAdd.Font = new System.Drawing.Font("B Nazanin", 10.5F, System.Drawing.FontStyle.Bold);
     this.btnAdd.Location = new System.Drawing.Point(281, 318);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.btnAdd.Size = new System.Drawing.Size(100, 35);
     this.btnAdd.TabIndex = 3;
     this.btnAdd.Text = "افزودن   ";
     this.btnAdd.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // btnNew
     //
     this.btnNew.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnNew.Font = new System.Drawing.Font("B Nazanin", 10.5F, System.Drawing.FontStyle.Bold);
     this.btnNew.Location = new System.Drawing.Point(177, 318);
     this.btnNew.Name = "btnNew";
     this.btnNew.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.btnNew.Size = new System.Drawing.Size(100, 35);
     this.btnNew.TabIndex = 4;
     this.btnNew.Text = "جدید   ";
     this.btnNew.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
     this.btnNew.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // roleTitleLabel
     //
     this.roleTitleLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.roleTitleLabel.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.roleTitleLabel.Location = new System.Drawing.Point(347, 35);
     this.roleTitleLabel.Name = "roleTitleLabel";
     this.roleTitleLabel.Size = new System.Drawing.Size(34, 23);
     this.roleTitleLabel.TabIndex = 3;
     this.roleTitleLabel.Text = "عنوان:";
     this.roleTitleLabel.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // txtInssuranceName
     //
     this.txtInssuranceName.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtInssuranceName.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.insuranceBindingSource, "Title", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.txtInssuranceName.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.txtInssuranceName.Location = new System.Drawing.Point(172, 34);
     this.txtInssuranceName.Name = "txtInssuranceName";
     this.txtInssuranceName.Size = new System.Drawing.Size(172, 25);
     this.txtInssuranceName.TabIndex = 0;
     this.txtInssuranceName.TabStop = false;
     this.txtInssuranceName.TextChanging += new Telerik.WinControls.TextChangingEventHandler(this.txtInssuranceName_TextChanging);
     //
     // UCInssurance
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.radGroupBox2);
     this.Controls.Add(this.btnSave);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.radGroupBox1);
     this.Name = "UCInssurance";
     this.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.Size = new System.Drawing.Size(602, 401);
     ((System.ComponentModel.ISupportInitialize)(this.serviceBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox2)).EndInit();
     this.radGroupBox2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.filteringPanel)).EndInit();
     this.filteringPanel.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdInsurance)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnSave)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnCancel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).EndInit();
     this.radGroupBox1.ResumeLayout(false);
     this.radGroupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdFee)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.insuranceBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnAdd)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnNew)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.roleTitleLabel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInssuranceName)).EndInit();
     this.ResumeLayout(false);
 }
Exemple #48
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn2 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn3 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn4 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn5 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn6 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn1 = new Telerik.WinControls.UI.GridViewCommandColumn();
     Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn2 = new Telerik.WinControls.UI.GridViewCommandColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn7 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     this.GrillaTitulos         = new Telerik.WinControls.UI.RadGridView();
     this.Eliminar              = new LaPaz.Win.Controls.DeleteCell.DeleteColumn();
     this.BtnAgregarTitulo      = new Telerik.WinControls.UI.RadButton();
     this.deleteColumn1         = new LaPaz.Win.Controls.DeleteCell.DeleteColumn();
     this.radThemeManager1      = new Telerik.WinControls.RadThemeManager();
     this.btnAgregarPresupuesto = new Telerik.WinControls.UI.RadButton();
     this.lblCantidad           = new Telerik.WinControls.UI.RadLabel();
     ((System.ComponentModel.ISupportInitialize)(this.GrillaTitulos)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GrillaTitulos.MasterTemplate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BtnAgregarTitulo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnAgregarPresupuesto)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lblCantidad)).BeginInit();
     this.SuspendLayout();
     //
     // GrillaTitulos
     //
     this.GrillaTitulos.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.GrillaTitulos.Font     = new System.Drawing.Font("Segoe UI", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
     this.GrillaTitulos.Location = new System.Drawing.Point(4, 43);
     this.GrillaTitulos.Margin   = new System.Windows.Forms.Padding(4, 5, 4, 5);
     //
     // GrillaTitulos
     //
     this.GrillaTitulos.MasterTemplate.AllowAddNewRow      = false;
     this.GrillaTitulos.MasterTemplate.AllowColumnReorder  = false;
     this.GrillaTitulos.MasterTemplate.AllowDeleteRow      = false;
     this.GrillaTitulos.MasterTemplate.AllowDragToGroup    = false;
     this.GrillaTitulos.MasterTemplate.AllowEditRow        = false;
     this.GrillaTitulos.MasterTemplate.AutoGenerateColumns = false;
     this.GrillaTitulos.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     gridViewTextBoxColumn1.FieldName     = "Cod";
     gridViewTextBoxColumn1.HeaderText    = "Código";
     gridViewTextBoxColumn1.MaxWidth      = 140;
     gridViewTextBoxColumn1.MinWidth      = 140;
     gridViewTextBoxColumn1.Name          = "Codigo";
     gridViewTextBoxColumn1.ReadOnly      = true;
     gridViewTextBoxColumn1.Width         = 140;
     gridViewTextBoxColumn2.FieldName     = "TituloNombre";
     gridViewTextBoxColumn2.HeaderText    = "Titulo";
     gridViewTextBoxColumn2.MaxWidth      = 500;
     gridViewTextBoxColumn2.Name          = "Descripcion";
     gridViewTextBoxColumn2.ReadOnly      = true;
     gridViewTextBoxColumn2.Width         = 146;
     gridViewTextBoxColumn3.FieldName     = "PrecioBase";
     gridViewTextBoxColumn3.FormatString  = "";
     gridViewTextBoxColumn3.HeaderText    = "Precio";
     gridViewTextBoxColumn3.MaxWidth      = 70;
     gridViewTextBoxColumn3.MinWidth      = 70;
     gridViewTextBoxColumn3.Name          = "PrecioVenta";
     gridViewTextBoxColumn3.ReadOnly      = true;
     gridViewTextBoxColumn3.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
     gridViewTextBoxColumn3.Width         = 70;
     gridViewTextBoxColumn4.FieldName     = "Cantidad";
     gridViewTextBoxColumn4.HeaderText    = "Cantidad";
     gridViewTextBoxColumn4.MaxWidth      = 70;
     gridViewTextBoxColumn4.MinWidth      = 70;
     gridViewTextBoxColumn4.Name          = "Cantidad";
     gridViewTextBoxColumn4.ReadOnly      = true;
     gridViewTextBoxColumn4.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
     gridViewTextBoxColumn4.Width         = 70;
     gridViewTextBoxColumn5.FieldName     = "Descuento";
     gridViewTextBoxColumn5.HeaderText    = "Descuento";
     gridViewTextBoxColumn5.MaxWidth      = 80;
     gridViewTextBoxColumn5.MinWidth      = 80;
     gridViewTextBoxColumn5.Name          = "Descuento";
     gridViewTextBoxColumn5.ReadOnly      = true;
     gridViewTextBoxColumn5.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
     gridViewTextBoxColumn5.Width         = 80;
     gridViewTextBoxColumn6.FieldName     = "SubTotal";
     gridViewTextBoxColumn6.FormatString  = "";
     gridViewTextBoxColumn6.HeaderText    = "SubTotal";
     gridViewTextBoxColumn6.MaxWidth      = 70;
     gridViewTextBoxColumn6.MinWidth      = 70;
     gridViewTextBoxColumn6.Name          = "SubTotal";
     gridViewTextBoxColumn6.ReadOnly      = true;
     gridViewTextBoxColumn6.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
     gridViewTextBoxColumn6.Width         = 70;
     gridViewCommandColumn1.HeaderText    = "";
     gridViewCommandColumn1.Image         = global::LaPaz.Win.Properties.Resources.Garbage_Closed;
     gridViewCommandColumn1.MaxWidth      = 30;
     gridViewCommandColumn1.MinWidth      = 30;
     gridViewCommandColumn1.Name          = "Eliminar";
     gridViewCommandColumn1.Width         = 30;
     gridViewCommandColumn2.HeaderText    = "";
     gridViewCommandColumn2.Image         = global::LaPaz.Win.Properties.Resources.Data_Edit;
     gridViewCommandColumn2.MaxWidth      = 30;
     gridViewCommandColumn2.MinWidth      = 30;
     gridViewCommandColumn2.Name          = "Editar";
     gridViewCommandColumn2.Width         = 30;
     gridViewTextBoxColumn7.FieldName     = "PrecioBase";
     gridViewTextBoxColumn7.HeaderText    = "Base";
     gridViewTextBoxColumn7.IsVisible     = false;
     gridViewTextBoxColumn7.Name          = "column1";
     gridViewTextBoxColumn7.Width         = 31;
     this.GrillaTitulos.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewTextBoxColumn1,
         gridViewTextBoxColumn2,
         gridViewTextBoxColumn3,
         gridViewTextBoxColumn4,
         gridViewTextBoxColumn5,
         gridViewTextBoxColumn6,
         gridViewCommandColumn1,
         gridViewCommandColumn2,
         gridViewTextBoxColumn7
     });
     this.GrillaTitulos.MasterTemplate.EnableGrouping = false;
     this.GrillaTitulos.Name              = "GrillaTitulos";
     this.GrillaTitulos.ReadOnly          = true;
     this.GrillaTitulos.Size              = new System.Drawing.Size(651, 155);
     this.GrillaTitulos.TabIndex          = 40;
     this.GrillaTitulos.ThemeName         = "TelerikMetroBlue";
     this.GrillaTitulos.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.GrillaTitulos_CommandCellClick);
     //
     // Eliminar
     //
     this.Eliminar.FillWeight = 25F;
     this.Eliminar.FlatStyle  = System.Windows.Forms.FlatStyle.Flat;
     this.Eliminar.HeaderText = "";
     this.Eliminar.Name       = "Eliminar";
     this.Eliminar.ReadOnly   = true;
     this.Eliminar.Resizable  = System.Windows.Forms.DataGridViewTriState.False;
     this.Eliminar.SortMode   = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     this.Eliminar.Width      = 30;
     //
     // BtnAgregarTitulo
     //
     this.BtnAgregarTitulo.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.BtnAgregarTitulo.Font      = new System.Drawing.Font("Segoe UI", 11F);
     this.BtnAgregarTitulo.Location  = new System.Drawing.Point(555, 5);
     this.BtnAgregarTitulo.Margin    = new System.Windows.Forms.Padding(4, 5, 4, 5);
     this.BtnAgregarTitulo.Name      = "BtnAgregarTitulo";
     this.BtnAgregarTitulo.Size      = new System.Drawing.Size(100, 28);
     this.BtnAgregarTitulo.TabIndex  = 41;
     this.BtnAgregarTitulo.Text      = "Agregar";
     this.BtnAgregarTitulo.ThemeName = "TelerikMetroBlue";
     this.BtnAgregarTitulo.Click    += new System.EventHandler(this.BtnAgregarTitulo_Click);
     //
     // deleteColumn1
     //
     this.deleteColumn1.FillWeight = 25F;
     this.deleteColumn1.FlatStyle  = System.Windows.Forms.FlatStyle.Flat;
     this.deleteColumn1.HeaderText = "";
     this.deleteColumn1.Name       = "deleteColumn1";
     this.deleteColumn1.Resizable  = System.Windows.Forms.DataGridViewTriState.False;
     this.deleteColumn1.SortMode   = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     this.deleteColumn1.Width      = 18;
     //
     // btnAgregarPresupuesto
     //
     this.btnAgregarPresupuesto.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnAgregarPresupuesto.Font      = new System.Drawing.Font("Segoe UI", 11F);
     this.btnAgregarPresupuesto.Location  = new System.Drawing.Point(447, 5);
     this.btnAgregarPresupuesto.Margin    = new System.Windows.Forms.Padding(4, 5, 4, 5);
     this.btnAgregarPresupuesto.Name      = "btnAgregarPresupuesto";
     this.btnAgregarPresupuesto.Size      = new System.Drawing.Size(100, 28);
     this.btnAgregarPresupuesto.TabIndex  = 42;
     this.btnAgregarPresupuesto.Text      = "Agregar";
     this.btnAgregarPresupuesto.ThemeName = "TelerikMetroBlue";
     this.btnAgregarPresupuesto.Visible   = false;
     this.btnAgregarPresupuesto.Click    += new System.EventHandler(this.btnAgregarPresupuesto_Click);
     //
     // lblCantidad
     //
     this.lblCantidad.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.lblCantidad.Font      = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblCantidad.Location  = new System.Drawing.Point(21, 206);
     this.lblCantidad.Name      = "lblCantidad";
     this.lblCantidad.Size      = new System.Drawing.Size(148, 24);
     this.lblCantidad.TabIndex  = 43;
     this.lblCantidad.Text      = "Cantidad de libros: 0";
     this.lblCantidad.ThemeName = "TelerikMetroBlue";
     //
     // UcTitulosVenta
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 20F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.lblCantidad);
     this.Controls.Add(this.btnAgregarPresupuesto);
     this.Controls.Add(this.BtnAgregarTitulo);
     this.Controls.Add(this.GrillaTitulos);
     this.Font   = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
     this.Name   = "UcTitulosVenta";
     this.Size   = new System.Drawing.Size(667, 236);
     this.Load  += new System.EventHandler(this.UcTitulosVenta_Load);
     ((System.ComponentModel.ISupportInitialize)(this.GrillaTitulos.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GrillaTitulos)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BtnAgregarTitulo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnAgregarPresupuesto)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lblCantidad)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn23 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn24 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn25 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn26 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn27 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.Data.FilterDescriptor filterDescriptor3 = new Telerik.WinControls.Data.FilterDescriptor();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn28 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn29 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn5 = new Telerik.WinControls.UI.GridViewCommandColumn();
            Telerik.WinControls.UI.ListViewDetailColumn listViewDetailColumn1 = new Telerik.WinControls.UI.ListViewDetailColumn("Column 0", "نام بیمه");
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn30 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn31 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn32 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn33 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn6 = new Telerik.WinControls.UI.GridViewCommandColumn();
            this.radPageView1 = new Telerik.WinControls.UI.RadPageView();
            this.radPageViewPage1 = new Telerik.WinControls.UI.RadPageViewPage();
            this.radGroupBox1 = new Telerik.WinControls.UI.RadGroupBox();
            this.radGroupBox4 = new Telerik.WinControls.UI.RadGroupBox();
            this.grvPastServices = new Telerik.WinControls.UI.RadGridView();
            this.cmbPatient = new Telerik.WinControls.UI.RadMultiColumnComboBox();
            this.radMultiColumnComboBox1 = new Telerik.WinControls.UI.RadMultiColumnComboBox();
            this.srcItem = new System.Windows.Forms.BindingSource(this.components);
            this.cmbDoctor = new Telerik.WinControls.UI.RadDropDownList();
            this.radLabel9 = new Telerik.WinControls.UI.RadLabel();
            this.radTextBox1 = new Telerik.WinControls.UI.RadTextBox();
            this.radLabel6 = new Telerik.WinControls.UI.RadLabel();
            this.faDatePicker1 = new FarsiLibrary.Win.Controls.FADatePicker();
            this.radLabel5 = new Telerik.WinControls.UI.RadLabel();
            this.lblBedehi = new Telerik.WinControls.UI.RadLabel();
            this.btnDocument = new Telerik.WinControls.UI.RadButton();
            this.radLabel4 = new Telerik.WinControls.UI.RadLabel();
            this.radLabel2 = new Telerik.WinControls.UI.RadLabel();
            this.tpTo = new Telerik.WinControls.UI.RadTimePicker();
            this.radLabel1 = new Telerik.WinControls.UI.RadLabel();
            this.radLabel3 = new Telerik.WinControls.UI.RadLabel();
            this.tpFrom = new Telerik.WinControls.UI.RadTimePicker();
            this.radPageViewPage3 = new Telerik.WinControls.UI.RadPageViewPage();
            this.radGroupBox3 = new Telerik.WinControls.UI.RadGroupBox();
            this.grvServices = new Telerik.WinControls.UI.RadGridView();
            this.radLabel16 = new Telerik.WinControls.UI.RadLabel();
            this.lblFinalSumCost = new Telerik.WinControls.UI.RadLabel();
            this.grbService = new Telerik.WinControls.UI.RadGroupBox();
            this.txtTakhfif = new Telerik.WinControls.UI.RadTextBox();
            this.srcService = new System.Windows.Forms.BindingSource(this.components);
            this.radLabel13 = new Telerik.WinControls.UI.RadLabel();
            this.radLabel10 = new Telerik.WinControls.UI.RadLabel();
            this.txtComment = new Telerik.WinControls.UI.RadTextBox();
            this.radLabel12 = new Telerik.WinControls.UI.RadLabel();
            this.ucTooth1 = new ShayanDental.UCTooth();
            this.radLabel14 = new Telerik.WinControls.UI.RadLabel();
            this.lsvInsurances = new Telerik.WinControls.UI.RadListView();
            this.lblFinalServiceCost = new Telerik.WinControls.UI.RadLabel();
            this.btnPercent = new Telerik.WinControls.UI.RadButton();
            this.cmbService = new Telerik.WinControls.UI.RadDropDownList();
            this.cmbCategories = new Telerik.WinControls.UI.RadDropDownList();
            this.btnAdd = new Telerik.WinControls.UI.RadButton();
            this.btnNew = new Telerik.WinControls.UI.RadButton();
            this.radLabel11 = new Telerik.WinControls.UI.RadLabel();
            this.txtServiceCost = new Telerik.WinControls.UI.RadTextBox();
            this.radLabel8 = new Telerik.WinControls.UI.RadLabel();
            this.radLabel7 = new Telerik.WinControls.UI.RadLabel();
            this.radPageViewPage2 = new Telerik.WinControls.UI.RadPageViewPage();
            this.radGroupBox5 = new Telerik.WinControls.UI.RadGroupBox();
            this.cmbPrescription = new Telerik.WinControls.UI.RadDropDownList();
            this.grvPrescriptionDrug = new Telerik.WinControls.UI.RadGridView();
            this.btnAddPrescription = new Telerik.WinControls.UI.RadButton();
            this.radLabel18 = new Telerik.WinControls.UI.RadLabel();
            this.radGroupBox6 = new Telerik.WinControls.UI.RadGroupBox();
            this.btnPrintPrescription = new Telerik.WinControls.UI.RadButton();
            this.grvDrugs = new Telerik.WinControls.UI.RadGridView();
            this.radGroupBox2 = new Telerik.WinControls.UI.RadGroupBox();
            this.cmbDrugs = new Telerik.WinControls.UI.RadDropDownList();
            this.btnAddDrug = new Telerik.WinControls.UI.RadButton();
            this.btnNewDrug = new Telerik.WinControls.UI.RadButton();
            this.radLabel20 = new Telerik.WinControls.UI.RadLabel();
            this.radLabel22 = new Telerik.WinControls.UI.RadLabel();
            this.txtManual = new Telerik.WinControls.UI.RadTextBox();
            this.srcDrug = new System.Windows.Forms.BindingSource(this.components);
            this.btnSave = new Telerik.WinControls.UI.RadButton();
            this.btnCancel = new Telerik.WinControls.UI.RadButton();
            this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
            this.btnRemove = new Telerik.WinControls.UI.RadButton();
            this.btnPrintVisit = new Telerik.WinControls.UI.RadButton();
            ((System.ComponentModel.ISupportInitialize)(this.radPageView1)).BeginInit();
            this.radPageView1.SuspendLayout();
            this.radPageViewPage1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).BeginInit();
            this.radGroupBox1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox4)).BeginInit();
            this.radGroupBox4.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grvPastServices)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.grvPastServices.MasterTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cmbPatient)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cmbPatient.EditorControl)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cmbPatient.EditorControl.MasterTemplate)).BeginInit();
            this.cmbPatient.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radMultiColumnComboBox1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radMultiColumnComboBox1.EditorControl)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radMultiColumnComboBox1.EditorControl.MasterTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.srcItem)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cmbDoctor)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel9)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radTextBox1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel6)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel5)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.lblBedehi)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnDocument)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.tpTo)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.tpFrom)).BeginInit();
            this.radPageViewPage3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox3)).BeginInit();
            this.radGroupBox3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grvServices)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.grvServices.MasterTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel16)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.lblFinalSumCost)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.grbService)).BeginInit();
            this.grbService.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.txtTakhfif)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.srcService)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel13)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel10)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtComment)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel12)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel14)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.lsvInsurances)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.lblFinalServiceCost)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnPercent)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cmbService)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cmbCategories)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnAdd)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnNew)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel11)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtServiceCost)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel8)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel7)).BeginInit();
            this.radPageViewPage2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox5)).BeginInit();
            this.radGroupBox5.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.cmbPrescription)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.grvPrescriptionDrug)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.grvPrescriptionDrug.MasterTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnAddPrescription)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel18)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox6)).BeginInit();
            this.radGroupBox6.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.btnPrintPrescription)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.grvDrugs)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.grvDrugs.MasterTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox2)).BeginInit();
            this.radGroupBox2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.cmbDrugs)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnAddDrug)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnNewDrug)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel20)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel22)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtManual)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.srcDrug)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnSave)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnCancel)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnRemove)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnPrintVisit)).BeginInit();
            this.SuspendLayout();
            // 
            // radPageView1
            // 
            this.radPageView1.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.radPageView1.Controls.Add(this.radPageViewPage1);
            this.radPageView1.Controls.Add(this.radPageViewPage3);
            this.radPageView1.Controls.Add(this.radPageViewPage2);
            this.radPageView1.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold);
            this.radPageView1.Location = new System.Drawing.Point(2, 3);
            this.radPageView1.Name = "radPageView1";
            this.radPageView1.SelectedPage = this.radPageViewPage1;
            this.radPageView1.Size = new System.Drawing.Size(980, 516);
            this.radPageView1.TabIndex = 0;
            this.radPageView1.Text = "radPageView1";
            ((Telerik.WinControls.UI.RadPageViewStripElement)(this.radPageView1.GetChildAt(0))).StripButtons = Telerik.WinControls.UI.StripViewButtons.None;
            // 
            // radPageViewPage1
            // 
            this.radPageViewPage1.Controls.Add(this.radGroupBox1);
            this.radPageViewPage1.Location = new System.Drawing.Point(10, 49);
            this.radPageViewPage1.Name = "radPageViewPage1";
            this.radPageViewPage1.Size = new System.Drawing.Size(959, 456);
            this.radPageViewPage1.Text = "ویزیت";
            // 
            // radGroupBox1
            // 
            this.radGroupBox1.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox1.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.radGroupBox1.Controls.Add(this.radGroupBox4);
            this.radGroupBox1.Controls.Add(this.cmbPatient);
            this.radGroupBox1.Controls.Add(this.cmbDoctor);
            this.radGroupBox1.Controls.Add(this.radLabel9);
            this.radGroupBox1.Controls.Add(this.radTextBox1);
            this.radGroupBox1.Controls.Add(this.radLabel6);
            this.radGroupBox1.Controls.Add(this.faDatePicker1);
            this.radGroupBox1.Controls.Add(this.radLabel5);
            this.radGroupBox1.Controls.Add(this.lblBedehi);
            this.radGroupBox1.Controls.Add(this.btnDocument);
            this.radGroupBox1.Controls.Add(this.radLabel4);
            this.radGroupBox1.Controls.Add(this.radLabel2);
            this.radGroupBox1.Controls.Add(this.tpTo);
            this.radGroupBox1.Controls.Add(this.radLabel1);
            this.radGroupBox1.Controls.Add(this.radLabel3);
            this.radGroupBox1.Controls.Add(this.tpFrom);
            this.radGroupBox1.Font = new System.Drawing.Font("B Titr", 9F, System.Drawing.FontStyle.Bold);
            this.radGroupBox1.FooterImageIndex = -1;
            this.radGroupBox1.FooterImageKey = "";
            this.radGroupBox1.HeaderImageIndex = -1;
            this.radGroupBox1.HeaderImageKey = "";
            this.radGroupBox1.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.radGroupBox1.HeaderText = "ویزیت";
            this.radGroupBox1.Location = new System.Drawing.Point(2, 3);
            this.radGroupBox1.Name = "radGroupBox1";
            this.radGroupBox1.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            // 
            // 
            // 
            this.radGroupBox1.RootElement.MinSize = new System.Drawing.Size(0, 0);
            this.radGroupBox1.Size = new System.Drawing.Size(954, 453);
            this.radGroupBox1.TabIndex = 3;
            this.radGroupBox1.Text = "ویزیت";
            // 
            // radGroupBox4
            // 
            this.radGroupBox4.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox4.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.radGroupBox4.Controls.Add(this.grvPastServices);
            this.radGroupBox4.Font = new System.Drawing.Font("B Titr", 9F, System.Drawing.FontStyle.Bold);
            this.radGroupBox4.FooterImageIndex = -1;
            this.radGroupBox4.FooterImageKey = "";
            this.radGroupBox4.HeaderImageIndex = -1;
            this.radGroupBox4.HeaderImageKey = "";
            this.radGroupBox4.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.radGroupBox4.HeaderText = "سابقه بیمار";
            this.radGroupBox4.Location = new System.Drawing.Point(10, 211);
            this.radGroupBox4.Name = "radGroupBox4";
            this.radGroupBox4.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox4.Size = new System.Drawing.Size(936, 237);
            this.radGroupBox4.TabIndex = 18;
            this.radGroupBox4.Text = "سابقه بیمار";
            // 
            // grvPastServices
            // 
            this.grvPastServices.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.grvPastServices.Font = new System.Drawing.Font("B Lotus", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.grvPastServices.Location = new System.Drawing.Point(5, 31);
            // 
            // grvPastServices
            // 
            this.grvPastServices.MasterTemplate.AllowAddNewRow = false;
            this.grvPastServices.MasterTemplate.AllowCellContextMenu = false;
            this.grvPastServices.MasterTemplate.AllowColumnChooser = false;
            this.grvPastServices.MasterTemplate.AllowColumnHeaderContextMenu = false;
            this.grvPastServices.MasterTemplate.AllowColumnReorder = false;
            this.grvPastServices.MasterTemplate.AllowDeleteRow = false;
            this.grvPastServices.MasterTemplate.AllowDragToGroup = false;
            this.grvPastServices.MasterTemplate.AllowEditRow = false;
            this.grvPastServices.MasterTemplate.AllowRowResize = false;
            this.grvPastServices.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
            gridViewTextBoxColumn23.FieldName = "ToothDescription";
            gridViewTextBoxColumn23.HeaderText = "سرویس";
            gridViewTextBoxColumn23.Name = "column1";
            gridViewTextBoxColumn23.Width = 462;
            gridViewTextBoxColumn24.FieldName = "FinalCost";
            gridViewTextBoxColumn24.FormatString = "{0:0,0 ریال}";
            gridViewTextBoxColumn24.HeaderText = "قیمت";
            gridViewTextBoxColumn24.Name = "column4";
            gridViewTextBoxColumn24.Width = 326;
            gridViewTextBoxColumn25.FieldName = "PersianDate";
            gridViewTextBoxColumn25.FormatString = "";
            gridViewTextBoxColumn25.HeaderText = "تاریخ";
            gridViewTextBoxColumn25.Name = "column3";
            gridViewTextBoxColumn25.StretchVertically = false;
            gridViewTextBoxColumn25.Width = 139;
            this.grvPastServices.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn23,
            gridViewTextBoxColumn24,
            gridViewTextBoxColumn25});
            this.grvPastServices.MasterTemplate.EnableFiltering = true;
            this.grvPastServices.MasterTemplate.EnableGrouping = false;
            this.grvPastServices.MasterTemplate.ShowFilteringRow = false;
            this.grvPastServices.MasterTemplate.ShowRowHeaderColumn = false;
            this.grvPastServices.Name = "grvPastServices";
            this.grvPastServices.ReadOnly = true;
            this.grvPastServices.ShowGroupPanel = false;
            this.grvPastServices.Size = new System.Drawing.Size(926, 201);
            this.grvPastServices.TabIndex = 13;
            // 
            // cmbPatient
            // 
            this.cmbPatient.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.cmbPatient.AutoFilter = true;
            this.cmbPatient.Controls.Add(this.radMultiColumnComboBox1);
            this.cmbPatient.DataBindings.Add(new System.Windows.Forms.Binding("SelectedItem", this.srcItem, "Patient", true));
            this.cmbPatient.DisplayMember = "FirstName";
            this.cmbPatient.DropDownSizingMode = ((Telerik.WinControls.UI.SizingMode)((Telerik.WinControls.UI.SizingMode.RightBottom | Telerik.WinControls.UI.SizingMode.UpDown)));
            // 
            // cmbPatient.NestedRadGridView
            // 
            this.cmbPatient.EditorControl.BackColor = System.Drawing.SystemColors.Window;
            this.cmbPatient.EditorControl.BeginEditMode = Telerik.WinControls.RadGridViewBeginEditMode.BeginEditOnKeystroke;
            this.cmbPatient.EditorControl.Cursor = System.Windows.Forms.Cursors.Default;
            this.cmbPatient.EditorControl.Font = new System.Drawing.Font("B Nazanin", 9.5F, System.Drawing.FontStyle.Bold);
            this.cmbPatient.EditorControl.ForeColor = System.Drawing.SystemColors.ControlText;
            this.cmbPatient.EditorControl.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.cmbPatient.EditorControl.Location = new System.Drawing.Point(0, 0);
            // 
            // 
            // 
            this.cmbPatient.EditorControl.MasterTemplate.AllowAddNewRow = false;
            this.cmbPatient.EditorControl.MasterTemplate.AllowCellContextMenu = false;
            this.cmbPatient.EditorControl.MasterTemplate.AllowColumnChooser = false;
            this.cmbPatient.EditorControl.MasterTemplate.AllowColumnReorder = false;
            this.cmbPatient.EditorControl.MasterTemplate.AllowDeleteRow = false;
            this.cmbPatient.EditorControl.MasterTemplate.AllowDragToGroup = false;
            this.cmbPatient.EditorControl.MasterTemplate.AllowEditRow = false;
            this.cmbPatient.EditorControl.MasterTemplate.AllowRowResize = false;
            this.cmbPatient.EditorControl.MasterTemplate.AutoGenerateColumns = false;
            this.cmbPatient.EditorControl.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
            gridViewTextBoxColumn26.EnableExpressionEditor = false;
            gridViewTextBoxColumn26.FieldName = "PatientName";
            gridViewTextBoxColumn26.HeaderText = "نام";
            gridViewTextBoxColumn26.Name = "PatientName";
            gridViewTextBoxColumn26.Width = 128;
            gridViewTextBoxColumn27.EnableExpressionEditor = false;
            gridViewTextBoxColumn27.FieldName = "AccountantCode";
            gridViewTextBoxColumn27.HeaderText = "کد";
            gridViewTextBoxColumn27.Name = "AccountantCode";
            gridViewTextBoxColumn27.Width = 112;
            this.cmbPatient.EditorControl.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn26,
            gridViewTextBoxColumn27});
            this.cmbPatient.EditorControl.MasterTemplate.EnableAlternatingRowColor = true;
            this.cmbPatient.EditorControl.MasterTemplate.EnableFiltering = true;
            this.cmbPatient.EditorControl.MasterTemplate.EnableGrouping = false;
            this.cmbPatient.EditorControl.MasterTemplate.EnableSorting = false;
            filterDescriptor3.PropertyName = null;
            this.cmbPatient.EditorControl.MasterTemplate.FilterDescriptors.AddRange(new Telerik.WinControls.Data.FilterDescriptor[] {
            filterDescriptor3});
            this.cmbPatient.EditorControl.MasterTemplate.ShowFilteringRow = false;
            this.cmbPatient.EditorControl.MasterTemplate.ShowRowHeaderColumn = false;
            this.cmbPatient.EditorControl.Name = "NestedRadGridView";
            this.cmbPatient.EditorControl.ReadOnly = true;
            this.cmbPatient.EditorControl.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.cmbPatient.EditorControl.ShowGroupPanel = false;
            this.cmbPatient.EditorControl.Size = new System.Drawing.Size(240, 150);
            this.cmbPatient.EditorControl.TabIndex = 0;
            this.cmbPatient.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.cmbPatient.Location = new System.Drawing.Point(733, 33);
            this.cmbPatient.Name = "cmbPatient";
            // 
            // 
            // 
            this.cmbPatient.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
            this.cmbPatient.Size = new System.Drawing.Size(166, 28);
            this.cmbPatient.TabIndex = 17;
            this.cmbPatient.TabStop = false;
            this.cmbPatient.SelectedIndexChanged += new System.EventHandler(this.cmbPatient_SelectedIndexChanged);
            // 
            // radMultiColumnComboBox1
            // 
            this.radMultiColumnComboBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.radMultiColumnComboBox1.AutoFilter = true;
            this.radMultiColumnComboBox1.DisplayMember = "FirstName";
            this.radMultiColumnComboBox1.DropDownSizingMode = ((Telerik.WinControls.UI.SizingMode)((Telerik.WinControls.UI.SizingMode.RightBottom | Telerik.WinControls.UI.SizingMode.UpDown)));
            // 
            // radMultiColumnComboBox1.NestedRadGridView
            // 
            this.radMultiColumnComboBox1.EditorControl.BackColor = System.Drawing.SystemColors.Window;
            this.radMultiColumnComboBox1.EditorControl.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.radMultiColumnComboBox1.EditorControl.ForeColor = System.Drawing.SystemColors.ControlText;
            this.radMultiColumnComboBox1.EditorControl.Location = new System.Drawing.Point(0, 0);
            // 
            // 
            // 
            this.radMultiColumnComboBox1.EditorControl.MasterTemplate.AllowAddNewRow = false;
            this.radMultiColumnComboBox1.EditorControl.MasterTemplate.AllowCellContextMenu = false;
            this.radMultiColumnComboBox1.EditorControl.MasterTemplate.AllowColumnChooser = false;
            this.radMultiColumnComboBox1.EditorControl.MasterTemplate.EnableFiltering = true;
            this.radMultiColumnComboBox1.EditorControl.MasterTemplate.EnableGrouping = false;
            this.radMultiColumnComboBox1.EditorControl.MasterTemplate.ShowFilteringRow = false;
            this.radMultiColumnComboBox1.EditorControl.Name = "NestedRadGridView";
            this.radMultiColumnComboBox1.EditorControl.ReadOnly = true;
            this.radMultiColumnComboBox1.EditorControl.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.radMultiColumnComboBox1.EditorControl.ShowGroupPanel = false;
            this.radMultiColumnComboBox1.EditorControl.Size = new System.Drawing.Size(240, 150);
            this.radMultiColumnComboBox1.EditorControl.TabIndex = 0;
            this.radMultiColumnComboBox1.Location = new System.Drawing.Point(339, -39);
            this.radMultiColumnComboBox1.Name = "radMultiColumnComboBox1";
            // 
            // 
            // 
            this.radMultiColumnComboBox1.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
            this.radMultiColumnComboBox1.Size = new System.Drawing.Size(153, 20);
            this.radMultiColumnComboBox1.TabIndex = 19;
            this.radMultiColumnComboBox1.TabStop = false;
            // 
            // srcItem
            // 
            this.srcItem.DataSource = typeof(Shayan.Data.Visit);
            // 
            // cmbDoctor
            // 
            this.cmbDoctor.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.cmbDoctor.AutoCompleteDisplayMember = "Title";
            this.cmbDoctor.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
            this.cmbDoctor.DataBindings.Add(new System.Windows.Forms.Binding("SelectedItem", this.srcItem, "Doctor", true));
            this.cmbDoctor.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.srcItem, "Doctor", true));
            this.cmbDoctor.DisplayMember = "Title";
            this.cmbDoctor.DropDownAnimationEnabled = true;
            this.cmbDoctor.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.cmbDoctor.Location = new System.Drawing.Point(733, 66);
            this.cmbDoctor.MaxDropDownItems = 0;
            this.cmbDoctor.Name = "cmbDoctor";
            this.cmbDoctor.ShowImageInEditorArea = true;
            this.cmbDoctor.Size = new System.Drawing.Size(166, 28);
            this.cmbDoctor.TabIndex = 1;
            // 
            // radLabel9
            // 
            this.radLabel9.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.radLabel9.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.radLabel9.Location = new System.Drawing.Point(901, 66);
            this.radLabel9.Name = "radLabel9";
            this.radLabel9.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.radLabel9.Size = new System.Drawing.Size(50, 30);
            this.radLabel9.TabIndex = 9;
            this.radLabel9.Text = "پزشک :";
            this.radLabel9.TextAlignment = System.Drawing.ContentAlignment.TopRight;
            // 
            // radTextBox1
            // 
            this.radTextBox1.AcceptsReturn = true;
            this.radTextBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.radTextBox1.AutoScroll = true;
            this.radTextBox1.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.srcItem, "Comment", true));
            this.radTextBox1.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.radTextBox1.Location = new System.Drawing.Point(10, 125);
            this.radTextBox1.Multiline = true;
            this.radTextBox1.Name = "radTextBox1";
            // 
            // 
            // 
            this.radTextBox1.RootElement.StretchVertically = true;
            this.radTextBox1.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
            this.radTextBox1.Size = new System.Drawing.Size(889, 80);
            this.radTextBox1.TabIndex = 5;
            this.radTextBox1.TabStop = false;
            this.radTextBox1.TextChanging += new Telerik.WinControls.TextChangingEventHandler(this.txtComment_TextChanging);
            // 
            // radLabel6
            // 
            this.radLabel6.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.radLabel6.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.radLabel6.Location = new System.Drawing.Point(900, 122);
            this.radLabel6.Name = "radLabel6";
            this.radLabel6.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.radLabel6.Size = new System.Drawing.Size(49, 30);
            this.radLabel6.TabIndex = 15;
            this.radLabel6.Text = "توضیح :";
            this.radLabel6.TextAlignment = System.Drawing.ContentAlignment.TopRight;
            // 
            // faDatePicker1
            // 
            this.faDatePicker1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.faDatePicker1.DataBindings.Add(new System.Windows.Forms.Binding("SelectedDateTime", this.srcItem, "Date", true));
            this.faDatePicker1.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.faDatePicker1.Location = new System.Drawing.Point(733, 96);
            this.faDatePicker1.Multiline = true;
            this.faDatePicker1.Name = "faDatePicker1";
            this.faDatePicker1.Size = new System.Drawing.Size(166, 28);
            this.faDatePicker1.TabIndex = 2;
            // 
            // radLabel5
            // 
            this.radLabel5.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.radLabel5.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.radLabel5.Location = new System.Drawing.Point(603, 32);
            this.radLabel5.Name = "radLabel5";
            this.radLabel5.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.radLabel5.Size = new System.Drawing.Size(42, 30);
            this.radLabel5.TabIndex = 6;
            this.radLabel5.Text = "بدهی :";
            this.radLabel5.TextAlignment = System.Drawing.ContentAlignment.TopRight;
            // 
            // lblBedehi
            // 
            this.lblBedehi.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.lblBedehi.AutoSize = false;
            this.lblBedehi.Font = new System.Drawing.Font("B Nazanin", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.lblBedehi.Location = new System.Drawing.Point(316, 35);
            this.lblBedehi.Name = "lblBedehi";
            this.lblBedehi.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.lblBedehi.Size = new System.Drawing.Size(304, 23);
            this.lblBedehi.TabIndex = 7;
            this.lblBedehi.Text = "0 ریال";
            this.lblBedehi.TextAlignment = System.Drawing.ContentAlignment.TopRight;
            // 
            // btnDocument
            // 
            this.btnDocument.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.btnDocument.Enabled = false;
            this.btnDocument.Font = new System.Drawing.Font("B Nazanin", 10.5F, System.Drawing.FontStyle.Bold);
            this.btnDocument.Location = new System.Drawing.Point(655, 34);
            this.btnDocument.Name = "btnDocument";
            this.btnDocument.Size = new System.Drawing.Size(72, 27);
            this.btnDocument.TabIndex = 9;
            this.btnDocument.Text = "پرونده بیمار";
            this.btnDocument.Click += new System.EventHandler(this.btnDocument_Click);
            // 
            // radLabel4
            // 
            this.radLabel4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.radLabel4.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.radLabel4.Location = new System.Drawing.Point(506, 93);
            this.radLabel4.Name = "radLabel4";
            this.radLabel4.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.radLabel4.Size = new System.Drawing.Size(57, 30);
            this.radLabel4.TabIndex = 6;
            this.radLabel4.Text = "تا ساعت :";
            this.radLabel4.TextAlignment = System.Drawing.ContentAlignment.TopRight;
            // 
            // radLabel2
            // 
            this.radLabel2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.radLabel2.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.radLabel2.Location = new System.Drawing.Point(902, 96);
            this.radLabel2.Name = "radLabel2";
            this.radLabel2.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.radLabel2.Size = new System.Drawing.Size(42, 30);
            this.radLabel2.TabIndex = 6;
            this.radLabel2.Text = "تاریخ :";
            this.radLabel2.TextAlignment = System.Drawing.ContentAlignment.TopRight;
            // 
            // tpTo
            // 
            this.tpTo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.tpTo.DataBindings.Add(new System.Windows.Forms.Binding("Value", this.srcItem, "ToTime", true));
            this.tpTo.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.tpTo.HeadersHeight = 19;
            this.tpTo.Location = new System.Drawing.Point(402, 93);
            this.tpTo.Name = "tpTo";
            this.tpTo.Size = new System.Drawing.Size(103, 28);
            this.tpTo.TabIndex = 4;
            this.tpTo.TabStop = false;
            this.tpTo.Text = "radTimePicker1";
            this.tpTo.Value = new System.DateTime(2012, 7, 31, 11, 14, 20, 0);
            // 
            // radLabel1
            // 
            this.radLabel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.radLabel1.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.radLabel1.Location = new System.Drawing.Point(902, 30);
            this.radLabel1.Name = "radLabel1";
            this.radLabel1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.radLabel1.Size = new System.Drawing.Size(38, 30);
            this.radLabel1.TabIndex = 5;
            this.radLabel1.Text = "بیمار :";
            this.radLabel1.TextAlignment = System.Drawing.ContentAlignment.TopRight;
            // 
            // radLabel3
            // 
            this.radLabel3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.radLabel3.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.radLabel3.Location = new System.Drawing.Point(667, 95);
            this.radLabel3.Name = "radLabel3";
            this.radLabel3.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.radLabel3.Size = new System.Drawing.Size(59, 30);
            this.radLabel3.TabIndex = 4;
            this.radLabel3.Text = "از ساعت :";
            this.radLabel3.TextAlignment = System.Drawing.ContentAlignment.TopRight;
            // 
            // tpFrom
            // 
            this.tpFrom.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.tpFrom.DataBindings.Add(new System.Windows.Forms.Binding("Value", this.srcItem, "FromTime", true));
            this.tpFrom.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.tpFrom.HeadersHeight = 19;
            this.tpFrom.Location = new System.Drawing.Point(565, 95);
            this.tpFrom.Name = "tpFrom";
            this.tpFrom.Size = new System.Drawing.Size(101, 28);
            this.tpFrom.TabIndex = 3;
            this.tpFrom.TabStop = false;
            this.tpFrom.Text = "radTimePicker1";
            this.tpFrom.Value = new System.DateTime(2012, 7, 31, 11, 14, 20, 0);
            // 
            // radPageViewPage3
            // 
            this.radPageViewPage3.Controls.Add(this.radGroupBox3);
            this.radPageViewPage3.Controls.Add(this.grbService);
            this.radPageViewPage3.Location = new System.Drawing.Point(10, 49);
            this.radPageViewPage3.Name = "radPageViewPage3";
            this.radPageViewPage3.Size = new System.Drawing.Size(959, 456);
            this.radPageViewPage3.Text = "خدمات";
            // 
            // radGroupBox3
            // 
            this.radGroupBox3.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox3.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.radGroupBox3.Controls.Add(this.grvServices);
            this.radGroupBox3.Controls.Add(this.radLabel16);
            this.radGroupBox3.Controls.Add(this.lblFinalSumCost);
            this.radGroupBox3.Font = new System.Drawing.Font("B Titr", 9F, System.Drawing.FontStyle.Bold);
            this.radGroupBox3.FooterImageIndex = -1;
            this.radGroupBox3.FooterImageKey = "";
            this.radGroupBox3.HeaderImageIndex = -1;
            this.radGroupBox3.HeaderImageKey = "";
            this.radGroupBox3.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.radGroupBox3.HeaderText = "لیست خدمات";
            this.radGroupBox3.Location = new System.Drawing.Point(3, 3);
            this.radGroupBox3.Name = "radGroupBox3";
            this.radGroupBox3.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox3.Size = new System.Drawing.Size(236, 454);
            this.radGroupBox3.TabIndex = 6;
            this.radGroupBox3.Text = "لیست خدمات";
            // 
            // grvServices
            // 
            this.grvServices.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.grvServices.AutoScroll = true;
            this.grvServices.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(240)))), ((int)(((byte)(249)))));
            this.grvServices.Cursor = System.Windows.Forms.Cursors.Default;
            this.grvServices.Font = new System.Drawing.Font("B Lotus", 11.25F, System.Drawing.FontStyle.Bold);
            this.grvServices.ForeColor = System.Drawing.Color.Black;
            this.grvServices.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.grvServices.Location = new System.Drawing.Point(5, 33);
            // 
            // grvServices
            // 
            this.grvServices.MasterTemplate.AllowAddNewRow = false;
            this.grvServices.MasterTemplate.AllowCellContextMenu = false;
            this.grvServices.MasterTemplate.AllowColumnChooser = false;
            this.grvServices.MasterTemplate.AllowColumnHeaderContextMenu = false;
            this.grvServices.MasterTemplate.AllowColumnReorder = false;
            this.grvServices.MasterTemplate.AllowDeleteRow = false;
            this.grvServices.MasterTemplate.AllowDragToGroup = false;
            this.grvServices.MasterTemplate.AllowEditRow = false;
            this.grvServices.MasterTemplate.AllowRowResize = false;
            this.grvServices.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
            gridViewTextBoxColumn28.EnableExpressionEditor = false;
            gridViewTextBoxColumn28.FieldName = "ToothDescription";
            gridViewTextBoxColumn28.HeaderText = "سرویس";
            gridViewTextBoxColumn28.Name = "column1";
            gridViewTextBoxColumn28.Width = 162;
            gridViewTextBoxColumn29.EnableExpressionEditor = false;
            gridViewTextBoxColumn29.FieldName = "FinalCost";
            gridViewTextBoxColumn29.FormatString = "{0:0,0 ریال}";
            gridViewTextBoxColumn29.HeaderText = "قیمت";
            gridViewTextBoxColumn29.Name = "column4";
            gridViewTextBoxColumn29.Width = 34;
            gridViewCommandColumn5.AllowHide = false;
            gridViewCommandColumn5.AllowReorder = false;
            gridViewCommandColumn5.AllowResize = false;
            gridViewCommandColumn5.AllowSort = false;
            gridViewCommandColumn5.EnableExpressionEditor = false;
            gridViewCommandColumn5.HeaderText = "حذف";
            gridViewCommandColumn5.IsPinned = true;
            gridViewCommandColumn5.Name = "column3";
            gridViewCommandColumn5.PinPosition = Telerik.WinControls.UI.PinnedColumnPosition.Right;
            gridViewCommandColumn5.Width = 30;
            this.grvServices.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn28,
            gridViewTextBoxColumn29,
            gridViewCommandColumn5});
            this.grvServices.MasterTemplate.EnableFiltering = true;
            this.grvServices.MasterTemplate.EnableGrouping = false;
            this.grvServices.MasterTemplate.ShowFilteringRow = false;
            this.grvServices.MasterTemplate.ShowRowHeaderColumn = false;
            this.grvServices.Name = "grvServices";
            this.grvServices.ReadOnly = true;
            this.grvServices.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.grvServices.Size = new System.Drawing.Size(226, 386);
            this.grvServices.TabIndex = 12;
            this.grvServices.CellFormatting += new Telerik.WinControls.UI.CellFormattingEventHandler(this.grvItems_CellFormatting);
            this.grvServices.CurrentRowChanging += new Telerik.WinControls.UI.CurrentRowChangingEventHandler(this.grvServices_CurrentRowChanging);
            this.grvServices.SelectionChanged += new System.EventHandler(this.grvServices_SelectionChanged);
            this.grvServices.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.grvItems_CommandCellClick);
            this.grvServices.KeyDown += new System.Windows.Forms.KeyEventHandler(this.grvServices_KeyDown);
            // 
            // radLabel16
            // 
            this.radLabel16.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.radLabel16.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.radLabel16.Location = new System.Drawing.Point(134, 420);
            this.radLabel16.Name = "radLabel16";
            this.radLabel16.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.radLabel16.Size = new System.Drawing.Size(97, 30);
            this.radLabel16.TabIndex = 10;
            this.radLabel16.Text = "مجموع هزینه ها :";
            this.radLabel16.TextAlignment = System.Drawing.ContentAlignment.TopRight;
            // 
            // lblFinalSumCost
            // 
            this.lblFinalSumCost.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.lblFinalSumCost.AutoSize = false;
            this.lblFinalSumCost.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.srcItem, "FinalSumCost", true, System.Windows.Forms.DataSourceUpdateMode.OnValidation, "صفر", "0,0 ریال"));
            this.lblFinalSumCost.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.lblFinalSumCost.Location = new System.Drawing.Point(5, 421);
            this.lblFinalSumCost.Name = "lblFinalSumCost";
            this.lblFinalSumCost.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.lblFinalSumCost.Size = new System.Drawing.Size(130, 24);
            this.lblFinalSumCost.TabIndex = 11;
            this.lblFinalSumCost.Text = "0";
            this.lblFinalSumCost.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // grbService
            // 
            this.grbService.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.grbService.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.grbService.Controls.Add(this.txtTakhfif);
            this.grbService.Controls.Add(this.radLabel13);
            this.grbService.Controls.Add(this.radLabel10);
            this.grbService.Controls.Add(this.txtComment);
            this.grbService.Controls.Add(this.radLabel12);
            this.grbService.Controls.Add(this.ucTooth1);
            this.grbService.Controls.Add(this.radLabel14);
            this.grbService.Controls.Add(this.lsvInsurances);
            this.grbService.Controls.Add(this.lblFinalServiceCost);
            this.grbService.Controls.Add(this.btnPercent);
            this.grbService.Controls.Add(this.cmbService);
            this.grbService.Controls.Add(this.cmbCategories);
            this.grbService.Controls.Add(this.btnAdd);
            this.grbService.Controls.Add(this.btnNew);
            this.grbService.Controls.Add(this.radLabel11);
            this.grbService.Controls.Add(this.txtServiceCost);
            this.grbService.Controls.Add(this.radLabel8);
            this.grbService.Controls.Add(this.radLabel7);
            this.grbService.Enabled = false;
            this.grbService.Font = new System.Drawing.Font("B Titr", 9F, System.Drawing.FontStyle.Bold);
            this.grbService.FooterImageIndex = -1;
            this.grbService.FooterImageKey = "";
            this.grbService.HeaderImageIndex = -1;
            this.grbService.HeaderImageKey = "";
            this.grbService.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.grbService.HeaderText = "ارائه خدمات";
            this.grbService.Location = new System.Drawing.Point(242, 3);
            this.grbService.Name = "grbService";
            this.grbService.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            // 
            // 
            // 
            this.grbService.RootElement.MinSize = new System.Drawing.Size(0, 0);
            this.grbService.Size = new System.Drawing.Size(714, 454);
            this.grbService.TabIndex = 5;
            this.grbService.Text = "ارائه خدمات";
            // 
            // txtTakhfif
            // 
            this.txtTakhfif.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.txtTakhfif.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.srcService, "Discount", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged, null, "N0"));
            this.txtTakhfif.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.txtTakhfif.Location = new System.Drawing.Point(311, 64);
            this.txtTakhfif.Name = "txtTakhfif";
            this.txtTakhfif.Size = new System.Drawing.Size(70, 28);
            this.txtTakhfif.TabIndex = 9;
            this.txtTakhfif.TabStop = false;
            this.txtTakhfif.TextChanging += new Telerik.WinControls.TextChangingEventHandler(this.txtSalary_TextChanging);
            this.txtTakhfif.TextChanged += new System.EventHandler(this.txtTakhfif_TextChanged);
            // 
            // srcService
            // 
            this.srcService.DataSource = typeof(Shayan.Data.VisitService);
            // 
            // radLabel13
            // 
            this.radLabel13.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.radLabel13.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.radLabel13.Location = new System.Drawing.Point(639, 91);
            this.radLabel13.Name = "radLabel13";
            this.radLabel13.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.radLabel13.Size = new System.Drawing.Size(49, 30);
            this.radLabel13.TabIndex = 17;
            this.radLabel13.Text = "توضیح :";
            this.radLabel13.TextAlignment = System.Drawing.ContentAlignment.TopRight;
            // 
            // radLabel10
            // 
            this.radLabel10.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.radLabel10.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.radLabel10.Location = new System.Drawing.Point(363, 31);
            this.radLabel10.Name = "radLabel10";
            this.radLabel10.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.radLabel10.Size = new System.Drawing.Size(107, 30);
            this.radLabel10.TabIndex = 9;
            this.radLabel10.Text = "هزینه واحد (ریال) :";
            this.radLabel10.TextAlignment = System.Drawing.ContentAlignment.TopRight;
            // 
            // txtComment
            // 
            this.txtComment.AcceptsReturn = true;
            this.txtComment.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtComment.AutoScroll = true;
            this.txtComment.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.srcService, "Comment", true));
            this.txtComment.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.txtComment.Location = new System.Drawing.Point(266, 96);
            this.txtComment.Multiline = true;
            this.txtComment.Name = "txtComment";
            // 
            // 
            // 
            this.txtComment.RootElement.StretchVertically = true;
            this.txtComment.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
            this.txtComment.Size = new System.Drawing.Size(372, 108);
            this.txtComment.TabIndex = 16;
            this.txtComment.TabStop = false;
            // 
            // radLabel12
            // 
            this.radLabel12.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.radLabel12.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.radLabel12.Location = new System.Drawing.Point(208, 31);
            this.radLabel12.Name = "radLabel12";
            this.radLabel12.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.radLabel12.Size = new System.Drawing.Size(49, 30);
            this.radLabel12.TabIndex = 9;
            this.radLabel12.Text = "بیمه ها :";
            this.radLabel12.TextAlignment = System.Drawing.ContentAlignment.TopRight;
            // 
            // ucTooth1
            // 
            this.ucTooth1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.ucTooth1.ChildTooth = false;
            this.ucTooth1.DataBindings.Add(new System.Windows.Forms.Binding("SelectedTooths", this.srcService, "Tooth", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.ucTooth1.Location = new System.Drawing.Point(5, 211);
            this.ucTooth1.Name = "ucTooth1";
            this.ucTooth1.ReadOnly = false;
            this.ucTooth1.SelectedTooths = ((long)(0));
            this.ucTooth1.Size = new System.Drawing.Size(699, 195);
            this.ucTooth1.TabIndex = 15;
            // 
            // radLabel14
            // 
            this.radLabel14.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.radLabel14.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.radLabel14.Location = new System.Drawing.Point(367, 413);
            this.radLabel14.Name = "radLabel14";
            this.radLabel14.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.radLabel14.Size = new System.Drawing.Size(121, 30);
            this.radLabel14.TabIndex = 8;
            this.radLabel14.Text = "هزینه نهایی سرویس :";
            this.radLabel14.TextAlignment = System.Drawing.ContentAlignment.TopRight;
            // 
            // lsvInsurances
            // 
            this.lsvInsurances.AllowColumnReorder = false;
            this.lsvInsurances.AllowColumnResize = false;
            this.lsvInsurances.AllowEdit = false;
            this.lsvInsurances.AllowRemove = false;
            this.lsvInsurances.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            listViewDetailColumn1.HeaderText = "نام بیمه";
            this.lsvInsurances.Columns.AddRange(new Telerik.WinControls.UI.ListViewDetailColumn[] {
            listViewDetailColumn1});
            this.lsvInsurances.Font = new System.Drawing.Font("B Lotus", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.lsvInsurances.GroupItemSize = new System.Drawing.Size(200, 20);
            this.lsvInsurances.ItemSize = new System.Drawing.Size(200, 20);
            this.lsvInsurances.ItemSpacing = -1;
            this.lsvInsurances.Location = new System.Drawing.Point(5, 33);
            this.lsvInsurances.Name = "lsvInsurances";
            this.lsvInsurances.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.lsvInsurances.ShowCheckBoxes = true;
            this.lsvInsurances.ShowColumnHeaders = false;
            this.lsvInsurances.ShowGridLines = true;
            this.lsvInsurances.Size = new System.Drawing.Size(200, 172);
            this.lsvInsurances.TabIndex = 0;
            this.lsvInsurances.ViewType = Telerik.WinControls.UI.ListViewType.DetailsView;
            this.lsvInsurances.ItemCheckedChanged += new Telerik.WinControls.UI.ListViewItemEventHandler(this.lsvInsurances_ItemCheckedChanged);
            // 
            // lblFinalServiceCost
            // 
            this.lblFinalServiceCost.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.lblFinalServiceCost.AutoSize = false;
            this.lblFinalServiceCost.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.srcService, "FinalCost", true, System.Windows.Forms.DataSourceUpdateMode.OnValidation, "صفر", "0,0 ریال"));
            this.lblFinalServiceCost.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.lblFinalServiceCost.Location = new System.Drawing.Point(238, 416);
            this.lblFinalServiceCost.Name = "lblFinalServiceCost";
            this.lblFinalServiceCost.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.lblFinalServiceCost.Size = new System.Drawing.Size(125, 24);
            this.lblFinalServiceCost.TabIndex = 9;
            this.lblFinalServiceCost.Text = "0 ریال";
            this.lblFinalServiceCost.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // btnPercent
            // 
            this.btnPercent.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.btnPercent.Font = new System.Drawing.Font("B Nazanin", 10.5F, System.Drawing.FontStyle.Bold);
            this.btnPercent.Location = new System.Drawing.Point(266, 63);
            this.btnPercent.Name = "btnPercent";
            this.btnPercent.Size = new System.Drawing.Size(39, 29);
            this.btnPercent.TabIndex = 10;
            this.btnPercent.Text = "درصد";
            this.btnPercent.Click += new System.EventHandler(this.btnPercent_Click);
            // 
            // cmbService
            // 
            this.cmbService.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.cmbService.AutoCompleteDisplayMember = "Title";
            this.cmbService.DataBindings.Add(new System.Windows.Forms.Binding("SelectedItem", this.srcService, "Service", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.cmbService.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.srcService, "Service", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.cmbService.DisplayMember = "Title";
            this.cmbService.DropDownAnimationEnabled = true;
            this.cmbService.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList;
            this.cmbService.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.cmbService.Location = new System.Drawing.Point(475, 63);
            this.cmbService.MaxDropDownItems = 0;
            this.cmbService.Name = "cmbService";
            this.cmbService.ShowImageInEditorArea = true;
            this.cmbService.Size = new System.Drawing.Size(163, 28);
            this.cmbService.TabIndex = 7;
            this.cmbService.SelectedIndexChanged += new Telerik.WinControls.UI.Data.PositionChangedEventHandler(this.cmbService_SelectedIndexChanged);
            // 
            // cmbCategories
            // 
            this.cmbCategories.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.cmbCategories.AutoCompleteDisplayMember = "Title";
            this.cmbCategories.DisplayMember = "Title";
            this.cmbCategories.DropDownAnimationEnabled = true;
            this.cmbCategories.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList;
            this.cmbCategories.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.cmbCategories.Location = new System.Drawing.Point(475, 31);
            this.cmbCategories.MaxDropDownItems = 0;
            this.cmbCategories.Name = "cmbCategories";
            this.cmbCategories.ShowImageInEditorArea = true;
            this.cmbCategories.Size = new System.Drawing.Size(163, 28);
            this.cmbCategories.TabIndex = 6;
            this.cmbCategories.SelectedIndexChanged += new Telerik.WinControls.UI.Data.PositionChangedEventHandler(this.cmbCategories_SelectedIndexChanged);
            // 
            // btnAdd
            // 
            this.btnAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.btnAdd.Font = new System.Drawing.Font("B Nazanin", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.btnAdd.Location = new System.Drawing.Point(615, 408);
            this.btnAdd.Name = "btnAdd";
            this.btnAdd.Size = new System.Drawing.Size(95, 35);
            this.btnAdd.TabIndex = 13;
            this.btnAdd.Text = "افزودن";
            this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
            // 
            // btnNew
            // 
            this.btnNew.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.btnNew.Font = new System.Drawing.Font("B Nazanin", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.btnNew.Location = new System.Drawing.Point(514, 408);
            this.btnNew.Name = "btnNew";
            this.btnNew.Size = new System.Drawing.Size(95, 35);
            this.btnNew.TabIndex = 14;
            this.btnNew.Text = "جدید";
            this.btnNew.Click += new System.EventHandler(this.btnNew_Click);
            // 
            // radLabel11
            // 
            this.radLabel11.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.radLabel11.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.radLabel11.Location = new System.Drawing.Point(385, 63);
            this.radLabel11.Name = "radLabel11";
            this.radLabel11.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.radLabel11.Size = new System.Drawing.Size(85, 30);
            this.radLabel11.TabIndex = 10;
            this.radLabel11.Text = "تخفیف (ریال) :";
            this.radLabel11.TextAlignment = System.Drawing.ContentAlignment.TopRight;
            // 
            // txtServiceCost
            // 
            this.txtServiceCost.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.txtServiceCost.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.srcService, "Cost", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged, null, "N0"));
            this.txtServiceCost.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.txtServiceCost.Location = new System.Drawing.Point(266, 31);
            this.txtServiceCost.Name = "txtServiceCost";
            this.txtServiceCost.Size = new System.Drawing.Size(97, 28);
            this.txtServiceCost.TabIndex = 8;
            this.txtServiceCost.TabStop = false;
            this.txtServiceCost.TextChanging += new Telerik.WinControls.TextChangingEventHandler(this.txtSalary_TextChanging);
            // 
            // radLabel8
            // 
            this.radLabel8.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.radLabel8.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.radLabel8.Location = new System.Drawing.Point(641, 62);
            this.radLabel8.Name = "radLabel8";
            this.radLabel8.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.radLabel8.Size = new System.Drawing.Size(57, 30);
            this.radLabel8.TabIndex = 8;
            this.radLabel8.Text = "سرویس :";
            this.radLabel8.TextAlignment = System.Drawing.ContentAlignment.TopRight;
            // 
            // radLabel7
            // 
            this.radLabel7.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.radLabel7.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.radLabel7.Location = new System.Drawing.Point(640, 31);
            this.radLabel7.Name = "radLabel7";
            this.radLabel7.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.radLabel7.Size = new System.Drawing.Size(69, 30);
            this.radLabel7.TabIndex = 6;
            this.radLabel7.Text = "دسته بندی :";
            this.radLabel7.TextAlignment = System.Drawing.ContentAlignment.TopRight;
            // 
            // radPageViewPage2
            // 
            this.radPageViewPage2.Controls.Add(this.radGroupBox5);
            this.radPageViewPage2.Controls.Add(this.radGroupBox6);
            this.radPageViewPage2.Controls.Add(this.radGroupBox2);
            this.radPageViewPage2.Location = new System.Drawing.Point(10, 49);
            this.radPageViewPage2.Name = "radPageViewPage2";
            this.radPageViewPage2.Size = new System.Drawing.Size(959, 456);
            this.radPageViewPage2.Text = "نسخه";
            // 
            // radGroupBox5
            // 
            this.radGroupBox5.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox5.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.radGroupBox5.CausesValidation = false;
            this.radGroupBox5.Controls.Add(this.cmbPrescription);
            this.radGroupBox5.Controls.Add(this.grvPrescriptionDrug);
            this.radGroupBox5.Controls.Add(this.btnAddPrescription);
            this.radGroupBox5.Controls.Add(this.radLabel18);
            this.radGroupBox5.Font = new System.Drawing.Font("B Titr", 9F, System.Drawing.FontStyle.Bold);
            this.radGroupBox5.FooterImageIndex = -1;
            this.radGroupBox5.FooterImageKey = "";
            this.radGroupBox5.HeaderImageIndex = -1;
            this.radGroupBox5.HeaderImageKey = "";
            this.radGroupBox5.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.radGroupBox5.HeaderText = "نسخه از پیش تعرف شده";
            this.radGroupBox5.Location = new System.Drawing.Point(670, 260);
            this.radGroupBox5.Name = "radGroupBox5";
            this.radGroupBox5.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox5.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.radGroupBox5.Size = new System.Drawing.Size(289, 193);
            this.radGroupBox5.TabIndex = 27;
            this.radGroupBox5.Text = "نسخه از پیش تعرف شده";
            // 
            // cmbPrescription
            // 
            this.cmbPrescription.AutoCompleteDisplayMember = "Title";
            this.cmbPrescription.DisplayMember = "Title";
            this.cmbPrescription.DropDownAnimationEnabled = true;
            this.cmbPrescription.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList;
            this.cmbPrescription.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.cmbPrescription.Location = new System.Drawing.Point(6, 26);
            this.cmbPrescription.MaxDropDownItems = 0;
            this.cmbPrescription.Name = "cmbPrescription";
            this.cmbPrescription.ShowImageInEditorArea = true;
            this.cmbPrescription.Size = new System.Drawing.Size(217, 28);
            this.cmbPrescription.TabIndex = 104;
            this.cmbPrescription.SelectedIndexChanged += new Telerik.WinControls.UI.Data.PositionChangedEventHandler(this.cmbPrescription_SelectedIndexChanged);
            // 
            // grvPrescriptionDrug
            // 
            this.grvPrescriptionDrug.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.grvPrescriptionDrug.Font = new System.Drawing.Font("B Lotus", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.grvPrescriptionDrug.Location = new System.Drawing.Point(5, 60);
            // 
            // grvPrescriptionDrug
            // 
            this.grvPrescriptionDrug.MasterTemplate.AllowAddNewRow = false;
            this.grvPrescriptionDrug.MasterTemplate.AllowCellContextMenu = false;
            this.grvPrescriptionDrug.MasterTemplate.AllowColumnChooser = false;
            this.grvPrescriptionDrug.MasterTemplate.AllowColumnHeaderContextMenu = false;
            this.grvPrescriptionDrug.MasterTemplate.AllowColumnReorder = false;
            this.grvPrescriptionDrug.MasterTemplate.AllowColumnResize = false;
            this.grvPrescriptionDrug.MasterTemplate.AllowDeleteRow = false;
            this.grvPrescriptionDrug.MasterTemplate.AllowDragToGroup = false;
            this.grvPrescriptionDrug.MasterTemplate.AllowEditRow = false;
            this.grvPrescriptionDrug.MasterTemplate.AllowRowResize = false;
            this.grvPrescriptionDrug.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
            gridViewTextBoxColumn30.FieldName = "Drug.Title";
            gridViewTextBoxColumn30.HeaderText = "نام دارو";
            gridViewTextBoxColumn30.Name = "column1";
            gridViewTextBoxColumn30.StretchVertically = false;
            gridViewTextBoxColumn30.Width = 106;
            gridViewTextBoxColumn31.FieldName = "CustomManual";
            gridViewTextBoxColumn31.HeaderText = "توضیحات";
            gridViewTextBoxColumn31.Name = "column2";
            gridViewTextBoxColumn31.Width = 173;
            this.grvPrescriptionDrug.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn30,
            gridViewTextBoxColumn31});
            this.grvPrescriptionDrug.MasterTemplate.EnableGrouping = false;
            this.grvPrescriptionDrug.MasterTemplate.ShowRowHeaderColumn = false;
            this.grvPrescriptionDrug.Name = "grvPrescriptionDrug";
            this.grvPrescriptionDrug.ReadOnly = true;
            // 
            // 
            // 
            this.grvPrescriptionDrug.RootElement.MinSize = new System.Drawing.Size(0, 0);
            this.grvPrescriptionDrug.Size = new System.Drawing.Size(279, 85);
            this.grvPrescriptionDrug.TabIndex = 14;
            // 
            // btnAddPrescription
            // 
            this.btnAddPrescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.btnAddPrescription.Font = new System.Drawing.Font("B Nazanin", 10.5F, System.Drawing.FontStyle.Bold);
            this.btnAddPrescription.Location = new System.Drawing.Point(5, 151);
            this.btnAddPrescription.Name = "btnAddPrescription";
            this.btnAddPrescription.Size = new System.Drawing.Size(279, 35);
            this.btnAddPrescription.TabIndex = 105;
            this.btnAddPrescription.Text = "افزودن نسخه";
            this.btnAddPrescription.Click += new System.EventHandler(this.btnAddPrescription_Click);
            // 
            // radLabel18
            // 
            this.radLabel18.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.radLabel18.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.radLabel18.Location = new System.Drawing.Point(225, 26);
            this.radLabel18.Name = "radLabel18";
            this.radLabel18.Size = new System.Drawing.Size(60, 30);
            this.radLabel18.TabIndex = 11;
            this.radLabel18.Text = "نام نسخه :";
            this.radLabel18.TextAlignment = System.Drawing.ContentAlignment.TopRight;
            // 
            // radGroupBox6
            // 
            this.radGroupBox6.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox6.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.radGroupBox6.Controls.Add(this.btnPrintPrescription);
            this.radGroupBox6.Controls.Add(this.grvDrugs);
            this.radGroupBox6.Font = new System.Drawing.Font("B Titr", 9F, System.Drawing.FontStyle.Bold);
            this.radGroupBox6.FooterImageIndex = -1;
            this.radGroupBox6.FooterImageKey = "";
            this.radGroupBox6.HeaderImageIndex = -1;
            this.radGroupBox6.HeaderImageKey = "";
            this.radGroupBox6.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.radGroupBox6.HeaderText = "داروها";
            this.radGroupBox6.Location = new System.Drawing.Point(3, 3);
            this.radGroupBox6.Name = "radGroupBox6";
            this.radGroupBox6.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox6.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.radGroupBox6.Size = new System.Drawing.Size(661, 450);
            this.radGroupBox6.TabIndex = 27;
            this.radGroupBox6.Text = "داروها";
            // 
            // btnPrintPrescription
            // 
            this.btnPrintPrescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.btnPrintPrescription.Font = new System.Drawing.Font("B Nazanin", 10.5F, System.Drawing.FontStyle.Bold);
            this.btnPrintPrescription.Location = new System.Drawing.Point(512, 408);
            this.btnPrintPrescription.Name = "btnPrintPrescription";
            this.btnPrintPrescription.Size = new System.Drawing.Size(144, 35);
            this.btnPrintPrescription.TabIndex = 5;
            this.btnPrintPrescription.Text = "پرینت نسخه";
            this.btnPrintPrescription.Click += new System.EventHandler(this.btnPrintPrescription_Click);
            // 
            // grvDrugs
            // 
            this.grvDrugs.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.grvDrugs.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(240)))), ((int)(((byte)(249)))));
            this.grvDrugs.Cursor = System.Windows.Forms.Cursors.Default;
            this.grvDrugs.Font = new System.Drawing.Font("B Lotus", 11.25F, System.Drawing.FontStyle.Bold);
            this.grvDrugs.ForeColor = System.Drawing.Color.Black;
            this.grvDrugs.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.grvDrugs.Location = new System.Drawing.Point(5, 28);
            // 
            // grvDrugs
            // 
            this.grvDrugs.MasterTemplate.AllowAddNewRow = false;
            this.grvDrugs.MasterTemplate.AllowCellContextMenu = false;
            this.grvDrugs.MasterTemplate.AllowColumnChooser = false;
            this.grvDrugs.MasterTemplate.AllowColumnHeaderContextMenu = false;
            this.grvDrugs.MasterTemplate.AllowColumnReorder = false;
            this.grvDrugs.MasterTemplate.AllowColumnResize = false;
            this.grvDrugs.MasterTemplate.AllowDeleteRow = false;
            this.grvDrugs.MasterTemplate.AllowDragToGroup = false;
            this.grvDrugs.MasterTemplate.AllowEditRow = false;
            this.grvDrugs.MasterTemplate.AllowRowResize = false;
            this.grvDrugs.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
            gridViewTextBoxColumn32.EnableExpressionEditor = false;
            gridViewTextBoxColumn32.FieldName = "Drug.Title";
            gridViewTextBoxColumn32.HeaderText = "نام دارو";
            gridViewTextBoxColumn32.Name = "column1";
            gridViewTextBoxColumn32.Width = 91;
            gridViewTextBoxColumn33.EnableExpressionEditor = false;
            gridViewTextBoxColumn33.FieldName = "CustomManual";
            gridViewTextBoxColumn33.HeaderText = "توضیحات";
            gridViewTextBoxColumn33.Name = "column3";
            gridViewTextBoxColumn33.Width = 530;
            gridViewCommandColumn6.AllowHide = false;
            gridViewCommandColumn6.AllowReorder = false;
            gridViewCommandColumn6.AllowResize = false;
            gridViewCommandColumn6.AllowSort = false;
            gridViewCommandColumn6.EnableExpressionEditor = false;
            gridViewCommandColumn6.HeaderText = "حذف";
            gridViewCommandColumn6.Name = "column2";
            gridViewCommandColumn6.Width = 30;
            this.grvDrugs.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn32,
            gridViewTextBoxColumn33,
            gridViewCommandColumn6});
            this.grvDrugs.MasterTemplate.EnableGrouping = false;
            this.grvDrugs.MasterTemplate.ShowRowHeaderColumn = false;
            this.grvDrugs.Name = "grvDrugs";
            this.grvDrugs.ReadOnly = true;
            this.grvDrugs.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            // 
            // 
            // 
            this.grvDrugs.RootElement.MinSize = new System.Drawing.Size(0, 0);
            this.grvDrugs.Size = new System.Drawing.Size(651, 374);
            this.grvDrugs.TabIndex = 13;
            this.grvDrugs.CellFormatting += new Telerik.WinControls.UI.CellFormattingEventHandler(this.grvItems_CellFormatting);
            this.grvDrugs.CurrentRowChanging += new Telerik.WinControls.UI.CurrentRowChangingEventHandler(this.grvDrugs_CurrentRowChanging);
            this.grvDrugs.SelectionChanged += new System.EventHandler(this.grvDrugs_SelectionChanged);
            this.grvDrugs.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.grvDrugs_CommandCellClick);
            // 
            // radGroupBox2
            // 
            this.radGroupBox2.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.radGroupBox2.CausesValidation = false;
            this.radGroupBox2.Controls.Add(this.cmbDrugs);
            this.radGroupBox2.Controls.Add(this.btnAddDrug);
            this.radGroupBox2.Controls.Add(this.btnNewDrug);
            this.radGroupBox2.Controls.Add(this.radLabel20);
            this.radGroupBox2.Controls.Add(this.radLabel22);
            this.radGroupBox2.Controls.Add(this.txtManual);
            this.radGroupBox2.Font = new System.Drawing.Font("B Titr", 9F, System.Drawing.FontStyle.Bold);
            this.radGroupBox2.FooterImageIndex = -1;
            this.radGroupBox2.FooterImageKey = "";
            this.radGroupBox2.HeaderImageIndex = -1;
            this.radGroupBox2.HeaderImageKey = "";
            this.radGroupBox2.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.radGroupBox2.HeaderText = "دارو";
            this.radGroupBox2.Location = new System.Drawing.Point(670, 3);
            this.radGroupBox2.Name = "radGroupBox2";
            this.radGroupBox2.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox2.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.radGroupBox2.Size = new System.Drawing.Size(289, 251);
            this.radGroupBox2.TabIndex = 26;
            this.radGroupBox2.Text = "دارو";
            // 
            // cmbDrugs
            // 
            this.cmbDrugs.AutoCompleteDisplayMember = "Title";
            this.cmbDrugs.DisplayMember = "Title";
            this.cmbDrugs.DropDownAnimationEnabled = true;
            this.cmbDrugs.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList;
            this.cmbDrugs.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.cmbDrugs.Location = new System.Drawing.Point(5, 28);
            this.cmbDrugs.MaxDropDownItems = 0;
            this.cmbDrugs.Name = "cmbDrugs";
            this.cmbDrugs.ShowImageInEditorArea = true;
            this.cmbDrugs.Size = new System.Drawing.Size(217, 28);
            this.cmbDrugs.TabIndex = 100;
            this.cmbDrugs.SelectedIndexChanged += new Telerik.WinControls.UI.Data.PositionChangedEventHandler(this.cmbDrugs_SelectedIndexChanged);
            // 
            // btnAddDrug
            // 
            this.btnAddDrug.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.btnAddDrug.Font = new System.Drawing.Font("B Nazanin", 10.5F, System.Drawing.FontStyle.Bold);
            this.btnAddDrug.Location = new System.Drawing.Point(138, 205);
            this.btnAddDrug.Name = "btnAddDrug";
            this.btnAddDrug.Size = new System.Drawing.Size(146, 35);
            this.btnAddDrug.TabIndex = 102;
            this.btnAddDrug.Text = "افزودن دارو";
            this.btnAddDrug.Click += new System.EventHandler(this.btnAddDrug_Click);
            // 
            // btnNewDrug
            // 
            this.btnNewDrug.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.btnNewDrug.Font = new System.Drawing.Font("B Nazanin", 10.5F, System.Drawing.FontStyle.Bold);
            this.btnNewDrug.Location = new System.Drawing.Point(5, 205);
            this.btnNewDrug.Name = "btnNewDrug";
            this.btnNewDrug.Size = new System.Drawing.Size(127, 35);
            this.btnNewDrug.TabIndex = 103;
            this.btnNewDrug.Text = "داروی جدید";
            this.btnNewDrug.Click += new System.EventHandler(this.btnNewDrug_Click);
            // 
            // radLabel20
            // 
            this.radLabel20.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.radLabel20.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.radLabel20.Location = new System.Drawing.Point(228, 28);
            this.radLabel20.Name = "radLabel20";
            this.radLabel20.Size = new System.Drawing.Size(53, 30);
            this.radLabel20.TabIndex = 11;
            this.radLabel20.Text = "نام دارو :";
            this.radLabel20.TextAlignment = System.Drawing.ContentAlignment.TopRight;
            // 
            // radLabel22
            // 
            this.radLabel22.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.radLabel22.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.radLabel22.Location = new System.Drawing.Point(220, 57);
            this.radLabel22.Name = "radLabel22";
            this.radLabel22.Size = new System.Drawing.Size(65, 30);
            this.radLabel22.TabIndex = 9;
            this.radLabel22.Text = "توضیحات :";
            this.radLabel22.TextAlignment = System.Drawing.ContentAlignment.TopRight;
            // 
            // txtManual
            // 
            this.txtManual.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.txtManual.AutoScroll = true;
            this.txtManual.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.srcDrug, "CustomManual", true));
            this.txtManual.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.txtManual.Location = new System.Drawing.Point(5, 88);
            this.txtManual.Multiline = true;
            this.txtManual.Name = "txtManual";
            this.txtManual.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            // 
            // 
            // 
            this.txtManual.RootElement.StretchVertically = true;
            this.txtManual.Size = new System.Drawing.Size(279, 111);
            this.txtManual.TabIndex = 101;
            this.txtManual.TabStop = false;
            // 
            // srcDrug
            // 
            this.srcDrug.DataSource = typeof(Shayan.Data.VisitDrug);
            // 
            // btnSave
            // 
            this.btnSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.btnSave.Font = new System.Drawing.Font("B Nazanin", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.btnSave.Location = new System.Drawing.Point(887, 523);
            this.btnSave.Name = "btnSave";
            this.btnSave.Size = new System.Drawing.Size(95, 35);
            this.btnSave.TabIndex = 106;
            this.btnSave.Text = "ذخیره";
            this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
            // 
            // btnCancel
            // 
            this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.btnCancel.Font = new System.Drawing.Font("B Nazanin", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.btnCancel.Location = new System.Drawing.Point(787, 523);
            this.btnCancel.Name = "btnCancel";
            this.btnCancel.Size = new System.Drawing.Size(94, 35);
            this.btnCancel.TabIndex = 107;
            this.btnCancel.Text = "انصراف";
            this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
            // 
            // btnRemove
            // 
            this.btnRemove.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.btnRemove.Font = new System.Drawing.Font("B Nazanin", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.btnRemove.Location = new System.Drawing.Point(688, 523);
            this.btnRemove.Name = "btnRemove";
            this.btnRemove.Size = new System.Drawing.Size(93, 35);
            this.btnRemove.TabIndex = 108;
            this.btnRemove.Text = "حذف";
            this.btnRemove.Click += new System.EventHandler(this.btnRemove_Click_1);
            // 
            // btnPrintVisit
            // 
            this.btnPrintVisit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.btnPrintVisit.Font = new System.Drawing.Font("B Nazanin", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.btnPrintVisit.Location = new System.Drawing.Point(13, 523);
            this.btnPrintVisit.Name = "btnPrintVisit";
            this.btnPrintVisit.Size = new System.Drawing.Size(146, 35);
            this.btnPrintVisit.TabIndex = 109;
            this.btnPrintVisit.Text = "پرینت ویزیت";
            this.btnPrintVisit.Click += new System.EventHandler(this.btnPrintVisit_Click);
            // 
            // UCDefineVisit
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.btnRemove);
            this.Controls.Add(this.btnPrintVisit);
            this.Controls.Add(this.btnSave);
            this.Controls.Add(this.radPageView1);
            this.Controls.Add(this.btnCancel);
            this.Name = "UCDefineVisit";
            this.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.Size = new System.Drawing.Size(991, 564);
            ((System.ComponentModel.ISupportInitialize)(this.radPageView1)).EndInit();
            this.radPageView1.ResumeLayout(false);
            this.radPageViewPage1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).EndInit();
            this.radGroupBox1.ResumeLayout(false);
            this.radGroupBox1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox4)).EndInit();
            this.radGroupBox4.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.grvPastServices.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.grvPastServices)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cmbPatient.EditorControl.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cmbPatient.EditorControl)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cmbPatient)).EndInit();
            this.cmbPatient.ResumeLayout(false);
            this.cmbPatient.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radMultiColumnComboBox1.EditorControl.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radMultiColumnComboBox1.EditorControl)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radMultiColumnComboBox1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.srcItem)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cmbDoctor)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel9)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radTextBox1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel6)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel5)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.lblBedehi)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnDocument)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.tpTo)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.tpFrom)).EndInit();
            this.radPageViewPage3.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox3)).EndInit();
            this.radGroupBox3.ResumeLayout(false);
            this.radGroupBox3.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grvServices.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.grvServices)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel16)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.lblFinalSumCost)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.grbService)).EndInit();
            this.grbService.ResumeLayout(false);
            this.grbService.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.txtTakhfif)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.srcService)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel13)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel10)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtComment)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel12)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel14)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.lsvInsurances)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.lblFinalServiceCost)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnPercent)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cmbService)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cmbCategories)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnAdd)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnNew)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel11)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtServiceCost)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel8)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel7)).EndInit();
            this.radPageViewPage2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox5)).EndInit();
            this.radGroupBox5.ResumeLayout(false);
            this.radGroupBox5.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.cmbPrescription)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.grvPrescriptionDrug.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.grvPrescriptionDrug)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnAddPrescription)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel18)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox6)).EndInit();
            this.radGroupBox6.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.btnPrintPrescription)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.grvDrugs.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.grvDrugs)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox2)).EndInit();
            this.radGroupBox2.ResumeLayout(false);
            this.radGroupBox2.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.cmbDrugs)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnAddDrug)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnNewDrug)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel20)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel22)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtManual)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.srcDrug)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnSave)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnCancel)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnRemove)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnPrintVisit)).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();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn2 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn3 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn4 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn1 = new Telerik.WinControls.UI.GridViewCommandColumn();
     Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn2 = new Telerik.WinControls.UI.GridViewCommandColumn();
     Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn3 = new Telerik.WinControls.UI.GridViewCommandColumn();
     this.GrillaFacturasReservadas = new Telerik.WinControls.UI.RadGridView();
     this.ucProgressSpinner1       = new LaPaz.Win.Forms.Util.UcProgressSpinner();
     this.FacturaPager             = new Framework.WinForm.Controls.MetroPager();
     ((System.ComponentModel.ISupportInitialize)(this.GrillaFacturasReservadas)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GrillaFacturasReservadas.MasterTemplate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // GrillaFacturasReservadas
     //
     this.GrillaFacturasReservadas.Location = new System.Drawing.Point(12, 136);
     //
     // GrillaFacturasReservadas
     //
     this.GrillaFacturasReservadas.MasterTemplate.AllowAddNewRow      = false;
     this.GrillaFacturasReservadas.MasterTemplate.AllowColumnReorder  = false;
     this.GrillaFacturasReservadas.MasterTemplate.AllowDeleteRow      = false;
     this.GrillaFacturasReservadas.MasterTemplate.AllowDragToGroup    = false;
     this.GrillaFacturasReservadas.MasterTemplate.AllowEditRow        = false;
     this.GrillaFacturasReservadas.MasterTemplate.AutoGenerateColumns = false;
     this.GrillaFacturasReservadas.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     gridViewTextBoxColumn1.FieldName    = "NroReserva";
     gridViewTextBoxColumn1.FormatString = "";
     gridViewTextBoxColumn1.HeaderText   = "NroReserva";
     gridViewTextBoxColumn1.IsVisible    = false;
     gridViewTextBoxColumn1.Name         = "NroReserva";
     gridViewTextBoxColumn1.Width        = 300;
     gridViewTextBoxColumn2.FieldName    = "LCN";
     gridViewTextBoxColumn2.FormatString = "";
     gridViewTextBoxColumn2.HeaderText   = "Nro Factura";
     gridViewTextBoxColumn2.Name         = "LCN";
     gridViewTextBoxColumn2.Width        = 194;
     gridViewTextBoxColumn3.FieldName    = "FechaAlta";
     gridViewTextBoxColumn3.FormatString = "";
     gridViewTextBoxColumn3.HeaderText   = "Fecha";
     gridViewTextBoxColumn3.Name         = "FechaAlta";
     gridViewTextBoxColumn3.Width        = 128;
     gridViewTextBoxColumn4.FieldName    = "Comentario";
     gridViewTextBoxColumn4.HeaderText   = "Comentario";
     gridViewTextBoxColumn4.Name         = "Comentario";
     gridViewTextBoxColumn4.Width        = 315;
     gridViewCommandColumn1.HeaderText   = "";
     gridViewCommandColumn1.Image        = global::LaPaz.Win.Properties.Resources.Data_Edit;
     gridViewCommandColumn1.MaxWidth     = 30;
     gridViewCommandColumn1.MinWidth     = 30;
     gridViewCommandColumn1.Name         = "ColumnaEditar";
     gridViewCommandColumn1.Width        = 30;
     gridViewCommandColumn2.HeaderText   = "";
     gridViewCommandColumn2.Image        = global::LaPaz.Win.Properties.Resources.Data_Edit_Con1;
     gridViewCommandColumn2.MaxWidth     = 30;
     gridViewCommandColumn2.MinWidth     = 30;
     gridViewCommandColumn2.Name         = "ColumnaEditarConsignacion";
     gridViewCommandColumn2.Width        = 30;
     gridViewCommandColumn3.DefaultText  = "...";
     gridViewCommandColumn3.HeaderText   = "";
     gridViewCommandColumn3.Image        = global::LaPaz.Win.Properties.Resources.comentario;
     gridViewCommandColumn3.MaxWidth     = 30;
     gridViewCommandColumn3.MinWidth     = 30;
     gridViewCommandColumn3.Name         = "ColumnaEditarComentario";
     gridViewCommandColumn3.Width        = 30;
     this.GrillaFacturasReservadas.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewTextBoxColumn1,
         gridViewTextBoxColumn2,
         gridViewTextBoxColumn3,
         gridViewTextBoxColumn4,
         gridViewCommandColumn1,
         gridViewCommandColumn2,
         gridViewCommandColumn3
     });
     this.GrillaFacturasReservadas.MasterTemplate.EnableGrouping = false;
     this.GrillaFacturasReservadas.Name              = "GrillaFacturasReservadas";
     this.GrillaFacturasReservadas.ReadOnly          = true;
     this.GrillaFacturasReservadas.Size              = new System.Drawing.Size(744, 395);
     this.GrillaFacturasReservadas.TabIndex          = 0;
     this.GrillaFacturasReservadas.Text              = "GrillaFacturasReservadas";
     this.GrillaFacturasReservadas.ThemeName         = "TelerikMetroBlue";
     this.GrillaFacturasReservadas.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.GrillaFacturasReservadas_CommandCellClick);
     //
     // ucProgressSpinner1
     //
     this.ucProgressSpinner1.Location = new System.Drawing.Point(751, 12);
     this.ucProgressSpinner1.Margin   = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.ucProgressSpinner1.Name     = "ucProgressSpinner1";
     this.ucProgressSpinner1.Size     = new System.Drawing.Size(154, 27);
     this.ucProgressSpinner1.TabIndex = 1;
     //
     // FacturaPager
     //
     this.FacturaPager.CurrentPage        = 1;
     this.FacturaPager.Location           = new System.Drawing.Point(370, 88);
     this.FacturaPager.Margin             = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.FacturaPager.Name               = "FacturaPager";
     this.FacturaPager.PageSize           = 50;
     this.FacturaPager.PageTotal          = 1;
     this.FacturaPager.RefreshAction      = null;
     this.FacturaPager.RefreshActionAsync = null;
     this.FacturaPager.Size               = new System.Drawing.Size(386, 42);
     this.FacturaPager.TabIndex           = 2;
     //
     // FrmVentasReservadasListado
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1147, 1063);
     this.Controls.Add(this.FacturaPager);
     this.Controls.Add(this.ucProgressSpinner1);
     this.Controls.Add(this.GrillaFacturasReservadas);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Margin          = new System.Windows.Forms.Padding(4);
     this.Name            = "FrmVentasReservadasListado";
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.Text  = "Ventas reservadas";
     this.Load += new System.EventHandler(this.FrmVentasReservadasListado_Load);
     ((System.ComponentModel.ISupportInitialize)(this.GrillaFacturasReservadas.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GrillaFacturasReservadas)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).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();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn5 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn6 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn7 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn8 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn2 = new Telerik.WinControls.UI.GridViewCommandColumn();
     this.radGroupBox1 = new Telerik.WinControls.UI.RadGroupBox();
     this.ucFilter1 = new ShayanDental.UserControls.UCFilter();
     this.grvItems = new Telerik.WinControls.UI.RadGridView();
     this.radGroupBox2 = new Telerik.WinControls.UI.RadGroupBox();
     this.btnAdd = new Telerik.WinControls.UI.RadButton();
     this.btnNew = new Telerik.WinControls.UI.RadButton();
     this.labratoryDescriptionTextBox = new Telerik.WinControls.UI.RadTextBox();
     this.srcItem = new System.Windows.Forms.BindingSource(this.components);
     this.labratoryAddressTextBox = new Telerik.WinControls.UI.RadTextBox();
     this.labratoryPhone2TextBox = new Telerik.WinControls.UI.RadTextBox();
     this.labratoryPhone1TextBox = new Telerik.WinControls.UI.RadTextBox();
     this.txtName = new Telerik.WinControls.UI.RadTextBox();
     this.radLabel7 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel8 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel9 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel10 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel12 = new Telerik.WinControls.UI.RadLabel();
     this.btnCancel = new Telerik.WinControls.UI.RadButton();
     this.btnSave = new Telerik.WinControls.UI.RadButton();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).BeginInit();
     this.radGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grvItems)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grvItems.MasterTemplate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox2)).BeginInit();
     this.radGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.btnAdd)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnNew)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.labratoryDescriptionTextBox)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.srcItem)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.labratoryAddressTextBox)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.labratoryPhone2TextBox)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.labratoryPhone1TextBox)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel12)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnCancel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnSave)).BeginInit();
     this.SuspendLayout();
     //
     // radGroupBox1
     //
     this.radGroupBox1.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.radGroupBox1.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.radGroupBox1.Controls.Add(this.ucFilter1);
     this.radGroupBox1.Controls.Add(this.grvItems);
     this.radGroupBox1.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold);
     this.radGroupBox1.FooterImageIndex = -1;
     this.radGroupBox1.FooterImageKey = "";
     this.radGroupBox1.HeaderImageIndex = -1;
     this.radGroupBox1.HeaderImageKey = "";
     this.radGroupBox1.HeaderMargin = new System.Windows.Forms.Padding(0);
     this.radGroupBox1.HeaderText = "لابراتوارهای تعریف شده:";
     this.radGroupBox1.Location = new System.Drawing.Point(3, 3);
     this.radGroupBox1.Name = "radGroupBox1";
     this.radGroupBox1.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
     this.radGroupBox1.Size = new System.Drawing.Size(473, 416);
     this.radGroupBox1.TabIndex = 21;
     this.radGroupBox1.Text = "لابراتوارهای تعریف شده:";
     //
     // ucFilter1
     //
     this.ucFilter1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.ucFilter1.Location = new System.Drawing.Point(6, 29);
     this.ucFilter1.Margin = new System.Windows.Forms.Padding(4);
     this.ucFilter1.Name = "ucFilter1";
     this.ucFilter1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.ucFilter1.Size = new System.Drawing.Size(464, 25);
     this.ucFilter1.TabIndex = 16;
     //
     // grvItems
     //
     this.grvItems.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.grvItems.EnableHotTracking = false;
     this.grvItems.EnableTheming = false;
     this.grvItems.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold);
     this.grvItems.Location = new System.Drawing.Point(5, 55);
     //
     // grvItems
     //
     this.grvItems.MasterTemplate.AllowAddNewRow = false;
     this.grvItems.MasterTemplate.AllowCellContextMenu = false;
     this.grvItems.MasterTemplate.AllowColumnChooser = false;
     this.grvItems.MasterTemplate.AllowColumnHeaderContextMenu = false;
     this.grvItems.MasterTemplate.AllowColumnReorder = false;
     this.grvItems.MasterTemplate.AllowDeleteRow = false;
     this.grvItems.MasterTemplate.AllowDragToGroup = false;
     this.grvItems.MasterTemplate.AllowEditRow = false;
     this.grvItems.MasterTemplate.AllowRowResize = false;
     this.grvItems.MasterTemplate.AutoGenerateColumns = false;
     this.grvItems.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     gridViewTextBoxColumn5.FieldName = "Title";
     gridViewTextBoxColumn5.HeaderText = "نام";
     gridViewTextBoxColumn5.Name = "column1";
     gridViewTextBoxColumn5.Width = 241;
     gridViewTextBoxColumn6.FieldName = "Phone1";
     gridViewTextBoxColumn6.HeaderText = "تلفن ";
     gridViewTextBoxColumn6.Name = "column2";
     gridViewTextBoxColumn6.Width = 46;
     gridViewTextBoxColumn7.FieldName = "Address";
     gridViewTextBoxColumn7.HeaderText = "آدرس";
     gridViewTextBoxColumn7.Name = "column5";
     gridViewTextBoxColumn7.Width = 74;
     gridViewTextBoxColumn8.FieldName = "Description";
     gridViewTextBoxColumn8.HeaderText = "توضیح";
     gridViewTextBoxColumn8.Name = "column3";
     gridViewTextBoxColumn8.Width = 55;
     gridViewCommandColumn2.AllowResize = false;
     gridViewCommandColumn2.HeaderText = "حذف";
     gridViewCommandColumn2.Name = "column4";
     gridViewCommandColumn2.Width = 30;
     this.grvItems.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
     gridViewTextBoxColumn5,
     gridViewTextBoxColumn6,
     gridViewTextBoxColumn7,
     gridViewTextBoxColumn8,
     gridViewCommandColumn2});
     this.grvItems.MasterTemplate.EnableGrouping = false;
     this.grvItems.MasterTemplate.EnableSorting = false;
     this.grvItems.MasterTemplate.ShowFilteringRow = false;
     this.grvItems.Name = "grvItems";
     this.grvItems.ReadOnly = true;
     this.grvItems.ShowCellErrors = false;
     this.grvItems.ShowNoDataText = false;
     this.grvItems.ShowRowErrors = false;
     this.grvItems.Size = new System.Drawing.Size(463, 356);
     this.grvItems.TabIndex = 15;
     this.grvItems.TabStop = false;
     this.grvItems.CellFormatting += new Telerik.WinControls.UI.CellFormattingEventHandler(this.grvItems_CellFormatting);
     this.grvItems.CurrentRowChanging += new Telerik.WinControls.UI.CurrentRowChangingEventHandler(this.grvItems_CurrentRowChanging);
     this.grvItems.SelectionChanged += new System.EventHandler(this.grvItems_SelectionChanged);
     this.grvItems.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.grvItems_CommandCellClick);
     this.grvItems.KeyDown += new System.Windows.Forms.KeyEventHandler(this.grvItems_KeyDown);
     //
     // radGroupBox2
     //
     this.radGroupBox2.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.radGroupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.radGroupBox2.Controls.Add(this.btnAdd);
     this.radGroupBox2.Controls.Add(this.btnNew);
     this.radGroupBox2.Controls.Add(this.labratoryDescriptionTextBox);
     this.radGroupBox2.Controls.Add(this.labratoryAddressTextBox);
     this.radGroupBox2.Controls.Add(this.labratoryPhone2TextBox);
     this.radGroupBox2.Controls.Add(this.labratoryPhone1TextBox);
     this.radGroupBox2.Controls.Add(this.txtName);
     this.radGroupBox2.Controls.Add(this.radLabel7);
     this.radGroupBox2.Controls.Add(this.radLabel8);
     this.radGroupBox2.Controls.Add(this.radLabel9);
     this.radGroupBox2.Controls.Add(this.radLabel10);
     this.radGroupBox2.Controls.Add(this.radLabel12);
     this.radGroupBox2.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold);
     this.radGroupBox2.FooterImageIndex = -1;
     this.radGroupBox2.FooterImageKey = "";
     this.radGroupBox2.HeaderImageIndex = -1;
     this.radGroupBox2.HeaderImageKey = "";
     this.radGroupBox2.HeaderMargin = new System.Windows.Forms.Padding(0);
     this.radGroupBox2.HeaderText = "تعریف لابراتوار";
     this.radGroupBox2.Location = new System.Drawing.Point(482, 3);
     this.radGroupBox2.Name = "radGroupBox2";
     this.radGroupBox2.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
     this.radGroupBox2.Size = new System.Drawing.Size(310, 372);
     this.radGroupBox2.TabIndex = 20;
     this.radGroupBox2.Text = "تعریف لابراتوار";
     //
     // btnAdd
     //
     this.btnAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnAdd.Font = new System.Drawing.Font("B Nazanin", 10.5F, System.Drawing.FontStyle.Bold);
     this.btnAdd.Location = new System.Drawing.Point(132, 328);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(120, 35);
     this.btnAdd.TabIndex = 18;
     this.btnAdd.Text = "افزودن";
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // btnNew
     //
     this.btnNew.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnNew.Font = new System.Drawing.Font("B Nazanin", 10.5F, System.Drawing.FontStyle.Bold);
     this.btnNew.Location = new System.Drawing.Point(5, 328);
     this.btnNew.Name = "btnNew";
     this.btnNew.Size = new System.Drawing.Size(120, 35);
     this.btnNew.TabIndex = 19;
     this.btnNew.Text = "جدید";
     this.btnNew.Click += new System.EventHandler(this.btnNew_Click);
     //
     // labratoryDescriptionTextBox
     //
     this.labratoryDescriptionTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labratoryDescriptionTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.srcItem, "Description", true));
     this.labratoryDescriptionTextBox.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.labratoryDescriptionTextBox.Location = new System.Drawing.Point(5, 138);
     this.labratoryDescriptionTextBox.Multiline = true;
     this.labratoryDescriptionTextBox.Name = "labratoryDescriptionTextBox";
     //
     //
     //
     this.labratoryDescriptionTextBox.RootElement.StretchVertically = true;
     this.labratoryDescriptionTextBox.Size = new System.Drawing.Size(247, 184);
     this.labratoryDescriptionTextBox.TabIndex = 17;
     this.labratoryDescriptionTextBox.TabStop = false;
     this.labratoryDescriptionTextBox.TextChanging += new Telerik.WinControls.TextChangingEventHandler(this.labratoryDescriptionTextBox_TextChanging);
     this.labratoryDescriptionTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtName_KeyDown);
     //
     // srcItem
     //
     this.srcItem.DataSource = typeof(Shayan.Data.Labratory);
     //
     // labratoryAddressTextBox
     //
     this.labratoryAddressTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labratoryAddressTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.srcItem, "Address", true));
     this.labratoryAddressTextBox.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.labratoryAddressTextBox.Location = new System.Drawing.Point(5, 107);
     this.labratoryAddressTextBox.Name = "labratoryAddressTextBox";
     this.labratoryAddressTextBox.Size = new System.Drawing.Size(247, 25);
     this.labratoryAddressTextBox.TabIndex = 16;
     this.labratoryAddressTextBox.TabStop = false;
     this.labratoryAddressTextBox.TextChanging += new Telerik.WinControls.TextChangingEventHandler(this.labratoryAddressTextBox_TextChanging);
     this.labratoryAddressTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtName_KeyDown);
     //
     // labratoryPhone2TextBox
     //
     this.labratoryPhone2TextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labratoryPhone2TextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.srcItem, "Phone2", true));
     this.labratoryPhone2TextBox.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.labratoryPhone2TextBox.Location = new System.Drawing.Point(5, 81);
     this.labratoryPhone2TextBox.Name = "labratoryPhone2TextBox";
     this.labratoryPhone2TextBox.Size = new System.Drawing.Size(247, 25);
     this.labratoryPhone2TextBox.TabIndex = 15;
     this.labratoryPhone2TextBox.TabStop = false;
     this.labratoryPhone2TextBox.TextChanging += new Telerik.WinControls.TextChangingEventHandler(this.labratoryPhone2TextBox_TextChanging);
     this.labratoryPhone2TextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtName_KeyDown);
     //
     // labratoryPhone1TextBox
     //
     this.labratoryPhone1TextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labratoryPhone1TextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.srcItem, "Phone1", true));
     this.labratoryPhone1TextBox.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.labratoryPhone1TextBox.Location = new System.Drawing.Point(5, 55);
     this.labratoryPhone1TextBox.Name = "labratoryPhone1TextBox";
     this.labratoryPhone1TextBox.Size = new System.Drawing.Size(247, 25);
     this.labratoryPhone1TextBox.TabIndex = 14;
     this.labratoryPhone1TextBox.TabStop = false;
     this.labratoryPhone1TextBox.TextChanging += new Telerik.WinControls.TextChangingEventHandler(this.labratoryPhone1TextBox_TextChanging);
     this.labratoryPhone1TextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtName_KeyDown);
     //
     // txtName
     //
     this.txtName.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtName.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.srcItem, "Title", true));
     this.txtName.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.txtName.Location = new System.Drawing.Point(5, 29);
     this.txtName.Name = "txtName";
     this.txtName.Size = new System.Drawing.Size(247, 25);
     this.txtName.TabIndex = 13;
     this.txtName.TabStop = false;
     this.txtName.TextChanging += new Telerik.WinControls.TextChangingEventHandler(this.txtName_TextChanging);
     this.txtName.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtName_KeyDown);
     //
     // radLabel7
     //
     this.radLabel7.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.radLabel7.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radLabel7.Location = new System.Drawing.Point(263, 136);
     this.radLabel7.Name = "radLabel7";
     this.radLabel7.Size = new System.Drawing.Size(38, 23);
     this.radLabel7.TabIndex = 12;
     this.radLabel7.Text = "توضیح:";
     this.radLabel7.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // radLabel8
     //
     this.radLabel8.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.radLabel8.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radLabel8.Location = new System.Drawing.Point(266, 107);
     this.radLabel8.Name = "radLabel8";
     this.radLabel8.Size = new System.Drawing.Size(35, 23);
     this.radLabel8.TabIndex = 11;
     this.radLabel8.Text = "آدرس:";
     this.radLabel8.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // radLabel9
     //
     this.radLabel9.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.radLabel9.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radLabel9.Location = new System.Drawing.Point(265, 83);
     this.radLabel9.Name = "radLabel9";
     this.radLabel9.Size = new System.Drawing.Size(35, 23);
     this.radLabel9.TabIndex = 10;
     this.radLabel9.Text = "تلفن2:";
     this.radLabel9.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // radLabel10
     //
     this.radLabel10.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.radLabel10.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radLabel10.Location = new System.Drawing.Point(267, 57);
     this.radLabel10.Name = "radLabel10";
     this.radLabel10.Size = new System.Drawing.Size(33, 23);
     this.radLabel10.TabIndex = 9;
     this.radLabel10.Text = "تلفن1:";
     this.radLabel10.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // radLabel12
     //
     this.radLabel12.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.radLabel12.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radLabel12.Location = new System.Drawing.Point(279, 32);
     this.radLabel12.Name = "radLabel12";
     this.radLabel12.Size = new System.Drawing.Size(21, 23);
     this.radLabel12.TabIndex = 8;
     this.radLabel12.Text = "نام:";
     this.radLabel12.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // btnCancel
     //
     this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnCancel.Font = new System.Drawing.Font("B Nazanin", 10.5F, System.Drawing.FontStyle.Bold);
     this.btnCancel.Location = new System.Drawing.Point(487, 384);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(120, 35);
     this.btnCancel.TabIndex = 21;
     this.btnCancel.Text = "انصراف";
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // btnSave
     //
     this.btnSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnSave.Font = new System.Drawing.Font("B Nazanin", 10.5F, System.Drawing.FontStyle.Bold);
     this.btnSave.Location = new System.Drawing.Point(614, 384);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(120, 35);
     this.btnSave.TabIndex = 20;
     this.btnSave.Text = "ذخیره";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // UCDefineLabratory
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 19F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.btnSave);
     this.Controls.Add(this.radGroupBox1);
     this.Controls.Add(this.radGroupBox2);
     this.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.Margin = new System.Windows.Forms.Padding(4);
     this.Name = "UCDefineLabratory";
     this.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.Size = new System.Drawing.Size(795, 425);
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).EndInit();
     this.radGroupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grvItems.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grvItems)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox2)).EndInit();
     this.radGroupBox2.ResumeLayout(false);
     this.radGroupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.btnAdd)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnNew)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.labratoryDescriptionTextBox)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.srcItem)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.labratoryAddressTextBox)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.labratoryPhone2TextBox)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.labratoryPhone1TextBox)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel12)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnCancel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnSave)).EndInit();
     this.ResumeLayout(false);
 }
Exemple #52
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(Unit));
     Telerik.WinControls.UI.GridViewCommandColumn   gridViewCommandColumn2  = new Telerik.WinControls.UI.GridViewCommandColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn7  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn8  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewCheckBoxColumn  gridViewCheckBoxColumn2 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn9  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn10 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn11 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn12 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.TableViewDefinition     tableViewDefinition2    = new Telerik.WinControls.UI.TableViewDefinition();
     this.radRibbonBar1            = new Telerik.WinControls.UI.RadRibbonBar();
     this.ribbonTab1               = new Telerik.WinControls.UI.RibbonTab();
     this.radRibbonBarGroup1       = new Telerik.WinControls.UI.RadRibbonBarGroup();
     this.btnNew                   = new Telerik.WinControls.UI.RadButtonElement();
     this.btnSave                  = new Telerik.WinControls.UI.RadButtonElement();
     this.radRibbonBarGroup2       = new Telerik.WinControls.UI.RadRibbonBarGroup();
     this.btnView                  = new Telerik.WinControls.UI.RadButtonElement();
     this.btnEdit                  = new Telerik.WinControls.UI.RadButtonElement();
     this.btnDelete                = new Telerik.WinControls.UI.RadButtonElement();
     this.radRibbonBarGroup4       = new Telerik.WinControls.UI.RadRibbonBarGroup();
     this.btnImport                = new Telerik.WinControls.UI.RadButtonElement();
     this.btnExport                = new Telerik.WinControls.UI.RadButtonElement();
     this.radRibbonBarButtonGroup1 = new Telerik.WinControls.UI.RadRibbonBarButtonGroup();
     this.radRibbonBarGroup3       = new Telerik.WinControls.UI.RadRibbonBarGroup();
     this.btnRefresh               = new Telerik.WinControls.UI.RadButtonElement();
     this.radRibbonBarGroup5       = new Telerik.WinControls.UI.RadRibbonBarGroup();
     this.radRibbonBarButtonGroup3 = new Telerik.WinControls.UI.RadRibbonBarButtonGroup();
     this.btnFilter1               = new Telerik.WinControls.UI.RadButtonElement();
     this.btnUnfilter1             = new Telerik.WinControls.UI.RadButtonElement();
     this.ribbonBarGroupSeparator1 = new Telerik.WinControls.UI.RibbonBarGroupSeparator();
     this.radMenuItem1             = new Telerik.WinControls.UI.RadMenuItem();
     this.radMenuSeparatorItem1    = new Telerik.WinControls.UI.RadMenuSeparatorItem();
     this.radMenuItem2             = new Telerik.WinControls.UI.RadMenuItem();
     this.radStatusStrip1          = new Telerik.WinControls.UI.RadStatusStrip();
     this.radLabelElement1         = new Telerik.WinControls.UI.RadLabelElement();
     this.panel1                   = new System.Windows.Forms.Panel();
     this.radGridView1             = new Telerik.WinControls.UI.RadGridView();
     this.office2010BlueTheme1     = new Telerik.WinControls.Themes.Office2010BlueTheme();
     this.radRibbonBarButtonGroup2 = new Telerik.WinControls.UI.RadRibbonBarButtonGroup();
     this.btnFilter                = new Telerik.WinControls.UI.RadButtonElement();
     this.Unfilter                 = new Telerik.WinControls.UI.RadButtonElement();
     this.radRibbonBarButtonGroup5 = new Telerik.WinControls.UI.RadRibbonBarButtonGroup();
     this.radContextMenu1          = new Telerik.WinControls.UI.RadContextMenu(this.components);
     this.RMenu3                   = new Telerik.WinControls.UI.RadMenuItem();
     this.radMenuSeparatorItem2    = new Telerik.WinControls.UI.RadMenuSeparatorItem();
     this.RMenu4                   = new Telerik.WinControls.UI.RadMenuItem();
     this.RMenu5                   = new Telerik.WinControls.UI.RadMenuItem();
     this.RMenu6                   = new Telerik.WinControls.UI.RadMenuItem();
     this.radContextMenuManager1   = new Telerik.WinControls.UI.RadContextMenuManager();
     ((System.ComponentModel.ISupportInitialize)(this.radRibbonBar1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radStatusStrip1)).BeginInit();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1.MasterTemplate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // radRibbonBar1
     //
     this.radRibbonBar1.CommandTabs.AddRange(new Telerik.WinControls.RadItem[] {
         this.ribbonTab1
     });
     //
     //
     //
     this.radRibbonBar1.ExitButton.Text = "Exit";
     this.radRibbonBar1.ExitButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.radRibbonBar1.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radRibbonBar1.Location = new System.Drawing.Point(0, 0);
     this.radRibbonBar1.Name     = "radRibbonBar1";
     //
     //
     //
     this.radRibbonBar1.OptionsButton.Text = "Options";
     this.radRibbonBar1.OptionsButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.radRibbonBar1.OptionsButton.Visibility        = Telerik.WinControls.ElementVisibility.Hidden;
     //
     //
     //
     this.radRibbonBar1.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.radRibbonBar1.Size             = new System.Drawing.Size(730, 160);
     this.radRibbonBar1.StartButtonImage = ((System.Drawing.Image)(resources.GetObject("radRibbonBar1.StartButtonImage")));
     this.radRibbonBar1.StartMenuItems.AddRange(new Telerik.WinControls.RadItem[] {
         this.radMenuItem1,
         this.radMenuSeparatorItem1,
         this.radMenuItem2
     });
     this.radRibbonBar1.TabIndex  = 0;
     this.radRibbonBar1.Text      = "Unit (หน่วนสินค้า)";
     this.radRibbonBar1.ThemeName = "Office2010Blue";
     this.radRibbonBar1.Click    += new System.EventHandler(this.radRibbonBar1_Click);
     //
     // ribbonTab1
     //
     this.ribbonTab1.IsSelected = true;
     this.ribbonTab1.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.radRibbonBarGroup1,
         this.radRibbonBarGroup2,
         this.radRibbonBarGroup4,
         this.radRibbonBarGroup3,
         this.radRibbonBarGroup5
     });
     this.ribbonTab1.Name        = "ribbonTab1";
     this.ribbonTab1.Text        = "Action";
     this.ribbonTab1.UseMnemonic = false;
     //
     // radRibbonBarGroup1
     //
     this.radRibbonBarGroup1.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.btnNew,
         this.btnSave
     });
     this.radRibbonBarGroup1.Name = "radRibbonBarGroup1";
     this.radRibbonBarGroup1.Text = "New List";
     //
     // btnNew
     //
     this.btnNew.Image             = ((System.Drawing.Image)(resources.GetObject("btnNew.Image")));
     this.btnNew.ImageAlignment    = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnNew.Name              = "btnNew";
     this.btnNew.Text              = "เพิ่มใหม่";
     this.btnNew.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnNew.Click            += new System.EventHandler(this.btnNew_Click);
     //
     // btnSave
     //
     this.btnSave.Image             = ((System.Drawing.Image)(resources.GetObject("btnSave.Image")));
     this.btnSave.ImageAlignment    = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnSave.Name              = "btnSave";
     this.btnSave.Text              = "บันทึกรายการ";
     this.btnSave.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnSave.Click            += new System.EventHandler(this.btnSave_Click);
     //
     // radRibbonBarGroup2
     //
     this.radRibbonBarGroup2.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.btnView,
         this.btnEdit,
         this.btnDelete
     });
     this.radRibbonBarGroup2.Name = "radRibbonBarGroup2";
     this.radRibbonBarGroup2.Text = "Manage";
     //
     // btnView
     //
     this.btnView.Enabled           = false;
     this.btnView.Image             = ((System.Drawing.Image)(resources.GetObject("btnView.Image")));
     this.btnView.ImageAlignment    = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnView.Name              = "btnView";
     this.btnView.Text              = "แสดงรายการ";
     this.btnView.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnView.Click            += new System.EventHandler(this.btnView_Click);
     //
     // btnEdit
     //
     this.btnEdit.Image             = ((System.Drawing.Image)(resources.GetObject("btnEdit.Image")));
     this.btnEdit.ImageAlignment    = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnEdit.Name              = "btnEdit";
     this.btnEdit.Text              = "แก้ไขรายการ";
     this.btnEdit.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnEdit.Click            += new System.EventHandler(this.btnEdit_Click);
     //
     // btnDelete
     //
     this.btnDelete.Image             = ((System.Drawing.Image)(resources.GetObject("btnDelete.Image")));
     this.btnDelete.ImageAlignment    = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnDelete.Name              = "btnDelete";
     this.btnDelete.Text              = "ลบรายการ";
     this.btnDelete.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnDelete.Click            += new System.EventHandler(this.btnDelete_Click);
     //
     // radRibbonBarGroup4
     //
     this.radRibbonBarGroup4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(86)))), ((int)(((byte)(86)))), ((int)(((byte)(86)))));
     this.radRibbonBarGroup4.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.btnImport,
         this.btnExport,
         this.radRibbonBarButtonGroup1
     });
     this.radRibbonBarGroup4.Name = "radRibbonBarGroup4";
     this.radRibbonBarGroup4.Text = "Export";
     //
     // btnImport
     //
     this.btnImport.Image             = ((System.Drawing.Image)(resources.GetObject("btnImport.Image")));
     this.btnImport.ImageAlignment    = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnImport.Name              = "btnImport";
     this.btnImport.SmallImage        = null;
     this.btnImport.Text              = "นำข้อมูลเข้า";
     this.btnImport.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnImport.Visibility        = Telerik.WinControls.ElementVisibility.Collapsed;
     this.btnImport.Click            += new System.EventHandler(this.btnImport_Click);
     //
     // btnExport
     //
     this.btnExport.Image             = ((System.Drawing.Image)(resources.GetObject("btnExport.Image")));
     this.btnExport.ImageAlignment    = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnExport.Name              = "btnExport";
     this.btnExport.Text              = "ส่งข้อมูลออก";
     this.btnExport.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnExport.Click            += new System.EventHandler(this.btnExport_Click);
     //
     // radRibbonBarButtonGroup1
     //
     this.radRibbonBarButtonGroup1.Name          = "radRibbonBarButtonGroup1";
     this.radRibbonBarButtonGroup1.Padding       = new System.Windows.Forms.Padding(1);
     this.radRibbonBarButtonGroup1.ShowBackColor = false;
     this.radRibbonBarButtonGroup1.ShowBorder    = false;
     this.radRibbonBarButtonGroup1.Text          = "radRibbonBarButtonGroup1";
     //
     // radRibbonBarGroup3
     //
     this.radRibbonBarGroup3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(135)))), ((int)(((byte)(135)))), ((int)(((byte)(135)))));
     this.radRibbonBarGroup3.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.btnRefresh
     });
     this.radRibbonBarGroup3.Name = "radRibbonBarGroup3";
     this.radRibbonBarGroup3.Text = "Page";
     //
     // btnRefresh
     //
     this.btnRefresh.ForeColor         = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(6)))), ((int)(((byte)(197)))));
     this.btnRefresh.Image             = ((System.Drawing.Image)(resources.GetObject("btnRefresh.Image")));
     this.btnRefresh.ImageAlignment    = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnRefresh.Name              = "btnRefresh";
     this.btnRefresh.Text              = "รีเฟรช";
     this.btnRefresh.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnRefresh.Click            += new System.EventHandler(this.btnCancel_Click);
     //
     // radRibbonBarGroup5
     //
     this.radRibbonBarGroup5.AutoSizeMode  = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.radRibbonBarGroup5.FitToSizeMode = Telerik.WinControls.RadFitToSizeMode.FitToParentContent;
     this.radRibbonBarGroup5.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.radRibbonBarButtonGroup3
     });
     this.radRibbonBarGroup5.Name = "radRibbonBarGroup5";
     this.radRibbonBarGroup5.Text = "Filter";
     //
     // radRibbonBarButtonGroup3
     //
     this.radRibbonBarButtonGroup3.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.btnFilter1,
         this.btnUnfilter1,
         this.ribbonBarGroupSeparator1
     });
     this.radRibbonBarButtonGroup3.Name          = "radRibbonBarButtonGroup3";
     this.radRibbonBarButtonGroup3.Orientation   = System.Windows.Forms.Orientation.Vertical;
     this.radRibbonBarButtonGroup3.Padding       = new System.Windows.Forms.Padding(1);
     this.radRibbonBarButtonGroup3.ShowBackColor = false;
     this.radRibbonBarButtonGroup3.ShowBorder    = false;
     this.radRibbonBarButtonGroup3.Text          = "radRibbonBarButtonGroup3";
     //
     // btnFilter1
     //
     this.btnFilter1.Image             = ((System.Drawing.Image)(resources.GetObject("btnFilter1.Image")));
     this.btnFilter1.Name              = "btnFilter1";
     this.btnFilter1.ShowBorder        = false;
     this.btnFilter1.Text              = "กรอง";
     this.btnFilter1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.btnFilter1.Click            += new System.EventHandler(this.btnFilter1_Click);
     //
     // btnUnfilter1
     //
     this.btnUnfilter1.Image             = ((System.Drawing.Image)(resources.GetObject("btnUnfilter1.Image")));
     this.btnUnfilter1.Name              = "btnUnfilter1";
     this.btnUnfilter1.ShowBorder        = false;
     this.btnUnfilter1.Text              = "ยกเลิก";
     this.btnUnfilter1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.btnUnfilter1.Click            += new System.EventHandler(this.btnUnfilter1_Click);
     //
     // ribbonBarGroupSeparator1
     //
     this.ribbonBarGroupSeparator1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.ribbonBarGroupSeparator1.Name      = "ribbonBarGroupSeparator1";
     this.ribbonBarGroupSeparator1.Text      = "ribbonBarGroupSeparator1";
     //
     // radMenuItem1
     //
     this.radMenuItem1.Image  = ((System.Drawing.Image)(resources.GetObject("radMenuItem1.Image")));
     this.radMenuItem1.Name   = "radMenuItem1";
     this.radMenuItem1.Text   = "Exit";
     this.radMenuItem1.Click += new System.EventHandler(this.radMenuItem1_Click);
     //
     // radMenuSeparatorItem1
     //
     this.radMenuSeparatorItem1.Name          = "radMenuSeparatorItem1";
     this.radMenuSeparatorItem1.Text          = "radMenuSeparatorItem1";
     this.radMenuSeparatorItem1.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // radMenuItem2
     //
     this.radMenuItem2.Image  = ((System.Drawing.Image)(resources.GetObject("radMenuItem2.Image")));
     this.radMenuItem2.Name   = "radMenuItem2";
     this.radMenuItem2.Text   = "History View";
     this.radMenuItem2.Click += new System.EventHandler(this.radMenuItem2_Click);
     //
     // radStatusStrip1
     //
     this.radStatusStrip1.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.radLabelElement1
     });
     this.radStatusStrip1.Location   = new System.Drawing.Point(0, 493);
     this.radStatusStrip1.Name       = "radStatusStrip1";
     this.radStatusStrip1.Size       = new System.Drawing.Size(730, 26);
     this.radStatusStrip1.SizingGrip = false;
     this.radStatusStrip1.TabIndex   = 1;
     //
     // radLabelElement1
     //
     this.radLabelElement1.Name = "radLabelElement1";
     this.radStatusStrip1.SetSpring(this.radLabelElement1, false);
     this.radLabelElement1.Text     = "Status : หน่วยสินค้า";
     this.radLabelElement1.TextWrap = true;
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.White;
     this.panel1.Controls.Add(this.radGridView1);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(0, 160);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(730, 333);
     this.panel1.TabIndex = 2;
     //
     // radGridView1
     //
     this.radGridView1.BackColor = System.Drawing.Color.White;
     this.radGridView1.ColumnChooserSortOrder = Telerik.WinControls.UI.RadSortOrder.Ascending;
     this.radGridView1.Cursor       = System.Windows.Forms.Cursors.Default;
     this.radGridView1.Dock         = System.Windows.Forms.DockStyle.Fill;
     this.radGridView1.EnterKeyMode = Telerik.WinControls.UI.RadGridViewEnterKeyMode.EnterMovesToNextCell;
     this.radGridView1.Font         = new System.Drawing.Font("Tahoma", 8.25F);
     this.radGridView1.ForeColor    = System.Drawing.Color.Black;
     this.radGridView1.ImeMode      = System.Windows.Forms.ImeMode.NoControl;
     this.radGridView1.Location     = new System.Drawing.Point(0, 0);
     //
     //
     //
     this.radGridView1.MasterTemplate.AddNewRowPosition            = Telerik.WinControls.UI.SystemRowPosition.Bottom;
     this.radGridView1.MasterTemplate.AllowAddNewRow               = false;
     this.radGridView1.MasterTemplate.AllowCellContextMenu         = false;
     this.radGridView1.MasterTemplate.AllowColumnChooser           = false;
     this.radGridView1.MasterTemplate.AllowColumnHeaderContextMenu = false;
     this.radGridView1.MasterTemplate.AllowColumnReorder           = false;
     this.radGridView1.MasterTemplate.AllowDragToGroup             = false;
     this.radGridView1.MasterTemplate.AllowRowHeaderContextMenu    = false;
     this.radGridView1.MasterTemplate.AllowRowResize               = false;
     this.radGridView1.MasterTemplate.AutoGenerateColumns          = false;
     this.radGridView1.MasterTemplate.AutoSizeColumnsMode          = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     gridViewCommandColumn2.DefaultText            = "Delete";
     gridViewCommandColumn2.EnableExpressionEditor = false;
     gridViewCommandColumn2.FieldName               = "Del";
     gridViewCommandColumn2.HeaderText              = "Del";
     gridViewCommandColumn2.Name                    = "dgvDel";
     gridViewCommandColumn2.TextAlignment           = System.Drawing.ContentAlignment.MiddleCenter;
     gridViewCommandColumn2.UseDefaultText          = true;
     gridViewCommandColumn2.Width                   = 84;
     gridViewTextBoxColumn7.EnableExpressionEditor  = false;
     gridViewTextBoxColumn7.FieldName               = "UnitCode";
     gridViewTextBoxColumn7.HeaderText              = "หน่วนสินค้า";
     gridViewTextBoxColumn7.Name                    = "UnitCode";
     gridViewTextBoxColumn7.Width                   = 122;
     gridViewTextBoxColumn8.EnableExpressionEditor  = false;
     gridViewTextBoxColumn8.FieldName               = "UnitDetail";
     gridViewTextBoxColumn8.HeaderText              = "รายละเอียดหน่วย";
     gridViewTextBoxColumn8.Name                    = "UnitDetail";
     gridViewTextBoxColumn8.Width                   = 244;
     gridViewCheckBoxColumn2.EnableExpressionEditor = false;
     gridViewCheckBoxColumn2.FieldName              = "UnitActive";
     gridViewCheckBoxColumn2.HeaderText             = "สถานะการใช้";
     gridViewCheckBoxColumn2.MinWidth               = 20;
     gridViewCheckBoxColumn2.Name                   = "UnitActive";
     gridViewCheckBoxColumn2.Width                  = 81;
     gridViewTextBoxColumn9.EnableExpressionEditor  = false;
     gridViewTextBoxColumn9.HeaderText              = "column1";
     gridViewTextBoxColumn9.IsVisible               = false;
     gridViewTextBoxColumn9.Name                    = "dgvC";
     gridViewTextBoxColumn9.ReadOnly                = true;
     gridViewTextBoxColumn9.Width                   = 41;
     gridViewTextBoxColumn10.EnableExpressionEditor = false;
     gridViewTextBoxColumn10.FieldName              = "None";
     gridViewTextBoxColumn10.IsPinned               = true;
     gridViewTextBoxColumn10.Name                   = "None";
     gridViewTextBoxColumn10.PinPosition            = Telerik.WinControls.UI.PinnedColumnPosition.Right;
     gridViewTextBoxColumn10.ReadOnly               = true;
     gridViewTextBoxColumn10.Width                  = 181;
     gridViewTextBoxColumn11.EnableExpressionEditor = false;
     gridViewTextBoxColumn11.HeaderText             = "Code";
     gridViewTextBoxColumn11.IsVisible              = false;
     gridViewTextBoxColumn11.Name                   = "dgvCodetemp";
     gridViewTextBoxColumn11.Width                  = 44;
     gridViewTextBoxColumn12.EnableExpressionEditor = false;
     gridViewTextBoxColumn12.FieldName              = "id";
     gridViewTextBoxColumn12.HeaderText             = "id";
     gridViewTextBoxColumn12.IsVisible              = false;
     gridViewTextBoxColumn12.Name                   = "id";
     gridViewTextBoxColumn12.ReadOnly               = true;
     gridViewTextBoxColumn12.Width                  = 46;
     this.radGridView1.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewCommandColumn2,
         gridViewTextBoxColumn7,
         gridViewTextBoxColumn8,
         gridViewCheckBoxColumn2,
         gridViewTextBoxColumn9,
         gridViewTextBoxColumn10,
         gridViewTextBoxColumn11,
         gridViewTextBoxColumn12
     });
     this.radGridView1.MasterTemplate.SelectionMode  = Telerik.WinControls.UI.GridViewSelectionMode.CellSelect;
     this.radGridView1.MasterTemplate.ViewDefinition = tableViewDefinition2;
     this.radGridView1.Name = "radGridView1";
     this.radContextMenuManager1.SetRadContextMenu(this.radGridView1, this.radContextMenu1);
     this.radGridView1.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.radGridView1.ShowGroupPanel   = false;
     this.radGridView1.Size             = new System.Drawing.Size(730, 333);
     this.radGridView1.TabIndex         = 0;
     this.radGridView1.ThemeName        = "Office2010Blue";
     this.radGridView1.CellEndEdit     += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGridView1_CellEndEdit);
     this.radGridView1.CellClick       += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGridView1_CellClick);
     this.radGridView1.CellDoubleClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.MasterTemplate_CellDoubleClick);
     this.radGridView1.PreviewKeyDown  += new System.Windows.Forms.PreviewKeyDownEventHandler(this.radGridView1_PreviewKeyDown);
     //
     // radRibbonBarButtonGroup2
     //
     this.radRibbonBarButtonGroup2.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.btnFilter,
         this.Unfilter
     });
     this.radRibbonBarButtonGroup2.Name          = "radRibbonBarButtonGroup2";
     this.radRibbonBarButtonGroup2.Orientation   = System.Windows.Forms.Orientation.Vertical;
     this.radRibbonBarButtonGroup2.Padding       = new System.Windows.Forms.Padding(1);
     this.radRibbonBarButtonGroup2.ShowBackColor = false;
     this.radRibbonBarButtonGroup2.Text          = "radRibbonBarButtonGroup2";
     //
     // btnFilter
     //
     this.btnFilter.Image             = ((System.Drawing.Image)(resources.GetObject("btnFilter.Image")));
     this.btnFilter.Name              = "btnFilter";
     this.btnFilter.Text              = "Filter";
     this.btnFilter.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     //
     // Unfilter
     //
     this.Unfilter.Image             = ((System.Drawing.Image)(resources.GetObject("Unfilter.Image")));
     this.Unfilter.Name              = "Unfilter";
     this.Unfilter.Text              = "Un Filter";
     this.Unfilter.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     //
     // radRibbonBarButtonGroup5
     //
     this.radRibbonBarButtonGroup5.Name          = "radRibbonBarButtonGroup5";
     this.radRibbonBarButtonGroup5.Orientation   = System.Windows.Forms.Orientation.Vertical;
     this.radRibbonBarButtonGroup5.Padding       = new System.Windows.Forms.Padding(1);
     this.radRibbonBarButtonGroup5.ShowBackColor = false;
     this.radRibbonBarButtonGroup5.ShowBorder    = false;
     this.radRibbonBarButtonGroup5.Text          = "radRibbonBarButtonGroup4";
     //
     // radContextMenu1
     //
     this.radContextMenu1.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.RMenu3,
         this.radMenuSeparatorItem2,
         this.RMenu4,
         this.RMenu5,
         this.RMenu6
     });
     this.radContextMenu1.ThemeName = "Office2010Blue";
     //
     // RMenu3
     //
     this.RMenu3.Font  = new System.Drawing.Font("Tahoma", 8.25F);
     this.RMenu3.Image = ((System.Drawing.Image)(resources.GetObject("RMenu3.Image")));
     this.RMenu3.Name  = "RMenu3";
     this.RMenu3.Text  = "เพิ่มใหม่";
     //
     // radMenuSeparatorItem2
     //
     this.radMenuSeparatorItem2.Name          = "radMenuSeparatorItem2";
     this.radMenuSeparatorItem2.Text          = "radMenuSeparatorItem2";
     this.radMenuSeparatorItem2.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // RMenu4
     //
     this.RMenu4.Font  = new System.Drawing.Font("Tahoma", 8.25F);
     this.RMenu4.Image = ((System.Drawing.Image)(resources.GetObject("RMenu4.Image")));
     this.RMenu4.Name  = "RMenu4";
     this.RMenu4.Text  = "แสดงรายการ";
     //
     // RMenu5
     //
     this.RMenu5.Font  = new System.Drawing.Font("Tahoma", 8.25F);
     this.RMenu5.Image = ((System.Drawing.Image)(resources.GetObject("RMenu5.Image")));
     this.RMenu5.Name  = "RMenu5";
     this.RMenu5.Text  = "แก้ไข";
     //
     // RMenu6
     //
     this.RMenu6.Font  = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
     this.RMenu6.Image = ((System.Drawing.Image)(resources.GetObject("RMenu6.Image")));
     this.RMenu6.Name  = "RMenu6";
     this.RMenu6.Text  = "ลบรายการ";
     //
     // Unit
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(730, 519);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.radStatusStrip1);
     this.Controls.Add(this.radRibbonBar1);
     this.Icon       = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview = true;
     this.Name       = "Unit";
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Unit (หน่วนสินค้า)";
     this.Load           += new System.EventHandler(this.Unit_Load);
     this.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.Unit_PreviewKeyDown);
     ((System.ComponentModel.ISupportInitialize)(this.radRibbonBar1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radStatusStrip1)).EndInit();
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).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();
			Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn1 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
			Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
			Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn1 = new Telerik.WinControls.UI.GridViewCommandColumn();
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
			this.gridViewPlugins = new Telerik.WinControls.UI.RadGridView();
			this.groupBoxPlugins = new Telerik.WinControls.UI.RadGroupBox();
			this.groupBoxAddPlugin = new Telerik.WinControls.UI.RadGroupBox();
			this.textBoxPluginPath = new Telerik.WinControls.UI.RadTextBox();
			this.buttonBrowseForPlugin = new Telerik.WinControls.UI.RadButton();
			this.textBoxPluginName = new Telerik.WinControls.UI.RadTextBox();
			this.labelPluginName = new Telerik.WinControls.UI.RadLabel();
			this.buttonAddPlugin = new Telerik.WinControls.UI.RadButton();
			this.groupBoxStatus = new Telerik.WinControls.UI.RadGroupBox();
			this.labelStartStop = new Telerik.WinControls.UI.RadLabel();
			this.buttonStartStop = new Telerik.WinControls.UI.RadButton();
			this.menuItemFile = new Telerik.WinControls.UI.RadMenuItem();
			this.menuItemOpenFile = new Telerik.WinControls.UI.RadMenuItem();
			this.MenuItemSave = new Telerik.WinControls.UI.RadMenuItem();
			this.menuItemAdvanced = new Telerik.WinControls.UI.RadMenuItem();
			this.radMenuItemPluginWizard = new Telerik.WinControls.UI.RadMenuItem();
			this.menuItemMasterDictionary = new Telerik.WinControls.UI.RadMenuItem();
			this.menuItemMacroWizard = new Telerik.WinControls.UI.RadMenuItem();
			this.statusStrip = new Telerik.WinControls.UI.RadStatusStrip();
			this.labelStatusInStatusStrip = new Telerik.WinControls.UI.RadLabelElement();
			this.menuItemHelp = new Telerik.WinControls.UI.RadMenuItem();
			this.menuItemPluginCommands = new Telerik.WinControls.UI.RadMenuItem();
			this.menuMain = new Telerik.WinControls.UI.RadMenu();
			this.notifyIcon = new System.Windows.Forms.NotifyIcon(this.components);
			((System.ComponentModel.ISupportInitialize)(this.gridViewPlugins)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupBoxPlugins)).BeginInit();
			this.groupBoxPlugins.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.groupBoxAddPlugin)).BeginInit();
			this.groupBoxAddPlugin.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.textBoxPluginPath)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.buttonBrowseForPlugin)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textBoxPluginName)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.labelPluginName)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.buttonAddPlugin)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupBoxStatus)).BeginInit();
			this.groupBoxStatus.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.labelStartStop)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.buttonStartStop)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.statusStrip)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.menuMain)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
			this.SuspendLayout();
			// 
			// gridViewPlugins
			// 
			this.gridViewPlugins.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
			this.gridViewPlugins.Cursor = System.Windows.Forms.Cursors.Default;
			this.gridViewPlugins.Font = new System.Drawing.Font("Segoe UI", 8.25F);
			this.gridViewPlugins.ForeColor = System.Drawing.Color.Black;
			this.gridViewPlugins.ImeMode = System.Windows.Forms.ImeMode.NoControl;
			this.gridViewPlugins.Location = new System.Drawing.Point(7, 21);
			// 
			// gridViewPlugins
			// 
			this.gridViewPlugins.MasterTemplate.AllowAddNewRow = false;
			gridViewCheckBoxColumn1.FieldName = "Checkbox";
			gridViewCheckBoxColumn1.HeaderText = "";
			gridViewCheckBoxColumn1.MaxWidth = 20;
			gridViewCheckBoxColumn1.Name = "Checkbox";
			gridViewCheckBoxColumn1.ReadOnly = true;
			gridViewCheckBoxColumn1.Width = 20;
			gridViewTextBoxColumn1.EnableExpressionEditor = false;
			gridViewTextBoxColumn1.FieldName = "Name";
			gridViewTextBoxColumn1.HeaderText = "Name";
			gridViewTextBoxColumn1.Name = "Name";
			gridViewTextBoxColumn1.ReadOnly = true;
			gridViewCommandColumn1.EnableExpressionEditor = false;
			gridViewCommandColumn1.FieldName = "Button";
			gridViewCommandColumn1.MaxWidth = 130;
			gridViewCommandColumn1.MinWidth = 130;
			gridViewCommandColumn1.Name = "Button";
			gridViewCommandColumn1.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
			gridViewCommandColumn1.Width = 130;
			this.gridViewPlugins.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewCheckBoxColumn1,
            gridViewTextBoxColumn1,
            gridViewCommandColumn1});
			this.gridViewPlugins.MasterTemplate.EnableGrouping = false;
			this.gridViewPlugins.MasterTemplate.ShowRowHeaderColumn = false;
			this.gridViewPlugins.Name = "gridViewPlugins";
			this.gridViewPlugins.ReadOnly = true;
			this.gridViewPlugins.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.gridViewPlugins.ShowGroupPanel = false;
			this.gridViewPlugins.Size = new System.Drawing.Size(661, 233);
			this.gridViewPlugins.TabIndex = 0;
			// 
			// groupBoxPlugins
			// 
			this.groupBoxPlugins.AccessibleName = "";
			this.groupBoxPlugins.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
			this.groupBoxPlugins.Controls.Add(this.gridViewPlugins);
			this.groupBoxPlugins.FooterImageIndex = -1;
			this.groupBoxPlugins.FooterImageKey = "";
			this.groupBoxPlugins.HeaderImageIndex = -1;
			this.groupBoxPlugins.HeaderImageKey = "";
			this.groupBoxPlugins.HeaderMargin = new System.Windows.Forms.Padding(0);
			this.groupBoxPlugins.HeaderText = "Added plugins";
			this.groupBoxPlugins.Location = new System.Drawing.Point(12, 26);
			this.groupBoxPlugins.Name = "groupBoxPlugins";
			this.groupBoxPlugins.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
			// 
			// 
			// 
			this.groupBoxPlugins.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
			this.groupBoxPlugins.Size = new System.Drawing.Size(674, 261);
			this.groupBoxPlugins.TabIndex = 1;
			this.groupBoxPlugins.Text = "Added plugins";
			// 
			// groupBoxAddPlugin
			// 
			this.groupBoxAddPlugin.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
			this.groupBoxAddPlugin.Controls.Add(this.textBoxPluginPath);
			this.groupBoxAddPlugin.Controls.Add(this.buttonBrowseForPlugin);
			this.groupBoxAddPlugin.Controls.Add(this.textBoxPluginName);
			this.groupBoxAddPlugin.Controls.Add(this.labelPluginName);
			this.groupBoxAddPlugin.Controls.Add(this.buttonAddPlugin);
			this.groupBoxAddPlugin.FooterImageIndex = -1;
			this.groupBoxAddPlugin.FooterImageKey = "";
			this.groupBoxAddPlugin.HeaderImageIndex = -1;
			this.groupBoxAddPlugin.HeaderImageKey = "";
			this.groupBoxAddPlugin.HeaderMargin = new System.Windows.Forms.Padding(0);
			this.groupBoxAddPlugin.HeaderText = "Add plugin";
			this.groupBoxAddPlugin.Location = new System.Drawing.Point(12, 294);
			this.groupBoxAddPlugin.Name = "groupBoxAddPlugin";
			this.groupBoxAddPlugin.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
			// 
			// 
			// 
			this.groupBoxAddPlugin.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
			this.groupBoxAddPlugin.Size = new System.Drawing.Size(334, 102);
			this.groupBoxAddPlugin.TabIndex = 2;
			this.groupBoxAddPlugin.Text = "Add plugin";
			// 
			// textBoxPluginPath
			// 
			this.textBoxPluginPath.Location = new System.Drawing.Point(7, 21);
			this.textBoxPluginPath.Name = "textBoxPluginPath";
			this.textBoxPluginPath.Size = new System.Drawing.Size(291, 20);
			this.textBoxPluginPath.TabIndex = 0;
			this.textBoxPluginPath.TabStop = false;
			// 
			// buttonBrowseForPlugin
			// 
			this.buttonBrowseForPlugin.Location = new System.Drawing.Point(304, 21);
			this.buttonBrowseForPlugin.Name = "buttonBrowseForPlugin";
			this.buttonBrowseForPlugin.Size = new System.Drawing.Size(24, 21);
			this.buttonBrowseForPlugin.TabIndex = 1;
			this.buttonBrowseForPlugin.Text = "...";
			this.buttonBrowseForPlugin.Click += new System.EventHandler(this.buttonBrowseForPlugin_Click);
			// 
			// textBoxPluginName
			// 
			this.textBoxPluginName.Location = new System.Drawing.Point(45, 46);
			this.textBoxPluginName.Name = "textBoxPluginName";
			this.textBoxPluginName.Size = new System.Drawing.Size(283, 20);
			this.textBoxPluginName.TabIndex = 3;
			this.textBoxPluginName.TabStop = false;
			this.textBoxPluginName.KeyUp += new System.Windows.Forms.KeyEventHandler(this.textBoxPluginName_KeyUp);
			// 
			// labelPluginName
			// 
			this.labelPluginName.Location = new System.Drawing.Point(7, 49);
			this.labelPluginName.Name = "labelPluginName";
			this.labelPluginName.Size = new System.Drawing.Size(39, 18);
			this.labelPluginName.TabIndex = 2;
			this.labelPluginName.Text = "Name:";
			// 
			// buttonAddPlugin
			// 
			this.buttonAddPlugin.Image = global::ModernSteward.Properties.Resources.pluginIcon;
			this.buttonAddPlugin.ImageAlignment = System.Drawing.ContentAlignment.MiddleRight;
			this.buttonAddPlugin.Location = new System.Drawing.Point(194, 72);
			this.buttonAddPlugin.Name = "buttonAddPlugin";
			this.buttonAddPlugin.Size = new System.Drawing.Size(135, 24);
			this.buttonAddPlugin.TabIndex = 4;
			this.buttonAddPlugin.Text = "Add plugin";
			this.buttonAddPlugin.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
			this.buttonAddPlugin.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
			this.buttonAddPlugin.Click += new System.EventHandler(this.buttonAddPlugin_Click);
			// 
			// groupBoxStatus
			// 
			this.groupBoxStatus.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
			this.groupBoxStatus.Controls.Add(this.labelStartStop);
			this.groupBoxStatus.Controls.Add(this.buttonStartStop);
			this.groupBoxStatus.FooterImageIndex = -1;
			this.groupBoxStatus.FooterImageKey = "";
			this.groupBoxStatus.HeaderImageIndex = -1;
			this.groupBoxStatus.HeaderImageKey = "";
			this.groupBoxStatus.HeaderMargin = new System.Windows.Forms.Padding(0);
			this.groupBoxStatus.HeaderText = "Status";
			this.groupBoxStatus.Location = new System.Drawing.Point(352, 294);
			this.groupBoxStatus.Name = "groupBoxStatus";
			this.groupBoxStatus.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
			// 
			// 
			// 
			this.groupBoxStatus.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
			this.groupBoxStatus.Size = new System.Drawing.Size(334, 102);
			this.groupBoxStatus.TabIndex = 3;
			this.groupBoxStatus.Text = "Status";
			// 
			// labelStartStop
			// 
			this.labelStartStop.Font = new System.Drawing.Font("Segoe UI", 18F);
			this.labelStartStop.ForeColor = System.Drawing.Color.Maroon;
			this.labelStartStop.Location = new System.Drawing.Point(19, 41);
			this.labelStartStop.Name = "labelStartStop";
			this.labelStartStop.Size = new System.Drawing.Size(153, 37);
			this.labelStartStop.TabIndex = 0;
			this.labelStartStop.Text = "TURNED OFF";
			// 
			// buttonStartStop
			// 
			this.buttonStartStop.Image = global::ModernSteward.Properties.Resources.iconRun;
			this.buttonStartStop.ImageAlignment = System.Drawing.ContentAlignment.MiddleRight;
			this.buttonStartStop.Location = new System.Drawing.Point(189, 21);
			this.buttonStartStop.Name = "buttonStartStop";
			this.buttonStartStop.Size = new System.Drawing.Size(139, 73);
			this.buttonStartStop.TabIndex = 1;
			this.buttonStartStop.Text = "Start";
			this.buttonStartStop.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
			this.buttonStartStop.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
			this.buttonStartStop.Click += new System.EventHandler(this.buttonStartStop_Click);
			// 
			// menuItemFile
			// 
			this.menuItemFile.AccessibleDescription = "File";
			this.menuItemFile.AccessibleName = "File";
			this.menuItemFile.AutoSize = true;
			this.menuItemFile.Items.AddRange(new Telerik.WinControls.RadItem[] {
            this.menuItemOpenFile,
            this.MenuItemSave});
			this.menuItemFile.Name = "menuItemFile";
			this.menuItemFile.Text = "File";
			this.menuItemFile.Visibility = Telerik.WinControls.ElementVisibility.Visible;
			// 
			// menuItemOpenFile
			// 
			this.menuItemOpenFile.AccessibleDescription = "Open";
			this.menuItemOpenFile.AccessibleName = "Open";
			this.menuItemOpenFile.Image = global::ModernSteward.Properties.Resources.iconOpen;
			this.menuItemOpenFile.Name = "menuItemOpenFile";
			this.menuItemOpenFile.Text = "Open";
			this.menuItemOpenFile.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
			this.menuItemOpenFile.Visibility = Telerik.WinControls.ElementVisibility.Visible;
			this.menuItemOpenFile.Click += new System.EventHandler(this.menuItemOpenFile_Click);
			// 
			// MenuItemSave
			// 
			this.MenuItemSave.AccessibleDescription = "Save";
			this.MenuItemSave.AccessibleName = "Save";
			this.MenuItemSave.Image = global::ModernSteward.Properties.Resources.iconSave;
			this.MenuItemSave.Name = "MenuItemSave";
			this.MenuItemSave.Text = "Save";
			this.MenuItemSave.Visibility = Telerik.WinControls.ElementVisibility.Visible;
			this.MenuItemSave.Click += new System.EventHandler(this.MenuItemSave_Click);
			// 
			// menuItemAdvanced
			// 
			this.menuItemAdvanced.AccessibleDescription = "Advanced";
			this.menuItemAdvanced.AccessibleName = "Advanced";
			this.menuItemAdvanced.Items.AddRange(new Telerik.WinControls.RadItem[] {
            this.radMenuItemPluginWizard,
            this.menuItemMasterDictionary,
            this.menuItemMacroWizard});
			this.menuItemAdvanced.Name = "menuItemAdvanced";
			this.menuItemAdvanced.Text = "Advanced";
			this.menuItemAdvanced.Visibility = Telerik.WinControls.ElementVisibility.Visible;
			// 
			// radMenuItemPluginWizard
			// 
			this.radMenuItemPluginWizard.AccessibleDescription = "radMenuItem3";
			this.radMenuItemPluginWizard.AccessibleName = "radMenuItem3";
			this.radMenuItemPluginWizard.Image = global::ModernSteward.Properties.Resources.wizardIcon;
			this.radMenuItemPluginWizard.Name = "radMenuItemPluginWizard";
			this.radMenuItemPluginWizard.Text = "Plugin wizard";
			this.radMenuItemPluginWizard.Visibility = Telerik.WinControls.ElementVisibility.Visible;
			this.radMenuItemPluginWizard.Click += new System.EventHandler(this.radMenuItemPluginWizard_Click);
			// 
			// menuItemMasterDictionary
			// 
			this.menuItemMasterDictionary.AccessibleDescription = "Master dictionary";
			this.menuItemMasterDictionary.AccessibleName = "Master dictionary";
			this.menuItemMasterDictionary.Image = global::ModernSteward.Properties.Resources.iconDictionary;
			this.menuItemMasterDictionary.Name = "menuItemMasterDictionary";
			this.menuItemMasterDictionary.Text = "Master dictionary";
			this.menuItemMasterDictionary.Visibility = Telerik.WinControls.ElementVisibility.Visible;
			this.menuItemMasterDictionary.Click += new System.EventHandler(this.menuItemMasterDictionary_Click);
			// 
			// menuItemMacroWizard
			// 
			this.menuItemMacroWizard.AccessibleDescription = "MacroWizard";
			this.menuItemMacroWizard.AccessibleName = "MacroWizard";
			this.menuItemMacroWizard.Image = global::ModernSteward.Properties.Resources.iconMacro;
			this.menuItemMacroWizard.Name = "menuItemMacroWizard";
			this.menuItemMacroWizard.Text = "MacroWizard";
			this.menuItemMacroWizard.Visibility = Telerik.WinControls.ElementVisibility.Visible;
			this.menuItemMacroWizard.Click += new System.EventHandler(this.menuItemMacroWizard_Click);
			// 
			// statusStrip
			// 
			this.statusStrip.AutoSize = true;
			this.statusStrip.Items.AddRange(new Telerik.WinControls.RadItem[] {
            this.labelStatusInStatusStrip});
			this.statusStrip.LayoutStyle = Telerik.WinControls.UI.RadStatusBarLayoutStyle.Stack;
			this.statusStrip.Location = new System.Drawing.Point(0, 401);
			this.statusStrip.Name = "statusStrip";
			this.statusStrip.Size = new System.Drawing.Size(698, 24);
			this.statusStrip.TabIndex = 4;
			this.statusStrip.Text = "Status";
			// 
			// labelStatusInStatusStrip
			// 
			this.labelStatusInStatusStrip.AccessibleDescription = "status";
			this.labelStatusInStatusStrip.AccessibleName = "status";
			this.labelStatusInStatusStrip.Name = "labelStatusInStatusStrip";
			this.statusStrip.SetSpring(this.labelStatusInStatusStrip, false);
			this.labelStatusInStatusStrip.Text = "";
			this.labelStatusInStatusStrip.TextWrap = true;
			this.labelStatusInStatusStrip.Visibility = Telerik.WinControls.ElementVisibility.Visible;
			// 
			// menuItemHelp
			// 
			this.menuItemHelp.AccessibleDescription = "Help";
			this.menuItemHelp.AccessibleName = "Help";
			this.menuItemHelp.Items.AddRange(new Telerik.WinControls.RadItem[] {
            this.menuItemPluginCommands});
			this.menuItemHelp.Name = "menuItemHelp";
			this.menuItemHelp.Text = "Help";
			this.menuItemHelp.Visibility = Telerik.WinControls.ElementVisibility.Visible;
			// 
			// menuItemPluginCommands
			// 
			this.menuItemPluginCommands.AccessibleDescription = "Commands";
			this.menuItemPluginCommands.AccessibleName = "Commands";
			this.menuItemPluginCommands.Name = "menuItemPluginCommands";
			this.menuItemPluginCommands.Text = "Commands";
			this.menuItemPluginCommands.Visibility = Telerik.WinControls.ElementVisibility.Visible;
			this.menuItemPluginCommands.Click += new System.EventHandler(this.menuItemPluginCommands_Click);
			// 
			// menuMain
			// 
			this.menuMain.Items.AddRange(new Telerik.WinControls.RadItem[] {
            this.menuItemFile,
            this.menuItemAdvanced,
            this.menuItemHelp});
			this.menuMain.Location = new System.Drawing.Point(0, 0);
			this.menuMain.Name = "menuMain";
			this.menuMain.Size = new System.Drawing.Size(698, 20);
			this.menuMain.TabIndex = 0;
			this.menuMain.Text = "Main menu";
			// 
			// notifyIcon
			// 
			this.notifyIcon.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon.Icon")));
			this.notifyIcon.Text = "ModernSteward";
			this.notifyIcon.Visible = true;
			this.notifyIcon.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.notifyIcon_MouseDoubleClick);
			// 
			// MainForm
			// 
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.ClientSize = new System.Drawing.Size(698, 425);
			this.Controls.Add(this.statusStrip);
			this.Controls.Add(this.menuMain);
			this.Controls.Add(this.groupBoxStatus);
			this.Controls.Add(this.groupBoxAddPlugin);
			this.Controls.Add(this.groupBoxPlugins);
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
			this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
			this.Name = "MainForm";
			// 
			// 
			// 
			this.RootElement.ApplyShapeToControl = true;
			this.Text = "ModernSteward";
			this.ThemeName = "ControlDefault";
			this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
			this.Resize += new System.EventHandler(this.MainForm_Resize);
			((System.ComponentModel.ISupportInitialize)(this.gridViewPlugins)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupBoxPlugins)).EndInit();
			this.groupBoxPlugins.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.groupBoxAddPlugin)).EndInit();
			this.groupBoxAddPlugin.ResumeLayout(false);
			this.groupBoxAddPlugin.PerformLayout();
			((System.ComponentModel.ISupportInitialize)(this.textBoxPluginPath)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.buttonBrowseForPlugin)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textBoxPluginName)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.labelPluginName)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.buttonAddPlugin)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupBoxStatus)).EndInit();
			this.groupBoxStatus.ResumeLayout(false);
			this.groupBoxStatus.PerformLayout();
			((System.ComponentModel.ISupportInitialize)(this.labelStartStop)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.buttonStartStop)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.statusStrip)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.menuMain)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this)).EndInit();
			this.ResumeLayout(false);
			this.PerformLayout();

        }
Exemple #54
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn1  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn2  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn1 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn3  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewCommandColumn  gridViewCommandColumn1  = new Telerik.WinControls.UI.GridViewCommandColumn();
     Telerik.WinControls.UI.GridViewCommandColumn  gridViewCommandColumn2  = new Telerik.WinControls.UI.GridViewCommandColumn();
     this.radPanelTitle              = new Telerik.WinControls.UI.RadPanel();
     this.btUpdate                   = new System.Windows.Forms.Button();
     this.label5                     = new System.Windows.Forms.Label();
     this.label4                     = new System.Windows.Forms.Label();
     this.txtName                    = new System.Windows.Forms.TextBox();
     this.btCancel                   = new System.Windows.Forms.Button();
     this.cbSecurity                 = new System.Windows.Forms.CheckBox();
     this.lbTransitRequired          = new System.Windows.Forms.Label();
     this.lbPathPreservationRequired = new System.Windows.Forms.Label();
     this.ckTransitEnabled           = new System.Windows.Forms.CheckBox();
     this.label16                    = new System.Windows.Forms.Label();
     this.label6                     = new System.Windows.Forms.Label();
     this.txtMaxCache                = new System.Windows.Forms.NumericUpDown();
     this.label1                     = new System.Windows.Forms.Label();
     this.label10                    = new System.Windows.Forms.Label();
     this.cbAutoVersion              = new System.Windows.Forms.CheckBox();
     this.label12                    = new System.Windows.Forms.Label();
     this.txtAuthorizationAssembly   = new System.Windows.Forms.TextBox();
     this.label11                    = new System.Windows.Forms.Label();
     this.txtAuthorizationClassName  = new System.Windows.Forms.TextBox();
     this.label2                     = new System.Windows.Forms.Label();
     this.cbLegal                    = new System.Windows.Forms.CheckBox();
     this.label3                     = new System.Windows.Forms.Label();
     this.txtUpperCACHE              = new System.Windows.Forms.NumericUpDown();
     this.label7                     = new System.Windows.Forms.Label();
     this.txtLowerCache              = new System.Windows.Forms.NumericUpDown();
     this.txtLastIdBiblos            = new System.Windows.Forms.NumericUpDown();
     this.label8                     = new System.Windows.Forms.Label();
     this.txtPathTransito            = new System.Windows.Forms.TextBox();
     this.label13                    = new System.Windows.Forms.Label();
     this.txtPathPreservation        = new System.Windows.Forms.TextBox();
     this.label15                    = new System.Windows.Forms.Label();
     this.label9                     = new System.Windows.Forms.Label();
     this.cbDocumentsType            = new System.Windows.Forms.ComboBox();
     this.label14                    = new System.Windows.Forms.Label();
     this.grpServers                 = new Telerik.WinControls.UI.RadGroupBox();
     this.gvServers                  = new Telerik.WinControls.UI.RadGridView();
     this.btnAddServer               = new Telerik.WinControls.UI.RadButton();
     ((System.ComponentModel.ISupportInitialize)(this.radPanelTitle)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMaxCache)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtUpperCACHE)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLowerCache)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLastIdBiblos)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpServers)).BeginInit();
     this.grpServers.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gvServers)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnAddServer)).BeginInit();
     this.SuspendLayout();
     //
     // radPanelTitle
     //
     this.radPanelTitle.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.radPanelTitle.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
     this.radPanelTitle.Location  = new System.Drawing.Point(6, 3);
     this.radPanelTitle.Name      = "radPanelTitle";
     this.radPanelTitle.Size      = new System.Drawing.Size(782, 46);
     this.radPanelTitle.TabIndex  = 10;
     this.radPanelTitle.Text      = "Archive";
     //
     // btUpdate
     //
     this.btUpdate.AutoSize = true;
     this.btUpdate.Location = new System.Drawing.Point(585, 58);
     this.btUpdate.Name     = "btUpdate";
     this.btUpdate.Size     = new System.Drawing.Size(104, 23);
     this.btUpdate.TabIndex = 10;
     this.btUpdate.Text     = "Update";
     this.btUpdate.UseVisualStyleBackColor = true;
     this.btUpdate.Click += new System.EventHandler(this.storageUpdate_Click);
     //
     // label5
     //
     this.label5.AutoSize  = true;
     this.label5.Font      = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.ForeColor = System.Drawing.Color.Red;
     this.label5.Location  = new System.Drawing.Point(551, 71);
     this.label5.Name      = "label5";
     this.label5.Size      = new System.Drawing.Size(15, 19);
     this.label5.TabIndex  = 41;
     this.label5.Text      = "*";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.Location = new System.Drawing.Point(121, 71);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(43, 13);
     this.label4.TabIndex = 32;
     this.label4.Text     = "Name:";
     //
     // txtName
     //
     this.txtName.Location  = new System.Drawing.Point(170, 65);
     this.txtName.MaxLength = 255;
     this.txtName.Name      = "txtName";
     this.txtName.Size      = new System.Drawing.Size(375, 20);
     this.txtName.TabIndex  = 0;
     //
     // btCancel
     //
     this.btCancel.AutoSize = true;
     this.btCancel.Location = new System.Drawing.Point(585, 87);
     this.btCancel.Name     = "btCancel";
     this.btCancel.Size     = new System.Drawing.Size(104, 23);
     this.btCancel.TabIndex = 11;
     this.btCancel.Text     = "Cancel";
     this.btCancel.UseVisualStyleBackColor = true;
     this.btCancel.Click += new System.EventHandler(this.btCancel_Click);
     //
     // cbSecurity
     //
     this.cbSecurity.AutoSize = true;
     this.cbSecurity.Location = new System.Drawing.Point(170, 391);
     this.cbSecurity.Name     = "cbSecurity";
     this.cbSecurity.Size     = new System.Drawing.Size(15, 14);
     this.cbSecurity.TabIndex = 9;
     this.cbSecurity.UseVisualStyleBackColor = true;
     //
     // lbTransitRequired
     //
     this.lbTransitRequired.AutoSize  = true;
     this.lbTransitRequired.Font      = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbTransitRequired.ForeColor = System.Drawing.Color.Red;
     this.lbTransitRequired.Location  = new System.Drawing.Point(551, 108);
     this.lbTransitRequired.Name      = "lbTransitRequired";
     this.lbTransitRequired.Size      = new System.Drawing.Size(15, 19);
     this.lbTransitRequired.TabIndex  = 65;
     this.lbTransitRequired.Text      = "*";
     //
     // lbPathPreservationRequired
     //
     this.lbPathPreservationRequired.AutoSize  = true;
     this.lbPathPreservationRequired.Font      = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbPathPreservationRequired.ForeColor = System.Drawing.Color.Red;
     this.lbPathPreservationRequired.Location  = new System.Drawing.Point(551, 161);
     this.lbPathPreservationRequired.Name      = "lbPathPreservationRequired";
     this.lbPathPreservationRequired.Size      = new System.Drawing.Size(15, 19);
     this.lbPathPreservationRequired.TabIndex  = 68;
     this.lbPathPreservationRequired.Text      = "*";
     //
     // ckTransitEnabled
     //
     this.ckTransitEnabled.AutoSize = true;
     this.ckTransitEnabled.Location = new System.Drawing.Point(171, 91);
     this.ckTransitEnabled.Name     = "ckTransitEnabled";
     this.ckTransitEnabled.Size     = new System.Drawing.Size(15, 14);
     this.ckTransitEnabled.TabIndex = 69;
     this.ckTransitEnabled.UseVisualStyleBackColor = true;
     this.ckTransitEnabled.CheckedChanged         += new System.EventHandler(this.ckTransitEnabled_CheckedChanged);
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label16.Location = new System.Drawing.Point(63, 92);
     this.label16.Name     = "label16";
     this.label16.Size     = new System.Drawing.Size(100, 13);
     this.label16.TabIndex = 70;
     this.label16.Text     = "Transit Enabled:";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.Location = new System.Drawing.Point(52, 224);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(112, 13);
     this.label6.TabIndex = 33;
     this.label6.Text     = "Max Cache ( MB ):";
     //
     // txtMaxCache
     //
     this.txtMaxCache.Location = new System.Drawing.Point(170, 217);
     this.txtMaxCache.Maximum  = new decimal(new int[] {
         2147483647,
         0,
         0,
         0
     });
     this.txtMaxCache.Name     = "txtMaxCache";
     this.txtMaxCache.Size     = new System.Drawing.Size(94, 20);
     this.txtMaxCache.TabIndex = 2;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(75, 297);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(88, 13);
     this.label1.TabIndex = 45;
     this.label1.Text     = "Last Id Biblos:";
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label10.Location = new System.Drawing.Point(80, 322);
     this.label10.Name     = "label10";
     this.label10.Size     = new System.Drawing.Size(83, 13);
     this.label10.TabIndex = 49;
     this.label10.Text     = "Auto Version:";
     //
     // cbAutoVersion
     //
     this.cbAutoVersion.AutoSize = true;
     this.cbAutoVersion.Location = new System.Drawing.Point(170, 321);
     this.cbAutoVersion.Name     = "cbAutoVersion";
     this.cbAutoVersion.Size     = new System.Drawing.Size(15, 14);
     this.cbAutoVersion.TabIndex = 6;
     this.cbAutoVersion.UseVisualStyleBackColor = true;
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label12.Location = new System.Drawing.Point(22, 348);
     this.label12.Name     = "label12";
     this.label12.Size     = new System.Drawing.Size(141, 13);
     this.label12.TabIndex = 51;
     this.label12.Text     = "Authorization Assembly:";
     //
     // txtAuthorizationAssembly
     //
     this.txtAuthorizationAssembly.Location  = new System.Drawing.Point(170, 341);
     this.txtAuthorizationAssembly.MaxLength = 255;
     this.txtAuthorizationAssembly.Name      = "txtAuthorizationAssembly";
     this.txtAuthorizationAssembly.Size      = new System.Drawing.Size(375, 20);
     this.txtAuthorizationAssembly.TabIndex  = 7;
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label11.Location = new System.Drawing.Point(9, 370);
     this.label11.Name     = "label11";
     this.label11.Size     = new System.Drawing.Size(155, 13);
     this.label11.TabIndex = 53;
     this.label11.Text     = "Authorization Class Name:";
     //
     // txtAuthorizationClassName
     //
     this.txtAuthorizationClassName.Location  = new System.Drawing.Point(170, 367);
     this.txtAuthorizationClassName.MaxLength = 50;
     this.txtAuthorizationClassName.Name      = "txtAuthorizationClassName";
     this.txtAuthorizationClassName.Size      = new System.Drawing.Size(375, 20);
     this.txtAuthorizationClassName.TabIndex  = 8;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location = new System.Drawing.Point(121, 140);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(42, 13);
     this.label2.TabIndex = 55;
     this.label2.Text     = "Legal:";
     //
     // cbLegal
     //
     this.cbLegal.AutoSize = true;
     this.cbLegal.Location = new System.Drawing.Point(170, 139);
     this.cbLegal.Name     = "cbLegal";
     this.cbLegal.Size     = new System.Drawing.Size(15, 14);
     this.cbLegal.TabIndex = 1;
     this.cbLegal.UseVisualStyleBackColor = true;
     this.cbLegal.CheckedChanged         += new System.EventHandler(this.cbLegal_CheckedChanged);
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.Location = new System.Drawing.Point(40, 250);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(123, 13);
     this.label3.TabIndex = 57;
     this.label3.Text     = "Upper Cache ( MB ):";
     //
     // txtUpperCACHE
     //
     this.txtUpperCACHE.Location = new System.Drawing.Point(170, 243);
     this.txtUpperCACHE.Maximum  = new decimal(new int[] {
         2147483647,
         0,
         0,
         0
     });
     this.txtUpperCACHE.Name     = "txtUpperCACHE";
     this.txtUpperCACHE.Size     = new System.Drawing.Size(94, 20);
     this.txtUpperCACHE.TabIndex = 3;
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label7.Location = new System.Drawing.Point(40, 276);
     this.label7.Name     = "label7";
     this.label7.Size     = new System.Drawing.Size(123, 13);
     this.label7.TabIndex = 59;
     this.label7.Text     = "Lower Cache ( MB ):";
     //
     // txtLowerCache
     //
     this.txtLowerCache.Location = new System.Drawing.Point(170, 269);
     this.txtLowerCache.Maximum  = new decimal(new int[] {
         2147483647,
         0,
         0,
         0
     });
     this.txtLowerCache.Name     = "txtLowerCache";
     this.txtLowerCache.Size     = new System.Drawing.Size(94, 20);
     this.txtLowerCache.TabIndex = 4;
     //
     // txtLastIdBiblos
     //
     this.txtLastIdBiblos.Location = new System.Drawing.Point(170, 295);
     this.txtLastIdBiblos.Maximum  = new decimal(new int[] {
         2147483647,
         0,
         0,
         0
     });
     this.txtLastIdBiblos.Name     = "txtLastIdBiblos";
     this.txtLastIdBiblos.Size     = new System.Drawing.Size(94, 20);
     this.txtLastIdBiblos.TabIndex = 5;
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label8.Location = new System.Drawing.Point(106, 392);
     this.label8.Name     = "label8";
     this.label8.Size     = new System.Drawing.Size(57, 13);
     this.label8.TabIndex = 62;
     this.label8.Text     = "Security:";
     //
     // txtPathTransito
     //
     this.txtPathTransito.Location  = new System.Drawing.Point(169, 111);
     this.txtPathTransito.MaxLength = 255;
     this.txtPathTransito.Name      = "txtPathTransito";
     this.txtPathTransito.Size      = new System.Drawing.Size(375, 20);
     this.txtPathTransito.TabIndex  = 63;
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label13.Location = new System.Drawing.Point(83, 118);
     this.label13.Name     = "label13";
     this.label13.Size     = new System.Drawing.Size(80, 13);
     this.label13.TabIndex = 64;
     this.label13.Text     = "Path Transit:";
     //
     // txtPathPreservation
     //
     this.txtPathPreservation.Location  = new System.Drawing.Point(169, 159);
     this.txtPathPreservation.MaxLength = 255;
     this.txtPathPreservation.Name      = "txtPathPreservation";
     this.txtPathPreservation.Size      = new System.Drawing.Size(375, 20);
     this.txtPathPreservation.TabIndex  = 66;
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label15.Location = new System.Drawing.Point(51, 165);
     this.label15.Name     = "label15";
     this.label15.Size     = new System.Drawing.Size(112, 13);
     this.label15.TabIndex = 67;
     this.label15.Text     = "Path Preservation:";
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label9.Location = new System.Drawing.Point(20, 192);
     this.label9.Name     = "label9";
     this.label9.Size     = new System.Drawing.Size(143, 13);
     this.label9.TabIndex = 71;
     this.label9.Text     = "Fiscal Documents Type:";
     //
     // cbDocumentsType
     //
     this.cbDocumentsType.FormattingEnabled = true;
     this.cbDocumentsType.Location          = new System.Drawing.Point(169, 189);
     this.cbDocumentsType.Name     = "cbDocumentsType";
     this.cbDocumentsType.Size     = new System.Drawing.Size(376, 21);
     this.cbDocumentsType.TabIndex = 72;
     //
     // label14
     //
     this.label14.AutoSize  = true;
     this.label14.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label14.ForeColor = System.Drawing.Color.Red;
     this.label14.Location  = new System.Drawing.Point(166, 423);
     this.label14.Name      = "label14";
     this.label14.Size      = new System.Drawing.Size(581, 13);
     this.label14.TabIndex  = 73;
     this.label14.Text      = "N.B. The path must be a local path or a full specify shared path like \\\\192.168.1" +
                              ".1\\c$\\BiblosDS2010";
     //
     // grpServers
     //
     this.grpServers.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.grpServers.Controls.Add(this.gvServers);
     this.grpServers.Controls.Add(this.btnAddServer);
     this.grpServers.Dock             = System.Windows.Forms.DockStyle.Bottom;
     this.grpServers.FooterImageIndex = -1;
     this.grpServers.FooterImageKey   = "";
     this.grpServers.HeaderImageIndex = -1;
     this.grpServers.HeaderImageKey   = "";
     this.grpServers.HeaderMargin     = new System.Windows.Forms.Padding(0);
     this.grpServers.HeaderText       = "Servers";
     this.grpServers.Location         = new System.Drawing.Point(0, 439);
     this.grpServers.Name             = "grpServers";
     this.grpServers.Padding          = new System.Windows.Forms.Padding(2, 18, 2, 2);
     //
     //
     //
     this.grpServers.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
     this.grpServers.Size     = new System.Drawing.Size(794, 163);
     this.grpServers.TabIndex = 74;
     this.grpServers.Text     = "Servers";
     //
     // gvServers
     //
     this.gvServers.BackColor = System.Drawing.Color.White;
     this.gvServers.Cursor    = System.Windows.Forms.Cursors.Default;
     this.gvServers.Dock      = System.Windows.Forms.DockStyle.Fill;
     this.gvServers.Font      = new System.Drawing.Font("Segoe UI", 8.25F);
     this.gvServers.ForeColor = System.Drawing.Color.Black;
     this.gvServers.ImeMode   = System.Windows.Forms.ImeMode.NoControl;
     this.gvServers.Location  = new System.Drawing.Point(2, 42);
     //
     // gvServers
     //
     this.gvServers.MasterTemplate.AllowAddNewRow      = false;
     this.gvServers.MasterTemplate.AllowColumnReorder  = false;
     this.gvServers.MasterTemplate.AutoGenerateColumns = false;
     gridViewTextBoxColumn1.FieldName   = "IdServer";
     gridViewTextBoxColumn1.HeaderText  = "ServerId";
     gridViewTextBoxColumn1.IsVisible   = false;
     gridViewTextBoxColumn1.Name        = "colServerId";
     gridViewTextBoxColumn2.FieldName   = "Server.ServerName";
     gridViewTextBoxColumn2.HeaderText  = "Name";
     gridViewTextBoxColumn2.Name        = "colServerName";
     gridViewTextBoxColumn2.ReadOnly    = true;
     gridViewTextBoxColumn2.Width       = 300;
     gridViewCheckBoxColumn1.FieldName  = "TransitEnabled";
     gridViewCheckBoxColumn1.HeaderText = "Transit Enabled";
     gridViewCheckBoxColumn1.MinWidth   = 20;
     gridViewCheckBoxColumn1.Name       = "colEnabled";
     gridViewCheckBoxColumn1.ReadOnly   = true;
     gridViewCheckBoxColumn1.Width      = 85;
     gridViewTextBoxColumn3.FieldName   = "TransitPath";
     gridViewTextBoxColumn3.HeaderText  = "Transit Path";
     gridViewTextBoxColumn3.Name        = "colTransitPath";
     gridViewTextBoxColumn3.ReadOnly    = true;
     gridViewTextBoxColumn3.Width       = 300;
     gridViewCommandColumn1.HeaderText  = "Modify";
     gridViewCommandColumn1.Name        = "colModify";
     gridViewCommandColumn1.Width       = 43;
     gridViewCommandColumn2.HeaderText  = "Delete";
     gridViewCommandColumn2.Name        = "colDelete";
     gridViewCommandColumn2.Width       = 40;
     this.gvServers.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewTextBoxColumn1,
         gridViewTextBoxColumn2,
         gridViewCheckBoxColumn1,
         gridViewTextBoxColumn3,
         gridViewCommandColumn1,
         gridViewCommandColumn2
     });
     this.gvServers.MasterTemplate.EnableAlternatingRowColor = true;
     this.gvServers.Name        = "gvServers";
     this.gvServers.ReadOnly    = true;
     this.gvServers.RightToLeft = System.Windows.Forms.RightToLeft.No;
     //
     //
     //
     this.gvServers.RootElement.ForeColor = System.Drawing.Color.Black;
     this.gvServers.ShowGroupPanel        = false;
     this.gvServers.Size              = new System.Drawing.Size(790, 119);
     this.gvServers.TabIndex          = 2;
     this.gvServers.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.gvServers_CommandCellClick);
     //
     // btnAddServer
     //
     this.btnAddServer.Dock     = System.Windows.Forms.DockStyle.Top;
     this.btnAddServer.Image    = global::BiblosDs.Document.AdminCentral.Properties.Resources.BindingNavigatorAddNewItem_Image1;
     this.btnAddServer.Location = new System.Drawing.Point(2, 18);
     this.btnAddServer.Name     = "btnAddServer";
     this.btnAddServer.Size     = new System.Drawing.Size(790, 24);
     this.btnAddServer.TabIndex = 0;
     this.btnAddServer.Text     = "Add New Server Configuration";
     this.btnAddServer.Click   += new System.EventHandler(this.btnAddServer_Click);
     //
     // UCArchiveDetail
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoScroll          = true;
     this.BackColor           = System.Drawing.Color.White;
     this.Controls.Add(this.grpServers);
     this.Controls.Add(this.label14);
     this.Controls.Add(this.cbDocumentsType);
     this.Controls.Add(this.label9);
     this.Controls.Add(this.ckTransitEnabled);
     this.Controls.Add(this.label16);
     this.Controls.Add(this.lbPathPreservationRequired);
     this.Controls.Add(this.label15);
     this.Controls.Add(this.txtPathPreservation);
     this.Controls.Add(this.lbTransitRequired);
     this.Controls.Add(this.label13);
     this.Controls.Add(this.txtPathTransito);
     this.Controls.Add(this.cbSecurity);
     this.Controls.Add(this.label8);
     this.Controls.Add(this.txtLastIdBiblos);
     this.Controls.Add(this.txtLowerCache);
     this.Controls.Add(this.label7);
     this.Controls.Add(this.txtUpperCACHE);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.cbLegal);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.txtAuthorizationClassName);
     this.Controls.Add(this.label11);
     this.Controls.Add(this.txtAuthorizationAssembly);
     this.Controls.Add(this.label12);
     this.Controls.Add(this.cbAutoVersion);
     this.Controls.Add(this.label10);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.btCancel);
     this.Controls.Add(this.btUpdate);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.txtMaxCache);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.txtName);
     this.Controls.Add(this.radPanelTitle);
     this.Name = "UCArchiveDetail";
     this.Size = new System.Drawing.Size(794, 602);
     ((System.ComponentModel.ISupportInitialize)(this.radPanelTitle)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMaxCache)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtUpperCACHE)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLowerCache)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLastIdBiblos)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpServers)).EndInit();
     this.grpServers.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gvServers)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnAddServer)).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()
        {
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn2 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn3 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn4 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn5 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn6 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn7 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn8 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn9 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn10 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn11 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn12 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn1 = new Telerik.WinControls.UI.GridViewCommandColumn();
            this.Eliminar = new LaPaz.Win.Controls.DeleteCell.DeleteColumn();
            this.deleteColumn1 = new LaPaz.Win.Controls.DeleteCell.DeleteColumn();
            this.radThemeManager1 = new Telerik.WinControls.RadThemeManager();
            this.lblCantidad = new Telerik.WinControls.UI.RadLabel();
            this.GrillaTitulos = new Telerik.WinControls.UI.RadGridView();
            ((System.ComponentModel.ISupportInitialize)(this.lblCantidad)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.GrillaTitulos)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.GrillaTitulos.MasterTemplate)).BeginInit();
            this.SuspendLayout();
            // 
            // Eliminar
            // 
            this.Eliminar.FillWeight = 25F;
            this.Eliminar.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.Eliminar.HeaderText = "";
            this.Eliminar.Name = "Eliminar";
            this.Eliminar.ReadOnly = true;
            this.Eliminar.Resizable = System.Windows.Forms.DataGridViewTriState.False;
            this.Eliminar.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.Eliminar.Width = 30;
            // 
            // deleteColumn1
            // 
            this.deleteColumn1.FillWeight = 25F;
            this.deleteColumn1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.deleteColumn1.HeaderText = "";
            this.deleteColumn1.Name = "deleteColumn1";
            this.deleteColumn1.Resizable = System.Windows.Forms.DataGridViewTriState.False;
            this.deleteColumn1.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.deleteColumn1.Width = 18;
            // 
            // lblCantidad
            // 
            this.lblCantidad.AutoSize = false;
            this.lblCantidad.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.lblCantidad.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblCantidad.Location = new System.Drawing.Point(0, 212);
            this.lblCantidad.Name = "lblCantidad";
            this.lblCantidad.Size = new System.Drawing.Size(823, 24);
            this.lblCantidad.TabIndex = 43;
            this.lblCantidad.Text = "Cantidad de libros: 0";
            this.lblCantidad.ThemeName = "TelerikMetroBlue";
            // 
            // GrillaTitulos
            // 
            this.GrillaTitulos.Dock = System.Windows.Forms.DockStyle.Fill;
            this.GrillaTitulos.Font = new System.Drawing.Font("Segoe UI", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
            this.GrillaTitulos.Location = new System.Drawing.Point(0, 0);
            this.GrillaTitulos.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
            // 
            // GrillaTitulos
            // 
            this.GrillaTitulos.MasterTemplate.AllowAddNewRow = false;
            this.GrillaTitulos.MasterTemplate.AllowColumnReorder = false;
            this.GrillaTitulos.MasterTemplate.AllowDeleteRow = false;
            this.GrillaTitulos.MasterTemplate.AllowDragToGroup = false;
            this.GrillaTitulos.MasterTemplate.AllowEditRow = false;
            this.GrillaTitulos.MasterTemplate.AutoGenerateColumns = false;
            this.GrillaTitulos.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
            gridViewTextBoxColumn1.FieldName = "TituloCod";
            gridViewTextBoxColumn1.HeaderText = "Código";
            gridViewTextBoxColumn1.Name = "Codigo";
            gridViewTextBoxColumn1.ReadOnly = true;
            gridViewTextBoxColumn1.Width = 103;
            gridViewTextBoxColumn2.FieldName = "TituloNombreTitulo";
            gridViewTextBoxColumn2.HeaderText = "Titulo";
            gridViewTextBoxColumn2.Name = "Descripcion";
            gridViewTextBoxColumn2.ReadOnly = true;
            gridViewTextBoxColumn2.Width = 180;
            gridViewTextBoxColumn3.FieldName = "Cantidad";
            gridViewTextBoxColumn3.HeaderText = "Cantidad";
            gridViewTextBoxColumn3.Name = "Cantidad";
            gridViewTextBoxColumn3.ReadOnly = true;
            gridViewTextBoxColumn3.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
            gridViewTextBoxColumn3.Width = 48;
            gridViewTextBoxColumn4.FieldName = "CntVendida";
            gridViewTextBoxColumn4.HeaderText = "Rendida";
            gridViewTextBoxColumn4.Name = "CntVendida";
            gridViewTextBoxColumn4.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
            gridViewTextBoxColumn4.Width = 48;
            gridViewTextBoxColumn5.FieldName = "CntDevuelta";
            gridViewTextBoxColumn5.HeaderText = "Devuelta";
            gridViewTextBoxColumn5.Name = "CntDevuelta";
            gridViewTextBoxColumn5.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
            gridViewTextBoxColumn5.Width = 48;
            gridViewTextBoxColumn6.FieldName = "CntARendir";
            gridViewTextBoxColumn6.HeaderText = "ARendir";
            gridViewTextBoxColumn6.Name = "ARendir";
            gridViewTextBoxColumn6.Width = 48;
            gridViewTextBoxColumn7.FieldName = "CntADevolver";
            gridViewTextBoxColumn7.HeaderText = "A Dev";
            gridViewTextBoxColumn7.Name = "ADev";
            gridViewTextBoxColumn7.Width = 48;
            gridViewTextBoxColumn8.FieldName = "TituloPrecioVentaTitulo";
            gridViewTextBoxColumn8.FormatString = "{0:N2}";
            gridViewTextBoxColumn8.HeaderText = "Pr. Actual";
            gridViewTextBoxColumn8.Name = "PrecioActual";
            gridViewTextBoxColumn8.ReadOnly = true;
            gridViewTextBoxColumn8.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
            gridViewTextBoxColumn8.Width = 61;
            gridViewTextBoxColumn9.FieldName = "Descuento";
            gridViewTextBoxColumn9.HeaderText = "Descuento";
            gridViewTextBoxColumn9.Name = "Descuento";
            gridViewTextBoxColumn9.Width = 47;
            gridViewTextBoxColumn10.FieldName = "PrecioVenta";
            gridViewTextBoxColumn10.FormatString = "{0:N2}";
            gridViewTextBoxColumn10.HeaderText = "Precio";
            gridViewTextBoxColumn10.Name = "PrecioBase";
            gridViewTextBoxColumn10.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
            gridViewTextBoxColumn10.Width = 71;
            gridViewTextBoxColumn11.FieldName = "PrecioFinal";
            gridViewTextBoxColumn11.FormatString = "{0:N2}";
            gridViewTextBoxColumn11.HeaderText = "Pr. Final";
            gridViewTextBoxColumn11.IsVisible = false;
            gridViewTextBoxColumn11.Name = "PrecioFinal";
            gridViewTextBoxColumn11.ReadOnly = true;
            gridViewTextBoxColumn11.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
            gridViewTextBoxColumn11.Width = 65;
            gridViewTextBoxColumn12.FieldName = "SubTotal";
            gridViewTextBoxColumn12.FormatString = "{0:N2}";
            gridViewTextBoxColumn12.HeaderText = "SubTotal";
            gridViewTextBoxColumn12.MaxWidth = 70;
            gridViewTextBoxColumn12.MinWidth = 70;
            gridViewTextBoxColumn12.Name = "SubTotal";
            gridViewTextBoxColumn12.ReadOnly = true;
            gridViewTextBoxColumn12.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
            gridViewTextBoxColumn12.Width = 70;
            gridViewCommandColumn1.HeaderText = "";
            gridViewCommandColumn1.Image = global::LaPaz.Win.Properties.Resources.Data_Edit;
            gridViewCommandColumn1.MaxWidth = 40;
            gridViewCommandColumn1.MinWidth = 40;
            gridViewCommandColumn1.Name = "Editar";
            gridViewCommandColumn1.Width = 40;
            this.GrillaTitulos.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn1,
            gridViewTextBoxColumn2,
            gridViewTextBoxColumn3,
            gridViewTextBoxColumn4,
            gridViewTextBoxColumn5,
            gridViewTextBoxColumn6,
            gridViewTextBoxColumn7,
            gridViewTextBoxColumn8,
            gridViewTextBoxColumn9,
            gridViewTextBoxColumn10,
            gridViewTextBoxColumn11,
            gridViewTextBoxColumn12,
            gridViewCommandColumn1});
            this.GrillaTitulos.MasterTemplate.EnableGrouping = false;
            this.GrillaTitulos.Name = "GrillaTitulos";
            this.GrillaTitulos.ReadOnly = true;
            this.GrillaTitulos.Size = new System.Drawing.Size(823, 212);
            this.GrillaTitulos.TabIndex = 45;
            this.GrillaTitulos.ThemeName = "TelerikMetroBlue";
            this.GrillaTitulos.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.GrillaTitulos_CommandCellClick);
            // 
            // UcTitulosPresupuesto
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(11F, 25F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.GrillaTitulos);
            this.Controls.Add(this.lblCantidad);
            this.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
            this.Name = "UcTitulosPresupuesto";
            this.Size = new System.Drawing.Size(823, 236);
            ((System.ComponentModel.ISupportInitialize)(this.lblCantidad)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.GrillaTitulos.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.GrillaTitulos)).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();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn2 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn1 = new Telerik.WinControls.UI.GridViewCommandColumn();
     Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn2 = new Telerik.WinControls.UI.GridViewCommandColumn();
     Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn3 = new Telerik.WinControls.UI.GridViewCommandColumn();
     this.EpvProveedores = new System.Windows.Forms.ErrorProvider(this.components);
     this.BtnGuardar     = new Telerik.WinControls.UI.RadButton();
     this.BtnCancelar    = new Telerik.WinControls.UI.RadButton();
     this.radPageView1   = new Telerik.WinControls.UI.RadPageView();
     this.PageTema       = new Telerik.WinControls.UI.RadPageViewPage();
     this.metroLabel3    = new Telerik.WinControls.UI.RadLabel();
     this.TxtNombre      = new Telerik.WinControls.UI.RadTextBox();
     this.PageSubTema    = new Telerik.WinControls.UI.RadPageViewPage();
     this.BtnCrear       = new Telerik.WinControls.UI.RadButton();
     this.GridSubTemas   = new Telerik.WinControls.UI.RadGridView();
     ((System.ComponentModel.ISupportInitialize)(this.EpvProveedores)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BtnGuardar)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BtnCancelar)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radPageView1)).BeginInit();
     this.radPageView1.SuspendLayout();
     this.PageTema.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.metroLabel3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtNombre)).BeginInit();
     this.PageSubTema.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.BtnCrear)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridSubTemas)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridSubTemas.MasterTemplate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // EpvProveedores
     //
     this.EpvProveedores.ContainerControl = this;
     //
     // BtnGuardar
     //
     this.BtnGuardar.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.BtnGuardar.Font         = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.BtnGuardar.Location     = new System.Drawing.Point(494, 266);
     this.BtnGuardar.Name         = "BtnGuardar";
     this.BtnGuardar.Size         = new System.Drawing.Size(100, 30);
     this.BtnGuardar.TabIndex     = 16;
     this.BtnGuardar.Text         = "Guardar";
     this.BtnGuardar.ThemeName    = "TelerikMetroBlue";
     this.BtnGuardar.Click       += new System.EventHandler(this.BtnGuardar_Click);
     //
     // BtnCancelar
     //
     this.BtnCancelar.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.BtnCancelar.Font         = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.BtnCancelar.Location     = new System.Drawing.Point(607, 266);
     this.BtnCancelar.Name         = "BtnCancelar";
     this.BtnCancelar.Size         = new System.Drawing.Size(100, 30);
     this.BtnCancelar.TabIndex     = 17;
     this.BtnCancelar.Text         = "Cancelar";
     this.BtnCancelar.ThemeName    = "TelerikMetroBlue";
     //
     // radPageView1
     //
     this.radPageView1.Controls.Add(this.PageTema);
     this.radPageView1.Controls.Add(this.PageSubTema);
     this.radPageView1.Location     = new System.Drawing.Point(12, 12);
     this.radPageView1.Name         = "radPageView1";
     this.radPageView1.SelectedPage = this.PageSubTema;
     this.radPageView1.Size         = new System.Drawing.Size(695, 235);
     this.radPageView1.TabIndex     = 84;
     this.radPageView1.Text         = "radPageView1";
     this.radPageView1.ThemeName    = "TelerikMetroBlue";
     ((Telerik.WinControls.UI.RadPageViewStripElement)(this.radPageView1.GetChildAt(0))).StripButtons = Telerik.WinControls.UI.StripViewButtons.None;
     //
     // PageTema
     //
     this.PageTema.Controls.Add(this.metroLabel3);
     this.PageTema.Controls.Add(this.TxtNombre);
     this.PageTema.Location = new System.Drawing.Point(5, 31);
     this.PageTema.Name     = "PageTema";
     this.PageTema.Size     = new System.Drawing.Size(685, 199);
     this.PageTema.Text     = "Tema";
     //
     // metroLabel3
     //
     this.metroLabel3.Font      = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.metroLabel3.Location  = new System.Drawing.Point(3, 20);
     this.metroLabel3.Name      = "metroLabel3";
     this.metroLabel3.Size      = new System.Drawing.Size(67, 24);
     this.metroLabel3.TabIndex  = 70;
     this.metroLabel3.Text      = "Nombre:";
     this.metroLabel3.ThemeName = "TelerikMetroBlue";
     //
     // TxtNombre
     //
     this.TxtNombre.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.TxtNombre.Font            = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.TxtNombre.Location        = new System.Drawing.Point(93, 19);
     this.TxtNombre.MaxLength       = 50;
     this.TxtNombre.Name            = "TxtNombre";
     this.TxtNombre.Size            = new System.Drawing.Size(467, 26);
     this.TxtNombre.TabIndex        = 69;
     this.TxtNombre.TabStop         = false;
     this.TxtNombre.ThemeName       = "TelerikMetroBlue";
     //
     // PageSubTema
     //
     this.PageSubTema.Controls.Add(this.BtnCrear);
     this.PageSubTema.Controls.Add(this.GridSubTemas);
     this.PageSubTema.Location = new System.Drawing.Point(5, 31);
     this.PageSubTema.Name     = "PageSubTema";
     this.PageSubTema.Size     = new System.Drawing.Size(685, 199);
     this.PageSubTema.Text     = "Sub Temas";
     //
     // BtnCrear
     //
     this.BtnCrear.Font      = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.BtnCrear.Location  = new System.Drawing.Point(17, 14);
     this.BtnCrear.Name      = "BtnCrear";
     this.BtnCrear.Size      = new System.Drawing.Size(75, 30);
     this.BtnCrear.TabIndex  = 10;
     this.BtnCrear.Text      = "Crear";
     this.BtnCrear.ThemeName = "TelerikMetroBlue";
     this.BtnCrear.Click    += new System.EventHandler(this.BtnCrear_Click);
     ((Telerik.WinControls.UI.RadButtonElement)(this.BtnCrear.GetChildAt(0))).Text = "Crear";
     ((Telerik.WinControls.Primitives.BorderPrimitive)(this.BtnCrear.GetChildAt(0).GetChildAt(2))).StretchHorizontally = true;
     //
     // GridSubTemas
     //
     this.GridSubTemas.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.GridSubTemas.Font     = new System.Drawing.Font("Segoe UI", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
     this.GridSubTemas.Location = new System.Drawing.Point(17, 52);
     this.GridSubTemas.Margin   = new System.Windows.Forms.Padding(5);
     //
     // GridSubTemas
     //
     this.GridSubTemas.MasterTemplate.AllowAddNewRow      = false;
     this.GridSubTemas.MasterTemplate.AllowColumnReorder  = false;
     this.GridSubTemas.MasterTemplate.AllowDeleteRow      = false;
     this.GridSubTemas.MasterTemplate.AllowDragToGroup    = false;
     this.GridSubTemas.MasterTemplate.AllowEditRow        = false;
     this.GridSubTemas.MasterTemplate.AllowRowResize      = false;
     this.GridSubTemas.MasterTemplate.AutoGenerateColumns = false;
     this.GridSubTemas.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     gridViewTextBoxColumn1.FieldName  = "Id";
     gridViewTextBoxColumn1.HeaderText = "Id";
     gridViewTextBoxColumn1.IsVisible  = false;
     gridViewTextBoxColumn1.Name       = "Id";
     gridViewTextBoxColumn1.ReadOnly   = true;
     gridViewTextBoxColumn1.Width      = 29;
     gridViewTextBoxColumn2.FieldName  = "Nombre";
     gridViewTextBoxColumn2.HeaderText = "Nombre";
     gridViewTextBoxColumn2.Name       = "Nombre";
     gridViewTextBoxColumn2.Width      = 531;
     gridViewCommandColumn1.HeaderText = "";
     gridViewCommandColumn1.Image      = global::LaPaz.Win.Properties.Resources.View_Details;
     gridViewCommandColumn1.MaxWidth   = 30;
     gridViewCommandColumn1.MinWidth   = 30;
     gridViewCommandColumn1.Name       = "ColumnaDetalle";
     gridViewCommandColumn1.Width      = 30;
     gridViewCommandColumn2.HeaderText = "";
     gridViewCommandColumn2.Image      = global::LaPaz.Win.Properties.Resources.Data_Edit;
     gridViewCommandColumn2.MaxWidth   = 30;
     gridViewCommandColumn2.MinWidth   = 30;
     gridViewCommandColumn2.Name       = "ColumnaEditar";
     gridViewCommandColumn2.Width      = 30;
     gridViewCommandColumn3.HeaderText = "";
     gridViewCommandColumn3.Image      = global::LaPaz.Win.Properties.Resources.Garbage_Closed;
     gridViewCommandColumn3.MaxWidth   = 30;
     gridViewCommandColumn3.MinWidth   = 30;
     gridViewCommandColumn3.Name       = "ColumnaEliminar";
     gridViewCommandColumn3.Width      = 30;
     this.GridSubTemas.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewTextBoxColumn1,
         gridViewTextBoxColumn2,
         gridViewCommandColumn1,
         gridViewCommandColumn2,
         gridViewCommandColumn3
     });
     this.GridSubTemas.MasterTemplate.EnableGrouping = false;
     this.GridSubTemas.MasterTemplate.EnableSorting  = false;
     this.GridSubTemas.Name              = "GridSubTemas";
     this.GridSubTemas.ReadOnly          = true;
     this.GridSubTemas.Size              = new System.Drawing.Size(640, 132);
     this.GridSubTemas.TabIndex          = 9;
     this.GridSubTemas.ThemeName         = "TelerikMetroBlue";
     this.GridSubTemas.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.GridSubTemas_CommandCellClick);
     //
     // FrmCrearEditarTema
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(719, 305);
     this.Controls.Add(this.radPageView1);
     this.Controls.Add(this.BtnGuardar);
     this.Controls.Add(this.BtnCancelar);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "FrmCrearEditarTema";
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.Text  = "Tema";
     this.Load += new System.EventHandler(this.FrmCrearEditarTema_Load);
     ((System.ComponentModel.ISupportInitialize)(this.EpvProveedores)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BtnGuardar)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BtnCancelar)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radPageView1)).EndInit();
     this.radPageView1.ResumeLayout(false);
     this.PageTema.ResumeLayout(false);
     this.PageTema.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.metroLabel3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtNombre)).EndInit();
     this.PageSubTema.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.BtnCrear)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridSubTemas.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridSubTemas)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).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()
        {
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewDecimalColumn gridViewDecimalColumn1 = new Telerik.WinControls.UI.GridViewDecimalColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn2 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewDateTimeColumn gridViewDateTimeColumn1 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
            Telerik.WinControls.UI.GridViewDecimalColumn gridViewDecimalColumn2 = new Telerik.WinControls.UI.GridViewDecimalColumn();
            Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn1 = new Telerik.WinControls.UI.GridViewCommandColumn();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmMangeAmount));
            Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn2 = new Telerik.WinControls.UI.GridViewCommandColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn3 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn4 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            this.radGridView1 = new Telerik.WinControls.UI.RadGridView();
            this.telerikMetroTheme1 = new Telerik.WinControls.Themes.TelerikMetroTheme();
            this.toolStrip1 = new System.Windows.Forms.ToolStrip();
            this.AddBtn = new System.Windows.Forms.ToolStripButton();
            this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
            this.RefreshBtn = new System.Windows.Forms.ToolStripButton();
            this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
            this.PrintBtn = new System.Windows.Forms.ToolStripButton();
            this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
            this.statusStrip1 = new System.Windows.Forms.StatusStrip();
            this.StatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
            this.radGroupBox1 = new Telerik.WinControls.UI.RadGroupBox();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView1.MasterTemplate)).BeginInit();
            this.toolStrip1.SuspendLayout();
            this.statusStrip1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).BeginInit();
            this.radGroupBox1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            this.SuspendLayout();
            // 
            // radGridView1
            // 
            this.radGridView1.BackColor = System.Drawing.Color.White;
            this.radGridView1.Cursor = System.Windows.Forms.Cursors.Default;
            this.radGridView1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.radGridView1.Font = new System.Drawing.Font("Tahoma", 8F);
            this.radGridView1.ForeColor = System.Drawing.SystemColors.ControlText;
            this.radGridView1.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.radGridView1.Location = new System.Drawing.Point(2, 18);
            // 
            // radGridView1
            // 
            this.radGridView1.MasterTemplate.AllowAddNewRow = false;
            this.radGridView1.MasterTemplate.AllowColumnReorder = false;
            this.radGridView1.MasterTemplate.AllowSearchRow = true;
            this.radGridView1.MasterTemplate.AutoGenerateColumns = false;
            this.radGridView1.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
            gridViewTextBoxColumn1.EnableExpressionEditor = false;
            gridViewTextBoxColumn1.HeaderText = "الرقم";
            gridViewTextBoxColumn1.IsVisible = false;
            gridViewTextBoxColumn1.Name = "Num";
            gridViewTextBoxColumn1.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            gridViewTextBoxColumn1.Width = 36;
            gridViewDecimalColumn1.EnableExpressionEditor = false;
            gridViewDecimalColumn1.FieldName = "ID";
            gridViewDecimalColumn1.HeaderText = "ID";
            gridViewDecimalColumn1.IsAutoGenerated = true;
            gridViewDecimalColumn1.IsVisible = false;
            gridViewDecimalColumn1.Name = "ID";
            gridViewDecimalColumn1.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            gridViewDecimalColumn1.Width = 83;
            gridViewTextBoxColumn2.EnableExpressionEditor = false;
            gridViewTextBoxColumn2.FieldName = "TheDonorsProject.TheDonor.Name";
            gridViewTextBoxColumn2.HeaderText = "الممول";
            gridViewTextBoxColumn2.Name = "DonorName";
            gridViewTextBoxColumn2.Width = 312;
            gridViewDateTimeColumn1.EnableExpressionEditor = false;
            gridViewDateTimeColumn1.ExcelExportType = Telerik.WinControls.UI.Export.DisplayFormatType.ShortDate;
            gridViewDateTimeColumn1.FieldName = "Date";
            gridViewDateTimeColumn1.FilteringMode = Telerik.WinControls.UI.GridViewTimeFilteringMode.Date;
            gridViewDateTimeColumn1.Format = System.Windows.Forms.DateTimePickerFormat.Short;
            gridViewDateTimeColumn1.HeaderText = "تاريخ الاستلام";
            gridViewDateTimeColumn1.IsAutoGenerated = true;
            gridViewDateTimeColumn1.Name = "Date";
            gridViewDateTimeColumn1.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            gridViewDateTimeColumn1.Width = 194;
            gridViewDecimalColumn2.EnableExpressionEditor = false;
            gridViewDecimalColumn2.FieldName = "Cost";
            gridViewDecimalColumn2.HeaderText = "المبلغ";
            gridViewDecimalColumn2.IsAutoGenerated = true;
            gridViewDecimalColumn2.Name = "Cost";
            gridViewDecimalColumn2.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            gridViewDecimalColumn2.Width = 229;
            gridViewCommandColumn1.EnableExpressionEditor = false;
            gridViewCommandColumn1.HeaderText = "حفظ";
            gridViewCommandColumn1.Image = ((System.Drawing.Image)(resources.GetObject("gridViewCommandColumn1.Image")));
            gridViewCommandColumn1.MaxWidth = 45;
            gridViewCommandColumn1.MinWidth = 45;
            gridViewCommandColumn1.Name = "EditColm";
            gridViewCommandColumn1.Width = 45;
            gridViewCommandColumn2.EnableExpressionEditor = false;
            gridViewCommandColumn2.HeaderText = "حذف";
            gridViewCommandColumn2.Image = ((System.Drawing.Image)(resources.GetObject("gridViewCommandColumn2.Image")));
            gridViewCommandColumn2.MaxWidth = 45;
            gridViewCommandColumn2.MinWidth = 45;
            gridViewCommandColumn2.Name = "DelColm";
            gridViewCommandColumn2.Width = 45;
            gridViewTextBoxColumn3.EnableExpressionEditor = false;
            gridViewTextBoxColumn3.FieldName = "ProjectProfile.ProjectName";
            gridViewTextBoxColumn3.HeaderText = "column1";
            gridViewTextBoxColumn3.IsVisible = false;
            gridViewTextBoxColumn3.Name = "ProjectName";
            gridViewTextBoxColumn3.Width = 39;
            gridViewTextBoxColumn4.EnableExpressionEditor = false;
            gridViewTextBoxColumn4.FieldName = "ProjectProfile.Coin";
            gridViewTextBoxColumn4.HeaderText = "column2";
            gridViewTextBoxColumn4.IsVisible = false;
            gridViewTextBoxColumn4.Name = "Coin";
            gridViewTextBoxColumn4.Width = 49;
            this.radGridView1.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn1,
            gridViewDecimalColumn1,
            gridViewTextBoxColumn2,
            gridViewDateTimeColumn1,
            gridViewDecimalColumn2,
            gridViewCommandColumn1,
            gridViewCommandColumn2,
            gridViewTextBoxColumn3,
            gridViewTextBoxColumn4});
            this.radGridView1.MasterTemplate.EnableFiltering = true;
            this.radGridView1.MasterTemplate.SearchRowPosition = Telerik.WinControls.UI.SystemRowPosition.Bottom;
            this.radGridView1.Name = "radGridView1";
            this.radGridView1.ReadOnly = true;
            this.radGridView1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.radGridView1.Size = new System.Drawing.Size(841, 449);
            this.radGridView1.TabIndex = 1;
            this.radGridView1.Text = "radGridView1";
            this.radGridView1.ThemeName = "TelerikMetro";
            this.radGridView1.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.radGridView1_CommandCellClick);
            // 
            // toolStrip1
            // 
            this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.AddBtn,
            this.toolStripSeparator1,
            this.RefreshBtn,
            this.toolStripSeparator2,
            this.PrintBtn,
            this.toolStripSeparator3});
            this.toolStrip1.Location = new System.Drawing.Point(0, 0);
            this.toolStrip1.Name = "toolStrip1";
            this.toolStrip1.Size = new System.Drawing.Size(845, 39);
            this.toolStrip1.TabIndex = 7;
            this.toolStrip1.Text = "toolStrip1";
            // 
            // AddBtn
            // 
            this.AddBtn.Image = global::UcasProWindowsForm.Properties.Resources.Add1;
            this.AddBtn.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
            this.AddBtn.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.AddBtn.Name = "AddBtn";
            this.AddBtn.Size = new System.Drawing.Size(96, 36);
            this.AddBtn.Text = "اضافة سجل";
            this.AddBtn.Click += new System.EventHandler(this.AddBtn_Click);
            // 
            // toolStripSeparator1
            // 
            this.toolStripSeparator1.Name = "toolStripSeparator1";
            this.toolStripSeparator1.Size = new System.Drawing.Size(6, 39);
            // 
            // RefreshBtn
            // 
            this.RefreshBtn.Image = global::UcasProWindowsForm.Properties.Resources.Refrech;
            this.RefreshBtn.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
            this.RefreshBtn.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.RefreshBtn.Name = "RefreshBtn";
            this.RefreshBtn.Size = new System.Drawing.Size(117, 36);
            this.RefreshBtn.Text = "تحديث السجلات";
            this.RefreshBtn.Click += new System.EventHandler(this.RefreshBtn_Click);
            // 
            // toolStripSeparator2
            // 
            this.toolStripSeparator2.Name = "toolStripSeparator2";
            this.toolStripSeparator2.Size = new System.Drawing.Size(6, 39);
            // 
            // PrintBtn
            // 
            this.PrintBtn.Image = global::UcasProWindowsForm.Properties.Resources.Print;
            this.PrintBtn.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
            this.PrintBtn.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.PrintBtn.Name = "PrintBtn";
            this.PrintBtn.Size = new System.Drawing.Size(99, 36);
            this.PrintBtn.Text = "طباعة تقرير";
            this.PrintBtn.Click += new System.EventHandler(this.PrintBtn_Click);
            // 
            // toolStripSeparator3
            // 
            this.toolStripSeparator3.Name = "toolStripSeparator3";
            this.toolStripSeparator3.Size = new System.Drawing.Size(6, 39);
            // 
            // statusStrip1
            // 
            this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.StatusLabel1});
            this.statusStrip1.Location = new System.Drawing.Point(0, 508);
            this.statusStrip1.Name = "statusStrip1";
            this.statusStrip1.Size = new System.Drawing.Size(845, 22);
            this.statusStrip1.TabIndex = 9;
            this.statusStrip1.Text = "statusStrip1";
            // 
            // StatusLabel1
            // 
            this.StatusLabel1.Name = "StatusLabel1";
            this.StatusLabel1.Size = new System.Drawing.Size(12, 17);
            this.StatusLabel1.Text = "-";
            // 
            // radGroupBox1
            // 
            this.radGroupBox1.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox1.Controls.Add(this.radGridView1);
            this.radGroupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.radGroupBox1.GroupBoxStyle = Telerik.WinControls.UI.RadGroupBoxStyle.Office;
            this.radGroupBox1.HeaderText = "بيانات الدفعات";
            this.radGroupBox1.Location = new System.Drawing.Point(0, 39);
            this.radGroupBox1.Name = "radGroupBox1";
            this.radGroupBox1.Size = new System.Drawing.Size(845, 469);
            this.radGroupBox1.TabIndex = 10;
            this.radGroupBox1.Text = "بيانات الدفعات";
            this.radGroupBox1.ThemeName = "TelerikMetro";
            // 
            // FrmMangeAmount
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(845, 530);
            this.Controls.Add(this.radGroupBox1);
            this.Controls.Add(this.statusStrip1);
            this.Controls.Add(this.toolStrip1);
            this.MaximizeBox = false;
            this.MaximumSize = new System.Drawing.Size(853, 565);
            this.MinimumSize = new System.Drawing.Size(853, 565);
            this.Name = "FrmMangeAmount";
            this.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            // 
            // 
            // 
            this.RootElement.ApplyShapeToControl = true;
            this.RootElement.MaxSize = new System.Drawing.Size(853, 565);
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "ادارة المبالغ المستملة من الممولين";
            this.ThemeName = "TelerikMetro";
            this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.FrmMangeAmount_FormClosed);
            this.Load += new System.EventHandler(this.FrmMangeAmount_Load);
            ((System.ComponentModel.ISupportInitialize)(this.radGridView1.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).EndInit();
            this.toolStrip1.ResumeLayout(false);
            this.toolStrip1.PerformLayout();
            this.statusStrip1.ResumeLayout(false);
            this.statusStrip1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).EndInit();
            this.radGroupBox1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this)).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();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn2 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn3 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn4 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn5 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn6 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn7 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn1 = new Telerik.WinControls.UI.GridViewCommandColumn();
            Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn2 = new Telerik.WinControls.UI.GridViewCommandColumn();
            this.PanelPagos = new Telerik.WinControls.UI.RadPanel();
            this.pnlMontoSenia = new System.Windows.Forms.Panel();
            this.TxtMonto = new Framework.WinForm.Controls.CustomControls.DecimalTextBox();
            this.BtnAgregarMontoAuto = new Telerik.WinControls.UI.RadButton();
            this.radLabel4 = new Telerik.WinControls.UI.RadLabel();
            this.TabSeñas = new Telerik.WinControls.UI.RadPageView();
            this.TabSeñasNueva = new Telerik.WinControls.UI.RadPageViewPage();
            this.BtnGuardar = new Telerik.WinControls.UI.RadButton();
            this.UcTotalesSenia = new LaPaz.Win.Forms.Senias.UcTotalesSenia();
            this.TabSeñasHistorial = new Telerik.WinControls.UI.RadPageViewPage();
            this.BtnRefrescar = new Telerik.WinControls.UI.RadButton();
            this.ClientesSeniasPager = new Framework.WinForm.Controls.MetroPager();
            this.GridSeñas = new Telerik.WinControls.UI.RadGridView();
            this.radPanel3 = new Telerik.WinControls.UI.RadPanel();
            this.TxtCreditos = new Telerik.WinControls.UI.RadTextBox();
            this.TxtTelefono = new Telerik.WinControls.UI.RadTextBox();
            this.radTextBox2 = new Telerik.WinControls.UI.RadTextBox();
            this.radLabel5 = new Telerik.WinControls.UI.RadLabel();
            this.LnkEditarCliente = new System.Windows.Forms.LinkLabel();
            this.TxtSenias = new Telerik.WinControls.UI.RadTextBox();
            this.radTextBox6 = new Telerik.WinControls.UI.RadTextBox();
            this.TxtDni = new Telerik.WinControls.UI.RadTextBox();
            this.radTextBox4 = new Telerik.WinControls.UI.RadTextBox();
            this.radLabel3 = new Telerik.WinControls.UI.RadLabel();
            this.radLabel2 = new Telerik.WinControls.UI.RadLabel();
            this.LblCliente = new Telerik.WinControls.UI.RadLabel();
            this.TxtCliente = new Telerik.WinControls.UI.RadTextBox();
            this.radLabel1 = new Telerik.WinControls.UI.RadLabel();
            this.pnlBuscador = new Telerik.WinControls.UI.RadPanel();
            this.radPanel2 = new Telerik.WinControls.UI.RadPanel();
            this.ucBuscadorClienteSimple = new LaPaz.Win.Forms.Senias.UcBuscadorClienteSimple();
            ((System.ComponentModel.ISupportInitialize)(this.PanelPagos)).BeginInit();
            this.PanelPagos.SuspendLayout();
            this.pnlMontoSenia.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.TxtMonto)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.BtnAgregarMontoAuto)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.TabSeñas)).BeginInit();
            this.TabSeñas.SuspendLayout();
            this.TabSeñasNueva.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.BtnGuardar)).BeginInit();
            this.TabSeñasHistorial.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.BtnRefrescar)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.GridSeñas)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.GridSeñas.MasterTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radPanel3)).BeginInit();
            this.radPanel3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.TxtCreditos)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.TxtTelefono)).BeginInit();
            this.TxtTelefono.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radTextBox2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel5)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.TxtSenias)).BeginInit();
            this.TxtSenias.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radTextBox6)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.TxtDni)).BeginInit();
            this.TxtDni.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radTextBox4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.LblCliente)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.TxtCliente)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pnlBuscador)).BeginInit();
            this.pnlBuscador.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radPanel2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            this.SuspendLayout();
            // 
            // PanelPagos
            // 
            this.PanelPagos.Controls.Add(this.pnlMontoSenia);
            this.PanelPagos.Controls.Add(this.TabSeñas);
            this.PanelPagos.Location = new System.Drawing.Point(12, 209);
            this.PanelPagos.Name = "PanelPagos";
            this.PanelPagos.Size = new System.Drawing.Size(1256, 559);
            this.PanelPagos.TabIndex = 5;
            // 
            // pnlMontoSenia
            // 
            this.pnlMontoSenia.Controls.Add(this.TxtMonto);
            this.pnlMontoSenia.Controls.Add(this.BtnAgregarMontoAuto);
            this.pnlMontoSenia.Controls.Add(this.radLabel4);
            this.pnlMontoSenia.Location = new System.Drawing.Point(8, 5);
            this.pnlMontoSenia.Name = "pnlMontoSenia";
            this.pnlMontoSenia.Size = new System.Drawing.Size(425, 49);
            this.pnlMontoSenia.TabIndex = 8;
            // 
            // TxtMonto
            // 
            this.TxtMonto.AceptaNegativos = false;
            this.TxtMonto.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.TxtMonto.Location = new System.Drawing.Point(83, 8);
            this.TxtMonto.Name = "TxtMonto";
            this.TxtMonto.Size = new System.Drawing.Size(128, 30);
            this.TxtMonto.TabIndex = 2;
            this.TxtMonto.TabStop = false;
            this.TxtMonto.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            this.TxtMonto.KeyUp += new System.Windows.Forms.KeyEventHandler(this.TxtMonto_KeyUp);
            // 
            // BtnAgregarMontoAuto
            // 
            this.BtnAgregarMontoAuto.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.BtnAgregarMontoAuto.Location = new System.Drawing.Point(233, 9);
            this.BtnAgregarMontoAuto.Name = "BtnAgregarMontoAuto";
            this.BtnAgregarMontoAuto.Size = new System.Drawing.Size(111, 27);
            this.BtnAgregarMontoAuto.TabIndex = 3;
            this.BtnAgregarMontoAuto.Text = "Aceptar";
            this.BtnAgregarMontoAuto.ThemeName = "TelerikMetroBlue";
            this.BtnAgregarMontoAuto.Click += new System.EventHandler(this.BtnAgregarMontoAuto_Click);
            // 
            // radLabel4
            // 
            this.radLabel4.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.radLabel4.Location = new System.Drawing.Point(3, 8);
            this.radLabel4.Name = "radLabel4";
            this.radLabel4.Size = new System.Drawing.Size(75, 31);
            this.radLabel4.TabIndex = 7;
            this.radLabel4.Text = "Monto:";
            this.radLabel4.ThemeName = "TelerikMetroBlue";
            // 
            // TabSeñas
            // 
            this.TabSeñas.Controls.Add(this.TabSeñasNueva);
            this.TabSeñas.Controls.Add(this.TabSeñasHistorial);
            this.TabSeñas.Location = new System.Drawing.Point(14, 60);
            this.TabSeñas.Name = "TabSeñas";
            this.TabSeñas.SelectedPage = this.TabSeñasHistorial;
            this.TabSeñas.Size = new System.Drawing.Size(1221, 462);
            this.TabSeñas.TabIndex = 0;
            this.TabSeñas.Text = "radPageView1";
            this.TabSeñas.ThemeName = "TelerikMetroBlue";
            this.TabSeñas.SelectedPageChanged += new System.EventHandler(this.TabSeñas_SelectedPageChanged);
            ((Telerik.WinControls.UI.RadPageViewStripElement)(this.TabSeñas.GetChildAt(0))).StripButtons = Telerik.WinControls.UI.StripViewButtons.None;
            // 
            // TabSeñasNueva
            // 
            this.TabSeñasNueva.Controls.Add(this.BtnGuardar);
            this.TabSeñasNueva.Controls.Add(this.UcTotalesSenia);
            this.TabSeñasNueva.Location = new System.Drawing.Point(5, 36);
            this.TabSeñasNueva.Name = "TabSeñasNueva";
            this.TabSeñasNueva.Size = new System.Drawing.Size(1211, 421);
            this.TabSeñasNueva.Text = "Nueva Seña";
            // 
            // BtnGuardar
            // 
            this.BtnGuardar.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.BtnGuardar.Location = new System.Drawing.Point(717, 357);
            this.BtnGuardar.Name = "BtnGuardar";
            this.BtnGuardar.Size = new System.Drawing.Size(103, 29);
            this.BtnGuardar.TabIndex = 4;
            this.BtnGuardar.Text = "Guardar";
            this.BtnGuardar.ThemeName = "TelerikMetroBlue";
            this.BtnGuardar.Click += new System.EventHandler(this.BtnGuardar_Click);
            // 
            // UcTotalesSenia
            // 
            this.UcTotalesSenia.Location = new System.Drawing.Point(3, 12);
            this.UcTotalesSenia.Margin = new System.Windows.Forms.Padding(4);
            this.UcTotalesSenia.Name = "UcTotalesSenia";
            this.UcTotalesSenia.Size = new System.Drawing.Size(944, 338);
            this.UcTotalesSenia.TabIndex = 6;
            this.UcTotalesSenia.TotalPagar = new decimal(new int[] {
            0,
            0,
            0,
            131072});
            // 
            // TabSeñasHistorial
            // 
            this.TabSeñasHistorial.Controls.Add(this.BtnRefrescar);
            this.TabSeñasHistorial.Controls.Add(this.ClientesSeniasPager);
            this.TabSeñasHistorial.Controls.Add(this.GridSeñas);
            this.TabSeñasHistorial.Location = new System.Drawing.Point(5, 36);
            this.TabSeñasHistorial.Name = "TabSeñasHistorial";
            this.TabSeñasHistorial.Size = new System.Drawing.Size(1211, 421);
            this.TabSeñasHistorial.Text = "Historial";
            // 
            // BtnRefrescar
            // 
            this.BtnRefrescar.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.BtnRefrescar.Image = global::LaPaz.Win.Properties.Resources.Reload_16x16;
            this.BtnRefrescar.Location = new System.Drawing.Point(5, 6);
            this.BtnRefrescar.Name = "BtnRefrescar";
            this.BtnRefrescar.Size = new System.Drawing.Size(103, 29);
            this.BtnRefrescar.TabIndex = 5;
            this.BtnRefrescar.Text = "Refrescar";
            this.BtnRefrescar.ThemeName = "TelerikMetroBlue";
            this.BtnRefrescar.Click += new System.EventHandler(this.BtnRefrescar_Click);
            ((Telerik.WinControls.UI.RadButtonElement)(this.BtnRefrescar.GetChildAt(0))).Image = global::LaPaz.Win.Properties.Resources.Reload_16x16;
            ((Telerik.WinControls.UI.RadButtonElement)(this.BtnRefrescar.GetChildAt(0))).Text = "Refrescar";
            ((Telerik.WinControls.Layouts.ImageAndTextLayoutPanel)(this.BtnRefrescar.GetChildAt(0).GetChildAt(1))).Margin = new System.Windows.Forms.Padding(5, 0, 0, 0);
            ((Telerik.WinControls.Primitives.ImagePrimitive)(this.BtnRefrescar.GetChildAt(0).GetChildAt(1).GetChildAt(0))).Margin = new System.Windows.Forms.Padding(0);
            ((Telerik.WinControls.Primitives.TextPrimitive)(this.BtnRefrescar.GetChildAt(0).GetChildAt(1).GetChildAt(1))).Padding = new System.Windows.Forms.Padding(0);
            ((Telerik.WinControls.Primitives.TextPrimitive)(this.BtnRefrescar.GetChildAt(0).GetChildAt(1).GetChildAt(1))).Margin = new System.Windows.Forms.Padding(20, 0, 0, 0);
            ((Telerik.WinControls.Primitives.TextPrimitive)(this.BtnRefrescar.GetChildAt(0).GetChildAt(1).GetChildAt(1))).Alignment = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // ClientesSeniasPager
            // 
            this.ClientesSeniasPager.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.ClientesSeniasPager.CurrentPage = 1;
            this.ClientesSeniasPager.Location = new System.Drawing.Point(669, -3);
            this.ClientesSeniasPager.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
            this.ClientesSeniasPager.Name = "ClientesSeniasPager";
            this.ClientesSeniasPager.PageSize = 50;
            this.ClientesSeniasPager.PageTotal = 1;
            this.ClientesSeniasPager.RefreshAction = null;
            this.ClientesSeniasPager.RefreshActionAsync = null;
            this.ClientesSeniasPager.Size = new System.Drawing.Size(539, 67);
            this.ClientesSeniasPager.TabIndex = 12;
            // 
            // GridSeñas
            // 
            this.GridSeñas.Location = new System.Drawing.Point(5, 71);
            // 
            // GridSeñas
            // 
            this.GridSeñas.MasterTemplate.AllowAddNewRow = false;
            this.GridSeñas.MasterTemplate.AllowColumnReorder = false;
            this.GridSeñas.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
            gridViewTextBoxColumn1.FieldName = "FechaAlta";
            gridViewTextBoxColumn1.FormatString = "";
            gridViewTextBoxColumn1.HeaderText = "Fecha";
            gridViewTextBoxColumn1.MaxWidth = 100;
            gridViewTextBoxColumn1.Name = "Fecha";
            gridViewTextBoxColumn1.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            gridViewTextBoxColumn1.Width = 100;
            gridViewTextBoxColumn2.FieldName = "Concepto";
            gridViewTextBoxColumn2.HeaderText = "Concepto";
            gridViewTextBoxColumn2.Name = "Concepto";
            gridViewTextBoxColumn2.Width = 309;
            gridViewTextBoxColumn3.FieldName = "Importe";
            gridViewTextBoxColumn3.FormatString = "";
            gridViewTextBoxColumn3.HeaderText = "Importe";
            gridViewTextBoxColumn3.MaxWidth = 100;
            gridViewTextBoxColumn3.Name = "Importe";
            gridViewTextBoxColumn3.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
            gridViewTextBoxColumn3.Width = 100;
            gridViewTextBoxColumn4.FieldName = "ImpOcupado";
            gridViewTextBoxColumn4.FormatString = "";
            gridViewTextBoxColumn4.HeaderText = "Utilizado";
            gridViewTextBoxColumn4.MaxWidth = 100;
            gridViewTextBoxColumn4.Name = "Utilizado";
            gridViewTextBoxColumn4.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
            gridViewTextBoxColumn4.Width = 100;
            gridViewTextBoxColumn5.Expression = "Importe - Utilizado ";
            gridViewTextBoxColumn5.HeaderText = "Disponible";
            gridViewTextBoxColumn5.Name = "Disponible";
            gridViewTextBoxColumn5.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
            gridViewTextBoxColumn5.Width = 173;
            gridViewTextBoxColumn6.FieldName = "FechaAnulacion";
            gridViewTextBoxColumn6.HeaderText = "Fecha Anulacion";
            gridViewTextBoxColumn6.MaxWidth = 120;
            gridViewTextBoxColumn6.Name = "FechaAnulacion";
            gridViewTextBoxColumn6.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            gridViewTextBoxColumn6.Width = 120;
            gridViewTextBoxColumn7.FieldName = "FechaModificacion";
            gridViewTextBoxColumn7.HeaderText = "Fecha uso";
            gridViewTextBoxColumn7.Name = "FechaModificacion";
            gridViewTextBoxColumn7.Width = 196;
            gridViewCommandColumn1.HeaderText = "";
            gridViewCommandColumn1.Image = global::LaPaz.Win.Properties.Resources.Garbage_Closed;
            gridViewCommandColumn1.MaxWidth = 30;
            gridViewCommandColumn1.MinWidth = 30;
            gridViewCommandColumn1.Name = "Eliminar";
            gridViewCommandColumn1.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            gridViewCommandColumn1.Width = 30;
            gridViewCommandColumn2.HeaderText = "";
            gridViewCommandColumn2.Image = global::LaPaz.Win.Properties.Resources.Print_16x16;
            gridViewCommandColumn2.MaxWidth = 30;
            gridViewCommandColumn2.MinWidth = 30;
            gridViewCommandColumn2.Name = "Imprimir";
            gridViewCommandColumn2.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            gridViewCommandColumn2.Width = 30;
            this.GridSeñas.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn1,
            gridViewTextBoxColumn2,
            gridViewTextBoxColumn3,
            gridViewTextBoxColumn4,
            gridViewTextBoxColumn5,
            gridViewTextBoxColumn6,
            gridViewTextBoxColumn7,
            gridViewCommandColumn1,
            gridViewCommandColumn2});
            this.GridSeñas.MasterTemplate.EnableGrouping = false;
            this.GridSeñas.Name = "GridSeñas";
            this.GridSeñas.ReadOnly = true;
            this.GridSeñas.Size = new System.Drawing.Size(1172, 330);
            this.GridSeñas.TabIndex = 0;
            this.GridSeñas.ThemeName = "TelerikMetroBlue";
            this.GridSeñas.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.GridSeñas_CommandCellClick);
            // 
            // radPanel3
            // 
            this.radPanel3.Controls.Add(this.TxtCreditos);
            this.radPanel3.Controls.Add(this.TxtTelefono);
            this.radPanel3.Controls.Add(this.radLabel5);
            this.radPanel3.Controls.Add(this.LnkEditarCliente);
            this.radPanel3.Controls.Add(this.TxtSenias);
            this.radPanel3.Controls.Add(this.TxtDni);
            this.radPanel3.Controls.Add(this.radLabel3);
            this.radPanel3.Controls.Add(this.radLabel2);
            this.radPanel3.Controls.Add(this.LblCliente);
            this.radPanel3.Controls.Add(this.TxtCliente);
            this.radPanel3.Controls.Add(this.radLabel1);
            this.radPanel3.Location = new System.Drawing.Point(12, 73);
            this.radPanel3.Name = "radPanel3";
            this.radPanel3.Size = new System.Drawing.Size(1256, 135);
            this.radPanel3.TabIndex = 4;
            // 
            // TxtCreditos
            // 
            this.TxtCreditos.Enabled = false;
            this.TxtCreditos.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.TxtCreditos.Location = new System.Drawing.Point(736, 45);
            this.TxtCreditos.Name = "TxtCreditos";
            this.TxtCreditos.Size = new System.Drawing.Size(184, 31);
            this.TxtCreditos.TabIndex = 8;
            this.TxtCreditos.TabStop = false;
            this.TxtCreditos.ThemeName = "TelerikMetroBlue";
            // 
            // TxtTelefono
            // 
            this.TxtTelefono.Controls.Add(this.radTextBox2);
            this.TxtTelefono.Enabled = false;
            this.TxtTelefono.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.TxtTelefono.Location = new System.Drawing.Point(222, 78);
            this.TxtTelefono.Name = "TxtTelefono";
            this.TxtTelefono.Size = new System.Drawing.Size(351, 31);
            this.TxtTelefono.TabIndex = 13;
            this.TxtTelefono.TabStop = false;
            this.TxtTelefono.ThemeName = "TelerikMetroBlue";
            // 
            // radTextBox2
            // 
            this.radTextBox2.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.radTextBox2.Location = new System.Drawing.Point(107, 29);
            this.radTextBox2.Name = "radTextBox2";
            this.radTextBox2.Size = new System.Drawing.Size(295, 31);
            this.radTextBox2.TabIndex = 9;
            this.radTextBox2.TabStop = false;
            this.radTextBox2.ThemeName = "TelerikMetroBlue";
            // 
            // radLabel5
            // 
            this.radLabel5.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.radLabel5.Location = new System.Drawing.Point(8, 71);
            this.radLabel5.Name = "radLabel5";
            this.radLabel5.Size = new System.Drawing.Size(88, 29);
            this.radLabel5.TabIndex = 12;
            this.radLabel5.Text = "Teléfono:";
            this.radLabel5.ThemeName = "TelerikMetroBlue";
            // 
            // LnkEditarCliente
            // 
            this.LnkEditarCliente.Enabled = false;
            this.LnkEditarCliente.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.LnkEditarCliente.LinkColor = System.Drawing.Color.DodgerBlue;
            this.LnkEditarCliente.Location = new System.Drawing.Point(741, 79);
            this.LnkEditarCliente.Name = "LnkEditarCliente";
            this.LnkEditarCliente.Size = new System.Drawing.Size(163, 23);
            this.LnkEditarCliente.TabIndex = 11;
            this.LnkEditarCliente.TabStop = true;
            this.LnkEditarCliente.Text = "Editar Cliente";
            this.LnkEditarCliente.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.LnkEditarCliente_LinkClicked);
            // 
            // TxtSenias
            // 
            this.TxtSenias.Controls.Add(this.radTextBox6);
            this.TxtSenias.Enabled = false;
            this.TxtSenias.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.TxtSenias.Location = new System.Drawing.Point(736, 8);
            this.TxtSenias.Name = "TxtSenias";
            this.TxtSenias.Size = new System.Drawing.Size(184, 31);
            this.TxtSenias.TabIndex = 10;
            this.TxtSenias.TabStop = false;
            this.TxtSenias.ThemeName = "TelerikMetroBlue";
            // 
            // radTextBox6
            // 
            this.radTextBox6.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.radTextBox6.Location = new System.Drawing.Point(107, 29);
            this.radTextBox6.Name = "radTextBox6";
            this.radTextBox6.Size = new System.Drawing.Size(295, 31);
            this.radTextBox6.TabIndex = 9;
            this.radTextBox6.TabStop = false;
            this.radTextBox6.ThemeName = "TelerikMetroBlue";
            // 
            // TxtDni
            // 
            this.TxtDni.Controls.Add(this.radTextBox4);
            this.TxtDni.Enabled = false;
            this.TxtDni.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.TxtDni.Location = new System.Drawing.Point(222, 41);
            this.TxtDni.Name = "TxtDni";
            this.TxtDni.Size = new System.Drawing.Size(351, 31);
            this.TxtDni.TabIndex = 5;
            this.TxtDni.TabStop = false;
            this.TxtDni.ThemeName = "TelerikMetroBlue";
            // 
            // radTextBox4
            // 
            this.radTextBox4.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.radTextBox4.Location = new System.Drawing.Point(107, 29);
            this.radTextBox4.Name = "radTextBox4";
            this.radTextBox4.Size = new System.Drawing.Size(295, 31);
            this.radTextBox4.TabIndex = 9;
            this.radTextBox4.TabStop = false;
            this.radTextBox4.ThemeName = "TelerikMetroBlue";
            // 
            // radLabel3
            // 
            this.radLabel3.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.radLabel3.Location = new System.Drawing.Point(579, 37);
            this.radLabel3.Name = "radLabel3";
            this.radLabel3.Size = new System.Drawing.Size(151, 29);
            this.radLabel3.TabIndex = 7;
            this.radLabel3.Text = "Creditos a Favor:";
            this.radLabel3.ThemeName = "TelerikMetroBlue";
            // 
            // radLabel2
            // 
            this.radLabel2.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.radLabel2.Location = new System.Drawing.Point(579, 6);
            this.radLabel2.Name = "radLabel2";
            this.radLabel2.Size = new System.Drawing.Size(62, 29);
            this.radLabel2.TabIndex = 6;
            this.radLabel2.Text = "Señas:";
            this.radLabel2.ThemeName = "TelerikMetroBlue";
            // 
            // LblCliente
            // 
            this.LblCliente.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.LblCliente.Location = new System.Drawing.Point(8, 6);
            this.LblCliente.Name = "LblCliente";
            this.LblCliente.Size = new System.Drawing.Size(174, 29);
            this.LblCliente.TabIndex = 2;
            this.LblCliente.Text = "Nombre y Apellido:";
            this.LblCliente.ThemeName = "TelerikMetroBlue";
            // 
            // TxtCliente
            // 
            this.TxtCliente.Enabled = false;
            this.TxtCliente.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.TxtCliente.Location = new System.Drawing.Point(222, 4);
            this.TxtCliente.Name = "TxtCliente";
            this.TxtCliente.Size = new System.Drawing.Size(351, 31);
            this.TxtCliente.TabIndex = 3;
            this.TxtCliente.TabStop = false;
            this.TxtCliente.ThemeName = "TelerikMetroBlue";
            // 
            // radLabel1
            // 
            this.radLabel1.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.radLabel1.Location = new System.Drawing.Point(8, 37);
            this.radLabel1.Name = "radLabel1";
            this.radLabel1.Size = new System.Drawing.Size(46, 29);
            this.radLabel1.TabIndex = 4;
            this.radLabel1.Text = "DNI:";
            this.radLabel1.ThemeName = "TelerikMetroBlue";
            // 
            // pnlBuscador
            // 
            this.pnlBuscador.Controls.Add(this.radPanel2);
            this.pnlBuscador.Controls.Add(this.ucBuscadorClienteSimple);
            this.pnlBuscador.Location = new System.Drawing.Point(12, 12);
            this.pnlBuscador.Name = "pnlBuscador";
            this.pnlBuscador.Size = new System.Drawing.Size(1256, 60);
            this.pnlBuscador.TabIndex = 3;
            // 
            // radPanel2
            // 
            this.radPanel2.Location = new System.Drawing.Point(0, 144);
            this.radPanel2.Name = "radPanel2";
            this.radPanel2.Size = new System.Drawing.Size(704, 96);
            this.radPanel2.TabIndex = 4;
            this.radPanel2.Text = "radPanel2";
            // 
            // ucBuscadorClienteSimple
            // 
            this.ucBuscadorClienteSimple.Cuit = "";
            this.ucBuscadorClienteSimple.Location = new System.Drawing.Point(8, 3);
            this.ucBuscadorClienteSimple.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
            this.ucBuscadorClienteSimple.Name = "ucBuscadorClienteSimple";
            this.ucBuscadorClienteSimple.Size = new System.Drawing.Size(633, 51);
            this.ucBuscadorClienteSimple.TabIndex = 1;
            // 
            // FrmCrearSenia
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1375, 1092);
            this.Controls.Add(this.PanelPagos);
            this.Controls.Add(this.radPanel3);
            this.Controls.Add(this.pnlBuscador);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
            this.Margin = new System.Windows.Forms.Padding(4);
            this.Name = "FrmCrearSenia";
            // 
            // 
            // 
            this.RootElement.ApplyShapeToControl = true;
            this.Text = "Señas a Clientes";
            this.Load += new System.EventHandler(this.FrmCrearSenas_Load);
            ((System.ComponentModel.ISupportInitialize)(this.PanelPagos)).EndInit();
            this.PanelPagos.ResumeLayout(false);
            this.pnlMontoSenia.ResumeLayout(false);
            this.pnlMontoSenia.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.TxtMonto)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.BtnAgregarMontoAuto)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.TabSeñas)).EndInit();
            this.TabSeñas.ResumeLayout(false);
            this.TabSeñasNueva.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.BtnGuardar)).EndInit();
            this.TabSeñasHistorial.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.BtnRefrescar)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.GridSeñas.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.GridSeñas)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radPanel3)).EndInit();
            this.radPanel3.ResumeLayout(false);
            this.radPanel3.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.TxtCreditos)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.TxtTelefono)).EndInit();
            this.TxtTelefono.ResumeLayout(false);
            this.TxtTelefono.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radTextBox2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel5)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.TxtSenias)).EndInit();
            this.TxtSenias.ResumeLayout(false);
            this.TxtSenias.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radTextBox6)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.TxtDni)).EndInit();
            this.TxtDni.ResumeLayout(false);
            this.TxtDni.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radTextBox4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.LblCliente)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.TxtCliente)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pnlBuscador)).EndInit();
            this.pnlBuscador.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radPanel2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this)).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()
        {
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn2 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn3 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn4 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn1 = new Telerik.WinControls.UI.GridViewCommandColumn();
            this.GrillaSeleccionarCliente = new Telerik.WinControls.UI.RadGridView();
            ((System.ComponentModel.ISupportInitialize)(this.GrillaSeleccionarCliente)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.GrillaSeleccionarCliente.MasterTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            this.SuspendLayout();
            // 
            // GrillaSeleccionarCliente
            // 
            this.GrillaSeleccionarCliente.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.GrillaSeleccionarCliente.Font = new System.Drawing.Font("Segoe UI", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
            this.GrillaSeleccionarCliente.Location = new System.Drawing.Point(12, 12);
            // 
            // GrillaSeleccionarCliente
            // 
            this.GrillaSeleccionarCliente.MasterTemplate.AllowAddNewRow = false;
            this.GrillaSeleccionarCliente.MasterTemplate.AllowColumnReorder = false;
            this.GrillaSeleccionarCliente.MasterTemplate.AllowColumnResize = false;
            this.GrillaSeleccionarCliente.MasterTemplate.AllowDeleteRow = false;
            this.GrillaSeleccionarCliente.MasterTemplate.AllowDragToGroup = false;
            this.GrillaSeleccionarCliente.MasterTemplate.AllowEditRow = false;
            this.GrillaSeleccionarCliente.MasterTemplate.AllowRowResize = false;
            this.GrillaSeleccionarCliente.MasterTemplate.AutoGenerateColumns = false;
            this.GrillaSeleccionarCliente.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
            gridViewTextBoxColumn1.FieldName = "FechaComprobante";
            gridViewTextBoxColumn1.FormatString = "{0:dd/MM/yyyy}";
            gridViewTextBoxColumn1.HeaderText = "Fecha Comprobante ";
            gridViewTextBoxColumn1.MaxWidth = 137;
            gridViewTextBoxColumn1.MinWidth = 137;
            gridViewTextBoxColumn1.Name = "FechaComprobante ";
            gridViewTextBoxColumn1.ReadOnly = true;
            gridViewTextBoxColumn1.Width = 137;
            gridViewTextBoxColumn2.FieldName = "NumeroComprobante";
            gridViewTextBoxColumn2.HeaderText = "Nro";
            gridViewTextBoxColumn2.Name = "Nro";
            gridViewTextBoxColumn2.Width = 44;
            gridViewTextBoxColumn3.FieldName = "Concepto";
            gridViewTextBoxColumn3.HeaderText = "Concepto";
            gridViewTextBoxColumn3.MaxWidth = 250;
            gridViewTextBoxColumn3.MinWidth = 170;
            gridViewTextBoxColumn3.Name = "Concepto";
            gridViewTextBoxColumn3.ReadOnly = true;
            gridViewTextBoxColumn3.Width = 221;
            gridViewTextBoxColumn4.FieldName = "ImporteNeto";
            gridViewTextBoxColumn4.FormatString = "{0:N2}";
            gridViewTextBoxColumn4.HeaderText = "Importe Neto";
            gridViewTextBoxColumn4.MaxWidth = 96;
            gridViewTextBoxColumn4.MinWidth = 96;
            gridViewTextBoxColumn4.Name = "ImporteNeto";
            gridViewTextBoxColumn4.Width = 96;
            gridViewCommandColumn1.DefaultText = "Seleccionar";
            gridViewCommandColumn1.FieldName = "Seleccionar";
            gridViewCommandColumn1.FormatInfo = new System.Globalization.CultureInfo("");
            gridViewCommandColumn1.HeaderText = "";
            gridViewCommandColumn1.MinWidth = 100;
            gridViewCommandColumn1.Name = "Seleccionar";
            gridViewCommandColumn1.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            gridViewCommandColumn1.TextImageRelation = System.Windows.Forms.TextImageRelation.TextBeforeImage;
            gridViewCommandColumn1.UseDefaultText = true;
            gridViewCommandColumn1.Width = 104;
            this.GrillaSeleccionarCliente.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn1,
            gridViewTextBoxColumn2,
            gridViewTextBoxColumn3,
            gridViewTextBoxColumn4,
            gridViewCommandColumn1});
            this.GrillaSeleccionarCliente.MasterTemplate.EnableGrouping = false;
            this.GrillaSeleccionarCliente.Name = "GrillaSeleccionarCliente";
            this.GrillaSeleccionarCliente.ReadOnly = true;
            this.GrillaSeleccionarCliente.Size = new System.Drawing.Size(620, 231);
            this.GrillaSeleccionarCliente.TabIndex = 41;
            this.GrillaSeleccionarCliente.ThemeName = "TelerikMetroBlue";
            this.GrillaSeleccionarCliente.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.GrillaSeleccionarCliente_CommandCellClick);
            this.GrillaSeleccionarCliente.KeyUp += new System.Windows.Forms.KeyEventHandler(this.GrillaSeleccionarCliente_KeyUp);
            // 
            // FrmSeleccionarConsignacion
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(644, 255);
            this.Controls.Add(this.GrillaSeleccionarCliente);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "FrmSeleccionarConsignacion";
            // 
            // 
            // 
            this.RootElement.ApplyShapeToControl = true;
            this.Text = "Seleccionar Consignación";
            this.Load += new System.EventHandler(this.FrmSeleccionarConsignacion_Load);
            ((System.ComponentModel.ISupportInitialize)(this.GrillaSeleccionarCliente.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.GrillaSeleccionarCliente)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this)).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(FrmCreateMeasureWizard));
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn1  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn2  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn3  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewCommandColumn   gridViewCommandColumn1  = new Telerik.WinControls.UI.GridViewCommandColumn();
     Telerik.WinControls.UI.TableViewDefinition     tableViewDefinition1    = new Telerik.WinControls.UI.TableViewDefinition();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn4  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn5  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewDateTimeColumn  gridViewDateTimeColumn1 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
     Telerik.WinControls.UI.GridViewDecimalColumn   gridViewDecimalColumn1  = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.TableViewDefinition     tableViewDefinition2    = new Telerik.WinControls.UI.TableViewDefinition();
     this.createMeasureWizard   = new Telerik.WinControls.UI.RadWizard();
     this.wizardCompletionPage1 = new Telerik.WinControls.UI.WizardCompletionPage();
     this.panel3      = new System.Windows.Forms.Panel();
     this.panel2      = new System.Windows.Forms.Panel();
     this.gvBatches   = new Telerik.WinControls.UI.RadGridView();
     this.panel1      = new System.Windows.Forms.Panel();
     this.gvMeasures  = new Telerik.WinControls.UI.RadGridView();
     this.wizardPage1 = new Telerik.WinControls.UI.WizardPage();
     this.wizardPage2 = new Telerik.WinControls.UI.WizardPage();
     ((System.ComponentModel.ISupportInitialize)(this.createMeasureWizard)).BeginInit();
     this.createMeasureWizard.SuspendLayout();
     this.panel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gvBatches)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvBatches.MasterTemplate)).BeginInit();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gvMeasures)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvMeasures.MasterTemplate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // createMeasureWizard
     //
     this.createMeasureWizard.CompletionPage = this.wizardCompletionPage1;
     this.createMeasureWizard.Controls.Add(this.panel2);
     this.createMeasureWizard.Controls.Add(this.panel3);
     this.createMeasureWizard.Controls.Add(this.panel1);
     this.createMeasureWizard.Dock           = System.Windows.Forms.DockStyle.Fill;
     this.createMeasureWizard.Location       = new System.Drawing.Point(0, 0);
     this.createMeasureWizard.Name           = "createMeasureWizard";
     this.createMeasureWizard.PageHeaderIcon = ((System.Drawing.Image)(resources.GetObject("createMeasureWizard.PageHeaderIcon")));
     this.createMeasureWizard.Pages.Add(this.wizardPage1);
     this.createMeasureWizard.Pages.Add(this.wizardPage2);
     this.createMeasureWizard.Pages.Add(this.wizardCompletionPage1);
     this.createMeasureWizard.Size                 = new System.Drawing.Size(827, 547);
     this.createMeasureWizard.TabIndex             = 0;
     this.createMeasureWizard.WelcomePage          = null;
     this.createMeasureWizard.SelectedPageChanged += new Telerik.WinControls.UI.SelectedPageChangedEventHandler(this.createMeasureWizard_SelectedPageChanged);
     //
     // wizardCompletionPage1
     //
     this.wizardCompletionPage1.ContentArea = this.panel3;
     this.wizardCompletionPage1.Header      = "";
     this.wizardCompletionPage1.Name        = "wizardCompletionPage1";
     this.wizardCompletionPage1.Title       = "Resumen";
     //
     // panel3
     //
     this.panel3.BackColor = System.Drawing.Color.White;
     this.panel3.Location  = new System.Drawing.Point(150, 56);
     this.panel3.Name      = "panel3";
     this.panel3.Size      = new System.Drawing.Size(677, 443);
     this.panel3.TabIndex  = 2;
     //
     // panel2
     //
     this.panel2.BackColor = System.Drawing.Color.White;
     this.panel2.Controls.Add(this.gvBatches);
     this.panel2.Location = new System.Drawing.Point(0, 64);
     this.panel2.Name     = "panel2";
     this.panel2.Size     = new System.Drawing.Size(827, 435);
     this.panel2.TabIndex = 1;
     //
     // gvBatches
     //
     this.gvBatches.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.gvBatches.Location = new System.Drawing.Point(0, 0);
     //
     //
     //
     this.gvBatches.MasterTemplate.AllowAddNewRow      = false;
     this.gvBatches.MasterTemplate.AllowDeleteRow      = false;
     this.gvBatches.MasterTemplate.AllowDragToGroup    = false;
     this.gvBatches.MasterTemplate.AllowEditRow        = false;
     this.gvBatches.MasterTemplate.AutoGenerateColumns = false;
     this.gvBatches.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     gridViewTextBoxColumn1.FieldName  = "Number";
     gridViewTextBoxColumn1.HeaderText = "Número";
     gridViewTextBoxColumn1.Name       = "Number";
     gridViewTextBoxColumn1.Width      = 202;
     gridViewTextBoxColumn2.FieldName  = "GeneticLineName";
     gridViewTextBoxColumn2.HeaderText = "Linea Genética";
     gridViewTextBoxColumn2.Name       = "GeneticLineName";
     gridViewTextBoxColumn2.Width      = 202;
     gridViewTextBoxColumn3.FieldName  = "StageName";
     gridViewTextBoxColumn3.HeaderText = "Estado";
     gridViewTextBoxColumn3.Name       = "StageName";
     gridViewTextBoxColumn3.Width      = 202;
     gridViewCommandColumn1.HeaderText = "";
     gridViewCommandColumn1.Name       = "SelectColumn";
     gridViewCommandColumn1.Width      = 204;
     this.gvBatches.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewTextBoxColumn1,
         gridViewTextBoxColumn2,
         gridViewTextBoxColumn3,
         gridViewCommandColumn1
     });
     this.gvBatches.MasterTemplate.ViewDefinition = tableViewDefinition1;
     this.gvBatches.Name              = "gvBatches";
     this.gvBatches.Size              = new System.Drawing.Size(827, 435);
     this.gvBatches.TabIndex          = 0;
     this.gvBatches.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.gvBatches_CommandCellClick);
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.White;
     this.panel1.Controls.Add(this.gvMeasures);
     this.panel1.Location = new System.Drawing.Point(0, 81);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(827, 418);
     this.panel1.TabIndex = 3;
     //
     // gvMeasures
     //
     this.gvMeasures.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.gvMeasures.Location = new System.Drawing.Point(0, 0);
     //
     //
     //
     this.gvMeasures.MasterTemplate.AllowAddNewRow      = false;
     this.gvMeasures.MasterTemplate.AllowColumnReorder  = false;
     this.gvMeasures.MasterTemplate.AllowDeleteRow      = false;
     this.gvMeasures.MasterTemplate.AllowDragToGroup    = false;
     this.gvMeasures.MasterTemplate.AllowEditRow        = false;
     this.gvMeasures.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     gridViewTextBoxColumn4.FieldName   = "Name";
     gridViewTextBoxColumn4.HeaderText  = "Nombre";
     gridViewTextBoxColumn4.Name        = "Name";
     gridViewTextBoxColumn4.Width       = 466;
     gridViewTextBoxColumn5.FieldName   = "MeasureUnit";
     gridViewTextBoxColumn5.HeaderText  = "Unidad de Medida";
     gridViewTextBoxColumn5.Name        = "MeasureUnit";
     gridViewTextBoxColumn5.Width       = 139;
     gridViewDateTimeColumn1.FieldName  = "CreatedDate ";
     gridViewDateTimeColumn1.HeaderText = "Fecha";
     gridViewDateTimeColumn1.Name       = "CreatedDate ";
     gridViewDateTimeColumn1.Width      = 103;
     gridViewDecimalColumn1.FieldName   = "Value ";
     gridViewDecimalColumn1.HeaderText  = "Valor";
     gridViewDecimalColumn1.Name        = "Value";
     gridViewDecimalColumn1.Width       = 102;
     this.gvMeasures.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewTextBoxColumn4,
         gridViewTextBoxColumn5,
         gridViewDateTimeColumn1,
         gridViewDecimalColumn1
     });
     this.gvMeasures.MasterTemplate.ViewDefinition = tableViewDefinition2;
     this.gvMeasures.Name     = "gvMeasures";
     this.gvMeasures.Size     = new System.Drawing.Size(827, 418);
     this.gvMeasures.TabIndex = 4;
     //
     // wizardPage1
     //
     this.wizardPage1.ContentArea = this.panel2;
     this.wizardPage1.Header      = "";
     this.wizardPage1.Name        = "wizardPage1";
     this.wizardPage1.Title       = "Seleccionar Lote";
     //
     // wizardPage2
     //
     this.wizardPage2.ContentArea = this.panel1;
     this.wizardPage2.Header      = "Estandares";
     this.wizardPage2.Name        = "wizardPage2";
     this.wizardPage2.Title       = "Ingreso de Valores";
     //
     // FrmCreateMeasureWizard
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(827, 547);
     this.Controls.Add(this.createMeasureWizard);
     this.Name = "FrmCreateMeasureWizard";
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.Text  = "Cargar Medidas";
     this.Load += new System.EventHandler(this.FrmCreateMeasureWizard_Load);
     ((System.ComponentModel.ISupportInitialize)(this.createMeasureWizard)).EndInit();
     this.createMeasureWizard.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gvBatches.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvBatches)).EndInit();
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gvMeasures.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvMeasures)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
     this.ResumeLayout(false);
 }