public void createText2(string str, int x, int y)
        {
            var text = new MaterialSkin.Controls.MaterialLabel();

            text.Name     = "t" + x + y;
            text.AutoSize = true;
            text.Text     = str;
            text.Location = new System.Drawing.Point(x, y);

            texts2.Add(text);
        }
Пример #2
0
        /// <summary>
        /// Carga el listado de dictamenes y los muestra
        /// </summary>
        /// <param name="panel">Panel donde se mostraran</param>
        /// <param name="obligaciones">Listado de obligaciones que se mostraran</param>
        /// <param name="iSeparacion">Separación que habra entre cada obligación</param>
        public void cargarISN(Panel panel, List <DetalleObligacion> ISN, int iSeparacion)
        {
            // Crea una lista de obligaciones ISN
            for (int i = 0; i < ISN.Count; i++)
            {
                MaterialSkin.Controls.MaterialLabel lblISN = new MaterialSkin.Controls.MaterialLabel();
                lblISN.Location     = new Point(2, 28 * i + iSeparacion);
                lblISN.Text         = string.Format("{0}. {1}", (i + 1).ToString(), ISN[i].sDetalleObligacion);
                lblISN.Width        = 400;
                lblISN.AutoEllipsis = true;

                DevExpress.XtraEditors.SeparatorControl separador = new DevExpress.XtraEditors.SeparatorControl();
                separador.LineOrientation = Orientation.Horizontal;
                separador.Size            = new Size(590, 18);// 937, 18
                separador.Location        = new Point(365, lblISN.Location.Y + 15);

                panel.Controls.Add(separador);
                panel.Controls.Add(lblISN);
                lblISN.BringToFront();

                int iDistancia = 480;
                if (ISN[i].iR01 != null)
                {
                    LollipopCheckBox chkbR1 = new LollipopCheckBox();
                    chkbR1.Name       = ISN[i].iR01.Value.ToString();
                    chkbR1.Location   = new Point(iDistancia, lblISN.Location.Y);
                    chkbR1.Text       = "";
                    chkbR1.Size       = new Size(20, 20);
                    chkbR1.Cursor     = Cursors.Hand;
                    chkbR1.CheckColor = bExistente ? "#5d4037" : "#558b2f";

                    if (ISN[i].iDefault == 1)
                    {
                        chkbR1.Checked = true;
                    }

                    panel.Controls.Add(chkbR1);
                    chkbR1.BringToFront();
                }
                iDistancia = iDistancia + 50;
                separador.SendToBack();
                panel.AutoScroll = true;
            }
        }
Пример #3
0
 //Método AtualizaCor:
 public void AtualizaCorLabel(//Parametros
     MaterialSkin.Controls.MaterialLabel lblConfiguracao,
     MaterialSkin.Controls.MaterialLabel lblSair)
 {
     if (BLL.TemaAtual == "1")
     {
         lblConfiguracao.ForeColor = System.Drawing.Color.White;
         lblSair.ForeColor         = System.Drawing.Color.White;
     }
     else if (BLL.TemaAtual == "2")
     {
         lblConfiguracao.ForeColor = System.Drawing.Color.Black;
         lblSair.ForeColor         = System.Drawing.Color.Black;
     }
     else if (BLL.TemaAtual == "3")
     {
         lblConfiguracao.ForeColor = System.Drawing.Color.White;
         lblSair.ForeColor         = System.Drawing.Color.White;
     }
 }
        public void ShowPaths()
        {
            flowLayoutPanel2.Controls.Clear();
            string[] PathL = sRutaActual.Split(new[] { txtCliente.Text }, StringSplitOptions.None);

            string[] PathLS = PathL[1].Split('/');

            for (int i = 1; i < PathLS.Length; i++)
            {
                MetroFramework.Controls.MetroLink lnkRuta = new MetroFramework.Controls.MetroLink();
                lnkRuta.AutoSize     = true;
                lnkRuta.AutoSizeMode = AutoSizeMode.GrowOnly;
                lnkRuta.Text         = PathLS[i];
                lnkRuta.FontSize     = MetroFramework.MetroLinkSize.Tall;
                lnkRuta.FontWeight   = MetroFramework.MetroLinkWeight.Regular;
                metroToolTip1.SetToolTip(lnkRuta, PathLS[i]);
                lnkRuta.Click += LnkRuta_Click;
                if (i == PathLS.Length - 2)
                {
                    lnkRuta.Enabled = false;
                }

                MaterialSkin.Controls.MaterialLabel lblSeparator = new MaterialSkin.Controls.MaterialLabel();
                lblSeparator.AutoSize  = false;
                lblSeparator.Size      = new Size(14, 27);
                lblSeparator.TextAlign = ContentAlignment.BottomLeft;
                lblSeparator.Text      = "➤";// "→";



                flowLayoutPanel2.Controls.Add(lnkRuta);
                if (i < (PathLS.Length - 2))
                {
                    flowLayoutPanel2.Controls.Add(lblSeparator);
                }
                else
                {
                    break;
                }
            }
        }
Пример #5
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this._notificationText = new MaterialSkin.Controls.MaterialLabel();
     this.SuspendLayout();
     //
     // _notificationText
     //
     this._notificationText.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._notificationText.Depth      = 0;
     this._notificationText.Font       = new System.Drawing.Font("Roboto", 11F);
     this._notificationText.ForeColor  = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this._notificationText.Location   = new System.Drawing.Point(5, 70);
     this._notificationText.MouseState = MaterialSkin.MouseState.HOVER;
     this._notificationText.Name       = "_notificationText";
     this._notificationText.Size       = new System.Drawing.Size(790, 375);
     this._notificationText.TabIndex   = 0;
     //
     // Notification
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(800, 450);
     this.Controls.Add(this._notificationText);
     this.MaximizeBox      = false;
     this.MinimizeBox      = false;
     this.Name             = "Notification";
     this.Opacity          = 0D;
     this.ShowInTaskbar    = false;
     this.Sizable          = false;
     this.StartPosition    = System.Windows.Forms.FormStartPosition.Manual;
     this.Text             = "Warframe";
     this.TopMost          = true;
     this.FormClosing     += new System.Windows.Forms.FormClosingEventHandler(this.Notification_FormClosing);
     this.FormClosed      += new System.Windows.Forms.FormClosedEventHandler(this.Notification_FormClosed);
     this.LocationChanged += new System.EventHandler(this.Notification_LocationChanged);
     this.ResumeLayout(false);
 }
Пример #6
0
        /// <summary>
        /// Carga el listado de obligaciones y los muestra
        /// </summary>
        /// <param name="panel">Panel donde se mostraran</param>
        /// <param name="obligaciones">Listado de obligaciones que se mostraran</param>
        /// <param name="iSeparacion">Separación que habra entre cada obligación</param>
        public void cargarObligaciones(Panel panel, List <DetalleObligacion> obligaciones, int iSeparacion)
        {
            //CREA UNA LISTA DINAMICA DE OBLIGACIONES
            for (int i = 0; i < obligaciones.Count; i++)
            {
                MaterialSkin.Controls.MaterialLabel lblObligacion = new MaterialSkin.Controls.MaterialLabel();
                lblObligacion.Location     = new Point(2, 28 * i + iSeparacion);
                lblObligacion.Text         = string.Format("{0}. {1}", (i + 1).ToString(), obligaciones[i].sDetalleObligacion);
                lblObligacion.Width        = 400;
                lblObligacion.AutoEllipsis = true;

                DevExpress.XtraEditors.SeparatorControl separador = new DevExpress.XtraEditors.SeparatorControl();
                separador.LineOrientation = Orientation.Horizontal;
                separador.Size            = new Size(590, 18);// 937, 18
                separador.Location        = new Point(365, lblObligacion.Location.Y + 15);

                panel.Controls.Add(separador);
                panel.Controls.Add(lblObligacion);
                lblObligacion.BringToFront();

                int iDistancia = 480; // 600

                if (bExistente)
                {
                    if (obligaciones[i].iR03 != null)
                    {
                        LollipopCheckBox chkbR1 = new LollipopCheckBox();
                        chkbR1.Name       = obligaciones[i].iR03.Value.ToString();
                        chkbR1.Location   = new Point(iDistancia, lblObligacion.Location.Y);
                        chkbR1.Text       = "";
                        chkbR1.Size       = new Size(20, 20);
                        chkbR1.Cursor     = Cursors.Hand;
                        chkbR1.CheckColor = "#5d4037";

                        if (obligaciones[i].iDefault == 1)
                        {
                            chkbR1.Checked = true;
                        }

                        panel.Controls.Add(chkbR1);
                        chkbR1.BringToFront();
                    }
                    iDistancia = iDistancia + 50;//200;
                }

                if (bNuevaEmpresa)
                {
                    if (obligaciones[i].iR04 != null)
                    {
                        LollipopCheckBox chkbR2 = new LollipopCheckBox();
                        chkbR2.Name       = obligaciones[i].iR04.Value.ToString();
                        chkbR2.Location   = new Point(iDistancia, lblObligacion.Location.Y);
                        chkbR2.Text       = "";
                        chkbR2.Size       = new Size(20, 20);
                        chkbR2.Cursor     = Cursors.Hand;
                        chkbR2.CheckColor = "#558b2f";

                        if (obligaciones[i].iDefault == 1)
                        {
                            chkbR2.Checked = true;
                        }

                        panel.Controls.Add(chkbR2);
                        chkbR2.BringToFront();
                    }
                    iDistancia = iDistancia + 50;
                }
                separador.SendToBack();
                panel.AutoScroll = true;
            }
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     MaterialSkin.Controls.MaterialLabel LBNombre;
     this.LBID       = new MaterialSkin.Controls.MaterialLabel();
     this.TxtID      = new MaterialSkin.Controls.MaterialSingleLineTextField();
     this.TxtNombre  = new MaterialSkin.Controls.MaterialSingleLineTextField();
     this.BtGuardar  = new MaterialSkin.Controls.MaterialRaisedButton();
     this.BtCancelar = new MaterialSkin.Controls.MaterialRaisedButton();
     this.BtExaminar = new MaterialSkin.Controls.MaterialRaisedButton();
     this.PBImage    = new System.Windows.Forms.PictureBox();
     LBNombre        = new MaterialSkin.Controls.MaterialLabel();
     ((System.ComponentModel.ISupportInitialize)(this.PBImage)).BeginInit();
     this.SuspendLayout();
     //
     // LBNombre
     //
     LBNombre.AutoSize   = true;
     LBNombre.Depth      = 0;
     LBNombre.Font       = new System.Drawing.Font("Roboto", 11F);
     LBNombre.ForeColor  = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     LBNombre.Location   = new System.Drawing.Point(13, 145);
     LBNombre.MouseState = MaterialSkin.MouseState.HOVER;
     LBNombre.Name       = "LBNombre";
     LBNombre.Size       = new System.Drawing.Size(63, 19);
     LBNombre.TabIndex   = 2;
     LBNombre.Text       = "Nombre";
     //
     // LBID
     //
     this.LBID.AutoSize   = true;
     this.LBID.Depth      = 0;
     this.LBID.Font       = new System.Drawing.Font("Roboto", 11F);
     this.LBID.ForeColor  = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.LBID.Location   = new System.Drawing.Point(13, 70);
     this.LBID.MouseState = MaterialSkin.MouseState.HOVER;
     this.LBID.Name       = "LBID";
     this.LBID.Size       = new System.Drawing.Size(83, 19);
     this.LBID.TabIndex   = 0;
     this.LBID.Text       = "ID Maestro";
     //
     // TxtID
     //
     this.TxtID.Depth                 = 0;
     this.TxtID.Hint                  = "";
     this.TxtID.Location              = new System.Drawing.Point(17, 101);
     this.TxtID.MaxLength             = 32767;
     this.TxtID.MouseState            = MaterialSkin.MouseState.HOVER;
     this.TxtID.Name                  = "TxtID";
     this.TxtID.PasswordChar          = '\0';
     this.TxtID.SelectedText          = "";
     this.TxtID.SelectionLength       = 0;
     this.TxtID.SelectionStart        = 0;
     this.TxtID.Size                  = new System.Drawing.Size(205, 23);
     this.TxtID.TabIndex              = 1;
     this.TxtID.TabStop               = false;
     this.TxtID.UseSystemPasswordChar = false;
     this.TxtID.TextChanged          += new System.EventHandler(this.TextChanged);
     //
     // TxtNombre
     //
     this.TxtNombre.Depth                 = 0;
     this.TxtNombre.Hint                  = "";
     this.TxtNombre.Location              = new System.Drawing.Point(17, 176);
     this.TxtNombre.MaxLength             = 32767;
     this.TxtNombre.MouseState            = MaterialSkin.MouseState.HOVER;
     this.TxtNombre.Name                  = "TxtNombre";
     this.TxtNombre.PasswordChar          = '\0';
     this.TxtNombre.SelectedText          = "";
     this.TxtNombre.SelectionLength       = 0;
     this.TxtNombre.SelectionStart        = 0;
     this.TxtNombre.Size                  = new System.Drawing.Size(205, 23);
     this.TxtNombre.TabIndex              = 3;
     this.TxtNombre.TabStop               = false;
     this.TxtNombre.UseSystemPasswordChar = false;
     this.TxtNombre.KeyPress             += new System.Windows.Forms.KeyPressEventHandler(this.TxtNombre_KeyPress);
     this.TxtNombre.TextChanged          += new System.EventHandler(this.TextChanged);
     //
     // BtGuardar
     //
     this.BtGuardar.AutoSize                = true;
     this.BtGuardar.AutoSizeMode            = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.BtGuardar.Depth                   = 0;
     this.BtGuardar.Icon                    = null;
     this.BtGuardar.Location                = new System.Drawing.Point(12, 214);
     this.BtGuardar.MouseState              = MaterialSkin.MouseState.HOVER;
     this.BtGuardar.Name                    = "BtGuardar";
     this.BtGuardar.Primary                 = true;
     this.BtGuardar.Size                    = new System.Drawing.Size(84, 36);
     this.BtGuardar.TabIndex                = 5;
     this.BtGuardar.Text                    = "Guardar";
     this.BtGuardar.UseVisualStyleBackColor = true;
     this.BtGuardar.Click                  += new System.EventHandler(this.BtGuardar_Click);
     //
     // BtCancelar
     //
     this.BtCancelar.AutoSize                = true;
     this.BtCancelar.AutoSizeMode            = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.BtCancelar.Depth                   = 0;
     this.BtCancelar.Icon                    = null;
     this.BtCancelar.Location                = new System.Drawing.Point(131, 214);
     this.BtCancelar.MouseState              = MaterialSkin.MouseState.HOVER;
     this.BtCancelar.Name                    = "BtCancelar";
     this.BtCancelar.Primary                 = true;
     this.BtCancelar.Size                    = new System.Drawing.Size(91, 36);
     this.BtCancelar.TabIndex                = 6;
     this.BtCancelar.Text                    = "Cancelar";
     this.BtCancelar.UseVisualStyleBackColor = true;
     this.BtCancelar.Click                  += new System.EventHandler(this.BtCancelar_Click);
     //
     // BtExaminar
     //
     this.BtExaminar.AutoSize                = true;
     this.BtExaminar.AutoSizeMode            = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.BtExaminar.Depth                   = 0;
     this.BtExaminar.Icon                    = null;
     this.BtExaminar.Location                = new System.Drawing.Point(388, 201);
     this.BtExaminar.MouseState              = MaterialSkin.MouseState.HOVER;
     this.BtExaminar.Name                    = "BtExaminar";
     this.BtExaminar.Primary                 = true;
     this.BtExaminar.Size                    = new System.Drawing.Size(90, 36);
     this.BtExaminar.TabIndex                = 7;
     this.BtExaminar.Text                    = "Examinar";
     this.BtExaminar.UseVisualStyleBackColor = true;
     this.BtExaminar.Click                  += new System.EventHandler(this.materialRaisedButton1_Click);
     //
     // PBImage
     //
     this.PBImage.BackgroundImage       = global::TecnicasFundamentalesProyectoFinal.Properties.Resources.intec;
     this.PBImage.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.PBImage.BorderStyle           = System.Windows.Forms.BorderStyle.Fixed3D;
     this.PBImage.Image    = global::TecnicasFundamentalesProyectoFinal.Properties.Resources.intec;
     this.PBImage.Location = new System.Drawing.Point(279, 70);
     this.PBImage.Name     = "PBImage";
     this.PBImage.Size     = new System.Drawing.Size(199, 125);
     this.PBImage.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.PBImage.TabIndex = 4;
     this.PBImage.TabStop  = false;
     this.PBImage.Click   += new System.EventHandler(this.pictureBox1_Click);
     //
     // AgregarMaestroForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(490, 293);
     this.Controls.Add(this.BtExaminar);
     this.Controls.Add(this.BtCancelar);
     this.Controls.Add(this.BtGuardar);
     this.Controls.Add(this.PBImage);
     this.Controls.Add(this.TxtNombre);
     this.Controls.Add(LBNombre);
     this.Controls.Add(this.TxtID);
     this.Controls.Add(this.LBID);
     this.Name  = "AgregarMaestroForm";
     this.Text  = "AgregarMateriasForm";
     this.Load += new System.EventHandler(this.AgregarMateriasForm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.PBImage)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Пример #8
0
        /// <summary>
        /// Método que realiza la carga de folios una vez realizada una busqueda, si encuentra folios
        /// abiertos, se muestra una lista de estos.
        /// </summary>
        void CargarFolios()
        {
            Caso caso = new Caso();

            LCaso = caso.LAbiertos(int.Parse(AClienteData.sIdCliente));
            cargarControles();
            // Condición si la lista de casos es diferente de 0
            if (LCaso.Count != 0)
            {
                StopPlayer();
                flpFolios.Controls.Clear();
                //scFoliosAbiertos.Panel1.AutoScroll = true;

                Panel pnlTitulo = new Panel();
                pnlTitulo.Name      = "pnlTitulo";
                pnlTitulo.Height    = 2;
                pnlTitulo.Dock      = DockStyle.Top;
                pnlTitulo.BackColor = Color.FromArgb(174, 213, 129);

                Label lblTitulo = new Label();
                lblTitulo.Text      = "Folios Abiertos";
                lblTitulo.Location  = new Point(scFoliosAbiertos.Panel1.Width / 2 - lblTitulo.Width / 2, 1); //29, 8
                lblTitulo.Font      = new Font("Calibri Light", 12);                                         //122,23
                lblTitulo.Anchor    = AnchorStyles.Top;
                lblTitulo.TextAlign = ContentAlignment.TopLeft;
                lblTitulo.Width     = 122;



                MaterialSkin.Controls.MaterialLabel lblBuscar = new MaterialSkin.Controls.MaterialLabel();
                lblBuscar.Text     = "Buscar";
                lblBuscar.Location = new Point(1, 30);

                MaterialSkin.Controls.MaterialSingleLineTextField txtBusqueda = new MaterialSkin.Controls.MaterialSingleLineTextField();
                txtBusqueda.Name         = "txtBusqueda";
                txtBusqueda.Width        = 125;
                txtBusqueda.Location     = new Point(5, 50);
                txtBusqueda.Hint         = "Tipo de LLamada";
                txtBusqueda.TextChanged += TxtBusqueda_TextChanged;

                if (scFoliosAbiertos.Panel1.Controls.Count <= 1)
                {
                    scFoliosAbiertos.Panel1.Controls.Add(pnlTitulo);
                    scFoliosAbiertos.Panel1.Controls.Add(lblTitulo);
                    scFoliosAbiertos.Panel1.BackColor = Color.FromArgb(236, 240, 241);
                    scFoliosAbiertos.Panel1.Controls.Add(lblBuscar);
                    scFoliosAbiertos.Panel1.Controls.Add(txtBusqueda);
                }

                for (int i = 0; i < LCaso.Count; i++)
                {
                    Button btnFolio = new Button();
                    btnFolio.Name                      = LCaso[i].iIdCaso.ToString();
                    btnFolio.Text                      = "   Folio: " + LCaso[i].iIdCaso.ToString();
                    btnFolio.AccessibleName            = LCaso[i].sMotivo;
                    btnFolio.AccessibleDescription     = LCaso[i].sDescripcion;
                    btnFolio.Font                      = new Font("Segoe UI", 9);
                    btnFolio.ForeColor                 = Color.FromArgb(105, 105, 105);
                    btnFolio.Width                     = scFoliosAbiertos.Panel1.Width - 8; //160//156
                    btnFolio.Height                    = 24;
                    btnFolio.FlatStyle                 = FlatStyle.Flat;
                    btnFolio.FlatAppearance.BorderSize = 0;
                    btnFolio.TextAlign                 = ContentAlignment.MiddleLeft;
                    btnFolio.Cursor                    = Cursors.Hand;
                    btnFolio.Image                     = Properties.Resources.phone_16px1;
                    btnFolio.ImageAlign                = ContentAlignment.MiddleLeft;
                    btnFolio.TextImageRelation         = TextImageRelation.ImageBeforeText;

                    btnFolio.Click += BtnFolio_Click;

                    flpFolios.Controls.Add(btnFolio);
                }
                scFoliosAbiertos.Location = new Point(0, 270);
                scFoliosAbiertos.Visible  = true;
            }
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     MaterialSkin.Controls.MaterialLabel LBNombre;
     this.BtCancelar = new MaterialSkin.Controls.MaterialRaisedButton();
     this.PBImage    = new System.Windows.Forms.PictureBox();
     this.TxtNombre  = new MaterialSkin.Controls.MaterialSingleLineTextField();
     this.TxtID      = new MaterialSkin.Controls.MaterialSingleLineTextField();
     this.LBID       = new MaterialSkin.Controls.MaterialLabel();
     LBNombre        = new MaterialSkin.Controls.MaterialLabel();
     ((System.ComponentModel.ISupportInitialize)(this.PBImage)).BeginInit();
     this.SuspendLayout();
     //
     // BtCancelar
     //
     this.BtCancelar.AutoSize                = true;
     this.BtCancelar.AutoSizeMode            = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.BtCancelar.Depth                   = 0;
     this.BtCancelar.Icon                    = null;
     this.BtCancelar.Location                = new System.Drawing.Point(386, 256);
     this.BtCancelar.MouseState              = MaterialSkin.MouseState.HOVER;
     this.BtCancelar.Name                    = "BtCancelar";
     this.BtCancelar.Primary                 = true;
     this.BtCancelar.Size                    = new System.Drawing.Size(58, 36);
     this.BtCancelar.TabIndex                = 14;
     this.BtCancelar.Text                    = "Salir";
     this.BtCancelar.UseVisualStyleBackColor = true;
     this.BtCancelar.Click                  += new System.EventHandler(this.BtCancelar_Click);
     //
     // PBImage
     //
     this.PBImage.BackgroundImage       = global::TecnicasFundamentalesProyectoFinal.Properties.Resources.intec;
     this.PBImage.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.PBImage.BorderStyle           = System.Windows.Forms.BorderStyle.Fixed3D;
     this.PBImage.Image    = global::TecnicasFundamentalesProyectoFinal.Properties.Resources.intec;
     this.PBImage.Location = new System.Drawing.Point(278, 81);
     this.PBImage.Name     = "PBImage";
     this.PBImage.Size     = new System.Drawing.Size(199, 125);
     this.PBImage.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.PBImage.TabIndex = 12;
     this.PBImage.TabStop  = false;
     //
     // TxtNombre
     //
     this.TxtNombre.Depth                 = 0;
     this.TxtNombre.Enabled               = false;
     this.TxtNombre.Hint                  = "";
     this.TxtNombre.Location              = new System.Drawing.Point(16, 187);
     this.TxtNombre.MaxLength             = 32767;
     this.TxtNombre.MouseState            = MaterialSkin.MouseState.HOVER;
     this.TxtNombre.Name                  = "TxtNombre";
     this.TxtNombre.PasswordChar          = '\0';
     this.TxtNombre.SelectedText          = "";
     this.TxtNombre.SelectionLength       = 0;
     this.TxtNombre.SelectionStart        = 0;
     this.TxtNombre.Size                  = new System.Drawing.Size(205, 23);
     this.TxtNombre.TabIndex              = 11;
     this.TxtNombre.TabStop               = false;
     this.TxtNombre.UseSystemPasswordChar = false;
     //
     // LBNombre
     //
     LBNombre.AutoSize   = true;
     LBNombre.Depth      = 0;
     LBNombre.Font       = new System.Drawing.Font("Roboto", 11F);
     LBNombre.ForeColor  = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     LBNombre.Location   = new System.Drawing.Point(12, 156);
     LBNombre.MouseState = MaterialSkin.MouseState.HOVER;
     LBNombre.Name       = "LBNombre";
     LBNombre.Size       = new System.Drawing.Size(63, 19);
     LBNombre.TabIndex   = 10;
     LBNombre.Text       = "Nombre";
     //
     // TxtID
     //
     this.TxtID.Depth                 = 0;
     this.TxtID.Enabled               = false;
     this.TxtID.Hint                  = "";
     this.TxtID.Location              = new System.Drawing.Point(16, 112);
     this.TxtID.MaxLength             = 32767;
     this.TxtID.MouseState            = MaterialSkin.MouseState.HOVER;
     this.TxtID.Name                  = "TxtID";
     this.TxtID.PasswordChar          = '\0';
     this.TxtID.SelectedText          = "";
     this.TxtID.SelectionLength       = 0;
     this.TxtID.SelectionStart        = 0;
     this.TxtID.Size                  = new System.Drawing.Size(205, 23);
     this.TxtID.TabIndex              = 9;
     this.TxtID.TabStop               = false;
     this.TxtID.UseSystemPasswordChar = false;
     //
     // LBID
     //
     this.LBID.AutoSize   = true;
     this.LBID.Depth      = 0;
     this.LBID.Font       = new System.Drawing.Font("Roboto", 11F);
     this.LBID.ForeColor  = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.LBID.Location   = new System.Drawing.Point(12, 81);
     this.LBID.MouseState = MaterialSkin.MouseState.HOVER;
     this.LBID.Name       = "LBID";
     this.LBID.Size       = new System.Drawing.Size(83, 19);
     this.LBID.TabIndex   = 8;
     this.LBID.Text       = "ID Maestro";
     //
     // VerDetallesMaestro
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(507, 304);
     this.Controls.Add(this.BtCancelar);
     this.Controls.Add(this.PBImage);
     this.Controls.Add(this.TxtNombre);
     this.Controls.Add(LBNombre);
     this.Controls.Add(this.TxtID);
     this.Controls.Add(this.LBID);
     this.Name  = "VerDetallesMaestro";
     this.Text  = "VerDetallesMaestro";
     this.Load += new System.EventHandler(this.VerDetallesMaestro_Load);
     ((System.ComponentModel.ISupportInitialize)(this.PBImage)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Пример #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();
     Microsoft.Reporting.WinForms.ReportDataSource reportDataSource4 = new Microsoft.Reporting.WinForms.ReportDataSource();
     this.DataTable1BindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.DataSet1 = new Maya_KP.DataSet1();
     this.TableBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.panel1 = new System.Windows.Forms.Panel();
     this.mtbMain = new MaterialSkin.Controls.MaterialTabControl();
     this.tabPage1 = new System.Windows.Forms.TabPage();
     this.lbl_pembuat_komitmen = new System.Windows.Forms.Label();
     this.mlvSpd = new MaterialSkin.Controls.MaterialListView();
     this.columnHeader9 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader10 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader4 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader5 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader6 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader7 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.panel3 = new System.Windows.Forms.Panel();
     this.flowLayoutPanel3 = new System.Windows.Forms.FlowLayoutPanel();
     this.txtSearchSpd = new System.Windows.Forms.TextBox();
     this.label2 = new System.Windows.Forms.Label();
     this.flowLayoutPanel4 = new System.Windows.Forms.FlowLayoutPanel();
     this.btnAddSpd = new MaterialSkin.Controls.MaterialRaisedButton();
     this.btnRefSpd = new MaterialSkin.Controls.MaterialRaisedButton();
     this.tabPage2 = new System.Windows.Forms.TabPage();
     this.mlvPegawai = new MaterialSkin.Controls.MaterialListView();
     this.pNo = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.pId = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.pNama = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.pNip = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.pBidang = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.pSeksi = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.pJabatan = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.pPangkat = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.panel2 = new System.Windows.Forms.Panel();
     this.flowLayoutPanel2 = new System.Windows.Forms.FlowLayoutPanel();
     this.txtCariPegawai = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
     this.btnInputPegawai = new MaterialSkin.Controls.MaterialRaisedButton();
     this.btnRef = new MaterialSkin.Controls.MaterialRaisedButton();
     this.tabPage3 = new System.Windows.Forms.TabPage();
     this.lblnips = new System.Windows.Forms.Label();
     this.lblkomitmen = new System.Windows.Forms.Label();
     this.materialLabel1 = new MaterialSkin.Controls.MaterialLabel();
     this.tbnomor = new System.Windows.Forms.TextBox();
     this.nm3 = new System.Windows.Forms.Label();
     this.tgl3 = new System.Windows.Forms.Label();
     this.ket3 = new System.Windows.Forms.Label();
     this.nm2 = new System.Windows.Forms.Label();
     this.tgl2 = new System.Windows.Forms.Label();
     this.ket2 = new System.Windows.Forms.Label();
     this.ket1 = new System.Windows.Forms.Label();
     this.tgl1 = new System.Windows.Forms.Label();
     this.nm1 = new System.Windows.Forms.Label();
     this.reportViewer1 = new Microsoft.Reporting.WinForms.ReportViewer();
     this.tabPage4 = new System.Windows.Forms.TabPage();
     this.materialRaisedButton1 = new MaterialSkin.Controls.MaterialRaisedButton();
     this.Pengeluaran_ = new MaterialSkin.Controls.MaterialListView();
     this.columnHeader8 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader12 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader13 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader14 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader15 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader16 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader17 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader18 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader19 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader20 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.materialTabSelector1 = new MaterialSkin.Controls.MaterialTabSelector();
     this.DataTable1TableAdapter = new Maya_KP.DataSet1TableAdapters.DataTable1TableAdapter();
     this.dataSet11 = new Maya_KP.DataSet1();
     this.dataSet12 = new Maya_KP.DataSet1();
     this.lblnip_komitmen = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.DataTable1BindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DataSet1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TableBindingSource)).BeginInit();
     this.panel1.SuspendLayout();
     this.mtbMain.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.panel3.SuspendLayout();
     this.flowLayoutPanel3.SuspendLayout();
     this.flowLayoutPanel4.SuspendLayout();
     this.tabPage2.SuspendLayout();
     this.panel2.SuspendLayout();
     this.flowLayoutPanel2.SuspendLayout();
     this.flowLayoutPanel1.SuspendLayout();
     this.tabPage3.SuspendLayout();
     this.tabPage4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet12)).BeginInit();
     this.SuspendLayout();
     //
     // DataTable1BindingSource
     //
     this.DataTable1BindingSource.DataMember = "DataTable1";
     this.DataTable1BindingSource.DataSource = this.DataSet1;
     //
     // DataSet1
     //
     this.DataSet1.DataSetName = "DataSet1";
     this.DataSet1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // TableBindingSource
     //
     this.TableBindingSource.DataMember = "Table";
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.SystemColors.Window;
     this.panel1.Controls.Add(this.mtbMain);
     this.panel1.Controls.Add(this.materialTabSelector1);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(0, 63);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(1110, 547);
     this.panel1.TabIndex = 0;
     //
     // mtbMain
     //
     this.mtbMain.Controls.Add(this.tabPage1);
     this.mtbMain.Controls.Add(this.tabPage2);
     this.mtbMain.Controls.Add(this.tabPage3);
     this.mtbMain.Controls.Add(this.tabPage4);
     this.mtbMain.Depth = 0;
     this.mtbMain.Dock = System.Windows.Forms.DockStyle.Fill;
     this.mtbMain.Location = new System.Drawing.Point(0, 45);
     this.mtbMain.MouseState = MaterialSkin.MouseState.HOVER;
     this.mtbMain.Name = "mtbMain";
     this.mtbMain.SelectedIndex = 0;
     this.mtbMain.Size = new System.Drawing.Size(1110, 502);
     this.mtbMain.TabIndex = 1;
     this.mtbMain.SelectedIndexChanged += new System.EventHandler(this.mtbMain_SelectedIndexChanged);
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.lblnip_komitmen);
     this.tabPage1.Controls.Add(this.lbl_pembuat_komitmen);
     this.tabPage1.Controls.Add(this.mlvSpd);
     this.tabPage1.Controls.Add(this.panel3);
     this.tabPage1.Location = new System.Drawing.Point(4, 31);
     this.tabPage1.Name = "tabPage1";
     this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage1.Size = new System.Drawing.Size(1102, 467);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text = "DATA SPD";
     this.tabPage1.UseVisualStyleBackColor = true;
     //
     // lbl_pembuat_komitmen
     //
     this.lbl_pembuat_komitmen.AutoSize = true;
     this.lbl_pembuat_komitmen.Location = new System.Drawing.Point(924, 212);
     this.lbl_pembuat_komitmen.Name = "lbl_pembuat_komitmen";
     this.lbl_pembuat_komitmen.Size = new System.Drawing.Size(92, 24);
     this.lbl_pembuat_komitmen.TabIndex = 9;
     this.lbl_pembuat_komitmen.Text = "komitmen";
     //
     // mlvSpd
     //
     this.mlvSpd.BackgroundImageTiled = true;
     this.mlvSpd.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.mlvSpd.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader9,
     this.columnHeader10,
     this.columnHeader1,
     this.columnHeader2,
     this.columnHeader3,
     this.columnHeader4,
     this.columnHeader5,
     this.columnHeader6,
     this.columnHeader7});
     this.mlvSpd.Depth = 0;
     this.mlvSpd.Dock = System.Windows.Forms.DockStyle.Fill;
     this.mlvSpd.Font = new System.Drawing.Font("Microsoft Sans Serif", 24F);
     this.mlvSpd.FullRowSelect = true;
     this.mlvSpd.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
     this.mlvSpd.HideSelection = false;
     this.mlvSpd.Location = new System.Drawing.Point(3, 71);
     this.mlvSpd.MouseLocation = new System.Drawing.Point(-1, -1);
     this.mlvSpd.MouseState = MaterialSkin.MouseState.OUT;
     this.mlvSpd.Name = "mlvSpd";
     this.mlvSpd.OwnerDraw = true;
     this.mlvSpd.Size = new System.Drawing.Size(1096, 393);
     this.mlvSpd.TabIndex = 8;
     this.mlvSpd.UseCompatibleStateImageBehavior = false;
     this.mlvSpd.View = System.Windows.Forms.View.Details;
     this.mlvSpd.DoubleClick += new System.EventHandler(this.mlvSpd_DoubleClick);
     //
     // columnHeader9
     //
     this.columnHeader9.Text = "No";
     //
     // columnHeader10
     //
     this.columnHeader10.Text = "Id";
     this.columnHeader10.Width = 0;
     //
     // columnHeader1
     //
     this.columnHeader1.Text = "Kode";
     this.columnHeader1.Width = 100;
     //
     // columnHeader2
     //
     this.columnHeader2.Text = "Nama Pegawai";
     this.columnHeader2.Width = 230;
     //
     // columnHeader3
     //
     this.columnHeader3.Text = "Nip";
     this.columnHeader3.Width = 170;
     //
     // columnHeader4
     //
     this.columnHeader4.Text = "Tempat Tujuan";
     this.columnHeader4.Width = 210;
     //
     // columnHeader5
     //
     this.columnHeader5.Text = "Nama Pejabat";
     this.columnHeader5.Width = 230;
     //
     // columnHeader6
     //
     this.columnHeader6.Text = "Jabatan";
     this.columnHeader6.Width = 200;
     //
     // columnHeader7
     //
     this.columnHeader7.Text = "Tanggal Berangkat";
     this.columnHeader7.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.columnHeader7.Width = 160;
     //
     // panel3
     //
     this.panel3.AutoSize = true;
     this.panel3.Controls.Add(this.flowLayoutPanel3);
     this.panel3.Controls.Add(this.flowLayoutPanel4);
     this.panel3.Dock = System.Windows.Forms.DockStyle.Top;
     this.panel3.Location = new System.Drawing.Point(3, 3);
     this.panel3.Margin = new System.Windows.Forms.Padding(0);
     this.panel3.Name = "panel3";
     this.panel3.Size = new System.Drawing.Size(1096, 68);
     this.panel3.TabIndex = 7;
     //
     // flowLayoutPanel3
     //
     this.flowLayoutPanel3.Controls.Add(this.txtSearchSpd);
     this.flowLayoutPanel3.Controls.Add(this.label2);
     this.flowLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Right;
     this.flowLayoutPanel3.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
     this.flowLayoutPanel3.Location = new System.Drawing.Point(518, 0);
     this.flowLayoutPanel3.Name = "flowLayoutPanel3";
     this.flowLayoutPanel3.Padding = new System.Windows.Forms.Padding(10, 20, 10, 10);
     this.flowLayoutPanel3.Size = new System.Drawing.Size(578, 68);
     this.flowLayoutPanel3.TabIndex = 6;
     //
     // txtSearchSpd
     //
     this.txtSearchSpd.Location = new System.Drawing.Point(328, 23);
     this.txtSearchSpd.Name = "txtSearchSpd";
     this.txtSearchSpd.Size = new System.Drawing.Size(227, 28);
     this.txtSearchSpd.TabIndex = 1;
     this.txtSearchSpd.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txtSearchSpd_KeyUp);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(46, 26);
     this.label2.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(275, 24);
     this.label2.TabIndex = 0;
     this.label2.Text = "Cari Nama/Nip/Tempat Tujuan: ";
     //
     // flowLayoutPanel4
     //
     this.flowLayoutPanel4.AutoSize = true;
     this.flowLayoutPanel4.Controls.Add(this.btnAddSpd);
     this.flowLayoutPanel4.Controls.Add(this.btnRefSpd);
     this.flowLayoutPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.flowLayoutPanel4.Location = new System.Drawing.Point(0, 0);
     this.flowLayoutPanel4.Margin = new System.Windows.Forms.Padding(0, 3, 90, 3);
     this.flowLayoutPanel4.Name = "flowLayoutPanel4";
     this.flowLayoutPanel4.Padding = new System.Windows.Forms.Padding(10);
     this.flowLayoutPanel4.Size = new System.Drawing.Size(1096, 68);
     this.flowLayoutPanel4.TabIndex = 5;
     //
     // btnAddSpd
     //
     this.btnAddSpd.AutoSize = true;
     this.btnAddSpd.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.btnAddSpd.Depth = 0;
     this.btnAddSpd.Icon = global::Maya_KP.Properties.Resources.baseline_add_circle_white_18dp;
     this.btnAddSpd.Location = new System.Drawing.Point(14, 16);
     this.btnAddSpd.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
     this.btnAddSpd.MouseState = MaterialSkin.MouseState.HOVER;
     this.btnAddSpd.Name = "btnAddSpd";
     this.btnAddSpd.Primary = true;
     this.btnAddSpd.Size = new System.Drawing.Size(121, 36);
     this.btnAddSpd.TabIndex = 4;
     this.btnAddSpd.Text = "TAMBAH";
     this.btnAddSpd.UseVisualStyleBackColor = true;
     this.btnAddSpd.Click += new System.EventHandler(this.btnAddSpd_Click);
     //
     // btnRefSpd
     //
     this.btnRefSpd.AutoSize = true;
     this.btnRefSpd.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.btnRefSpd.Depth = 0;
     this.btnRefSpd.Icon = global::Maya_KP.Properties.Resources.baseline_autorenew_white_18dp;
     this.btnRefSpd.Location = new System.Drawing.Point(143, 16);
     this.btnRefSpd.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
     this.btnRefSpd.MouseState = MaterialSkin.MouseState.HOVER;
     this.btnRefSpd.Name = "btnRefSpd";
     this.btnRefSpd.Primary = true;
     this.btnRefSpd.Size = new System.Drawing.Size(44, 36);
     this.btnRefSpd.TabIndex = 3;
     this.btnRefSpd.UseVisualStyleBackColor = true;
     this.btnRefSpd.Click += new System.EventHandler(this.btnRefSpd_Click);
     //
     // tabPage2
     //
     this.tabPage2.Controls.Add(this.mlvPegawai);
     this.tabPage2.Controls.Add(this.panel2);
     this.tabPage2.Location = new System.Drawing.Point(4, 31);
     this.tabPage2.Name = "tabPage2";
     this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage2.Size = new System.Drawing.Size(1102, 467);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text = "DATA PEGAWAI";
     this.tabPage2.UseVisualStyleBackColor = true;
     //
     // mlvPegawai
     //
     this.mlvPegawai.BackgroundImageTiled = true;
     this.mlvPegawai.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.mlvPegawai.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.pNo,
     this.pId,
     this.pNama,
     this.pNip,
     this.pBidang,
     this.pSeksi,
     this.pJabatan,
     this.pPangkat});
     this.mlvPegawai.Depth = 0;
     this.mlvPegawai.Dock = System.Windows.Forms.DockStyle.Fill;
     this.mlvPegawai.Font = new System.Drawing.Font("Microsoft Sans Serif", 24F);
     this.mlvPegawai.FullRowSelect = true;
     this.mlvPegawai.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
     this.mlvPegawai.HideSelection = false;
     this.mlvPegawai.Location = new System.Drawing.Point(3, 71);
     this.mlvPegawai.MouseLocation = new System.Drawing.Point(-1, -1);
     this.mlvPegawai.MouseState = MaterialSkin.MouseState.OUT;
     this.mlvPegawai.Name = "mlvPegawai";
     this.mlvPegawai.OwnerDraw = true;
     this.mlvPegawai.Size = new System.Drawing.Size(1096, 393);
     this.mlvPegawai.TabIndex = 7;
     this.mlvPegawai.UseCompatibleStateImageBehavior = false;
     this.mlvPegawai.View = System.Windows.Forms.View.Details;
     this.mlvPegawai.DoubleClick += new System.EventHandler(this.mlvPegawai_DoubleClick);
     //
     // pNo
     //
     this.pNo.Text = "No";
     //
     // pId
     //
     this.pId.Text = "Id";
     this.pId.Width = 0;
     //
     // pNama
     //
     this.pNama.Text = "Nama";
     this.pNama.Width = 270;
     //
     // pNip
     //
     this.pNip.Text = "NIP";
     this.pNip.Width = 210;
     //
     // pBidang
     //
     this.pBidang.Text = "Bidang";
     this.pBidang.Width = 170;
     //
     // pSeksi
     //
     this.pSeksi.Text = "pSeksi";
     this.pSeksi.Width = 260;
     //
     // pJabatan
     //
     this.pJabatan.Text = "Jabatan";
     this.pJabatan.Width = 150;
     //
     // pPangkat
     //
     this.pPangkat.Text = "Pangkat";
     this.pPangkat.Width = 200;
     //
     // panel2
     //
     this.panel2.AutoSize = true;
     this.panel2.Controls.Add(this.flowLayoutPanel2);
     this.panel2.Controls.Add(this.flowLayoutPanel1);
     this.panel2.Dock = System.Windows.Forms.DockStyle.Top;
     this.panel2.Location = new System.Drawing.Point(3, 3);
     this.panel2.Margin = new System.Windows.Forms.Padding(0);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(1096, 68);
     this.panel2.TabIndex = 6;
     //
     // flowLayoutPanel2
     //
     this.flowLayoutPanel2.Controls.Add(this.txtCariPegawai);
     this.flowLayoutPanel2.Controls.Add(this.label1);
     this.flowLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Right;
     this.flowLayoutPanel2.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
     this.flowLayoutPanel2.Location = new System.Drawing.Point(518, 0);
     this.flowLayoutPanel2.Name = "flowLayoutPanel2";
     this.flowLayoutPanel2.Padding = new System.Windows.Forms.Padding(10, 20, 10, 10);
     this.flowLayoutPanel2.Size = new System.Drawing.Size(578, 68);
     this.flowLayoutPanel2.TabIndex = 6;
     //
     // txtCariPegawai
     //
     this.txtCariPegawai.Location = new System.Drawing.Point(328, 23);
     this.txtCariPegawai.Name = "txtCariPegawai";
     this.txtCariPegawai.Size = new System.Drawing.Size(227, 28);
     this.txtCariPegawai.TabIndex = 1;
     this.txtCariPegawai.TextChanged += new System.EventHandler(this.txtCariPegawai_TextChanged);
     this.txtCariPegawai.KeyUp += new System.Windows.Forms.KeyEventHandler(this.textBox1_KeyUp);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(169, 26);
     this.label1.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(152, 24);
     this.label1.TabIndex = 0;
     this.label1.Text = "Cari Nama / Nip: ";
     //
     // flowLayoutPanel1
     //
     this.flowLayoutPanel1.AutoSize = true;
     this.flowLayoutPanel1.Controls.Add(this.btnInputPegawai);
     this.flowLayoutPanel1.Controls.Add(this.btnRef);
     this.flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.flowLayoutPanel1.Location = new System.Drawing.Point(0, 0);
     this.flowLayoutPanel1.Margin = new System.Windows.Forms.Padding(0, 3, 90, 3);
     this.flowLayoutPanel1.Name = "flowLayoutPanel1";
     this.flowLayoutPanel1.Padding = new System.Windows.Forms.Padding(10);
     this.flowLayoutPanel1.Size = new System.Drawing.Size(1096, 68);
     this.flowLayoutPanel1.TabIndex = 5;
     //
     // btnInputPegawai
     //
     this.btnInputPegawai.AutoSize = true;
     this.btnInputPegawai.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.btnInputPegawai.Depth = 0;
     this.btnInputPegawai.Icon = global::Maya_KP.Properties.Resources.baseline_add_circle_white_18dp;
     this.btnInputPegawai.Location = new System.Drawing.Point(14, 16);
     this.btnInputPegawai.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
     this.btnInputPegawai.MouseState = MaterialSkin.MouseState.HOVER;
     this.btnInputPegawai.Name = "btnInputPegawai";
     this.btnInputPegawai.Primary = true;
     this.btnInputPegawai.Size = new System.Drawing.Size(121, 36);
     this.btnInputPegawai.TabIndex = 4;
     this.btnInputPegawai.Text = "TAMBAH";
     this.btnInputPegawai.UseVisualStyleBackColor = true;
     this.btnInputPegawai.Click += new System.EventHandler(this.btnInputPegawai_Click);
     //
     // btnRef
     //
     this.btnRef.AutoSize = true;
     this.btnRef.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.btnRef.Depth = 0;
     this.btnRef.Icon = global::Maya_KP.Properties.Resources.baseline_autorenew_white_18dp;
     this.btnRef.Location = new System.Drawing.Point(143, 16);
     this.btnRef.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
     this.btnRef.MouseState = MaterialSkin.MouseState.HOVER;
     this.btnRef.Name = "btnRef";
     this.btnRef.Primary = true;
     this.btnRef.Size = new System.Drawing.Size(44, 36);
     this.btnRef.TabIndex = 3;
     this.btnRef.UseVisualStyleBackColor = true;
     this.btnRef.Click += new System.EventHandler(this.btnRef_Click);
     //
     // tabPage3
     //
     this.tabPage3.Controls.Add(this.lblnips);
     this.tabPage3.Controls.Add(this.lblkomitmen);
     this.tabPage3.Controls.Add(this.materialLabel1);
     this.tabPage3.Controls.Add(this.tbnomor);
     this.tabPage3.Controls.Add(this.nm3);
     this.tabPage3.Controls.Add(this.tgl3);
     this.tabPage3.Controls.Add(this.ket3);
     this.tabPage3.Controls.Add(this.nm2);
     this.tabPage3.Controls.Add(this.tgl2);
     this.tabPage3.Controls.Add(this.ket2);
     this.tabPage3.Controls.Add(this.ket1);
     this.tabPage3.Controls.Add(this.tgl1);
     this.tabPage3.Controls.Add(this.nm1);
     this.tabPage3.Controls.Add(this.reportViewer1);
     this.tabPage3.Location = new System.Drawing.Point(4, 31);
     this.tabPage3.Name = "tabPage3";
     this.tabPage3.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage3.Size = new System.Drawing.Size(1102, 467);
     this.tabPage3.TabIndex = 2;
     this.tabPage3.Text = "LAPORAN SPD";
     this.tabPage3.UseVisualStyleBackColor = true;
     //
     // lblnips
     //
     this.lblnips.AutoSize = true;
     this.lblnips.Location = new System.Drawing.Point(987, 275);
     this.lblnips.Name = "lblnips";
     this.lblnips.Size = new System.Drawing.Size(60, 24);
     this.lblnips.TabIndex = 32;
     this.lblnips.Text = "label4";
     //
     // lblkomitmen
     //
     this.lblkomitmen.AutoSize = true;
     this.lblkomitmen.Location = new System.Drawing.Point(987, 251);
     this.lblkomitmen.Name = "lblkomitmen";
     this.lblkomitmen.Size = new System.Drawing.Size(60, 24);
     this.lblkomitmen.TabIndex = 31;
     this.lblkomitmen.Text = "label3";
     //
     // materialLabel1
     //
     this.materialLabel1.AutoSize = true;
     this.materialLabel1.Depth = 0;
     this.materialLabel1.Font = new System.Drawing.Font("Roboto", 11F);
     this.materialLabel1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.materialLabel1.Location = new System.Drawing.Point(686, 51);
     this.materialLabel1.MouseState = MaterialSkin.MouseState.HOVER;
     this.materialLabel1.Name = "materialLabel1";
     this.materialLabel1.Size = new System.Drawing.Size(88, 24);
     this.materialLabel1.TabIndex = 30;
     this.materialLabel1.Text = "No. Surat";
     //
     // tbnomor
     //
     this.tbnomor.Enabled = false;
     this.tbnomor.Location = new System.Drawing.Point(780, 48);
     this.tbnomor.Name = "tbnomor";
     this.tbnomor.Size = new System.Drawing.Size(173, 28);
     this.tbnomor.TabIndex = 29;
     //
     // nm3
     //
     this.nm3.AutoSize = true;
     this.nm3.Location = new System.Drawing.Point(686, 213);
     this.nm3.Name = "nm3";
     this.nm3.Size = new System.Drawing.Size(16, 24);
     this.nm3.TabIndex = 28;
     this.nm3.Text = "-";
     //
     // tgl3
     //
     this.tgl3.AutoSize = true;
     this.tgl3.Location = new System.Drawing.Point(893, 213);
     this.tgl3.Name = "tgl3";
     this.tgl3.Size = new System.Drawing.Size(16, 24);
     this.tgl3.TabIndex = 27;
     this.tgl3.Text = "-";
     //
     // ket3
     //
     this.ket3.AutoSize = true;
     this.ket3.Location = new System.Drawing.Point(1013, 213);
     this.ket3.Name = "ket3";
     this.ket3.Size = new System.Drawing.Size(16, 24);
     this.ket3.TabIndex = 26;
     this.ket3.Text = "-";
     //
     // nm2
     //
     this.nm2.AutoSize = true;
     this.nm2.Location = new System.Drawing.Point(686, 179);
     this.nm2.Name = "nm2";
     this.nm2.Size = new System.Drawing.Size(16, 24);
     this.nm2.TabIndex = 25;
     this.nm2.Text = "-";
     //
     // tgl2
     //
     this.tgl2.AutoSize = true;
     this.tgl2.Location = new System.Drawing.Point(893, 179);
     this.tgl2.Name = "tgl2";
     this.tgl2.Size = new System.Drawing.Size(16, 24);
     this.tgl2.TabIndex = 24;
     this.tgl2.Text = "-";
     //
     // ket2
     //
     this.ket2.AutoSize = true;
     this.ket2.Location = new System.Drawing.Point(1013, 179);
     this.ket2.Name = "ket2";
     this.ket2.Size = new System.Drawing.Size(16, 24);
     this.ket2.TabIndex = 23;
     this.ket2.Text = "-";
     //
     // ket1
     //
     this.ket1.AutoSize = true;
     this.ket1.Location = new System.Drawing.Point(1013, 138);
     this.ket1.Name = "ket1";
     this.ket1.Size = new System.Drawing.Size(16, 24);
     this.ket1.TabIndex = 22;
     this.ket1.Text = "-";
     //
     // tgl1
     //
     this.tgl1.AutoSize = true;
     this.tgl1.Location = new System.Drawing.Point(893, 138);
     this.tgl1.Name = "tgl1";
     this.tgl1.Size = new System.Drawing.Size(16, 24);
     this.tgl1.TabIndex = 21;
     this.tgl1.Text = "-";
     //
     // nm1
     //
     this.nm1.AutoSize = true;
     this.nm1.Location = new System.Drawing.Point(686, 138);
     this.nm1.Name = "nm1";
     this.nm1.Size = new System.Drawing.Size(16, 24);
     this.nm1.TabIndex = 20;
     this.nm1.Text = "-";
     //
     // reportViewer1
     //
     this.reportViewer1.Dock = System.Windows.Forms.DockStyle.Fill;
     reportDataSource4.Name = "DataSet1";
     reportDataSource4.Value = this.DataTable1BindingSource;
     this.reportViewer1.LocalReport.DataSources.Add(reportDataSource4);
     this.reportViewer1.LocalReport.ReportEmbeddedResource = "Maya_KP.Report2.rdlc";
     this.reportViewer1.Location = new System.Drawing.Point(3, 3);
     this.reportViewer1.Name = "reportViewer1";
     this.reportViewer1.ServerReport.BearerToken = null;
     this.reportViewer1.Size = new System.Drawing.Size(1096, 461);
     this.reportViewer1.TabIndex = 17;
     //
     // tabPage4
     //
     this.tabPage4.Controls.Add(this.materialRaisedButton1);
     this.tabPage4.Controls.Add(this.Pengeluaran_);
     this.tabPage4.Location = new System.Drawing.Point(4, 31);
     this.tabPage4.Name = "tabPage4";
     this.tabPage4.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage4.Size = new System.Drawing.Size(1102, 467);
     this.tabPage4.TabIndex = 3;
     this.tabPage4.Text = "PENGELUARAN";
     this.tabPage4.UseVisualStyleBackColor = true;
     //
     // materialRaisedButton1
     //
     this.materialRaisedButton1.AutoSize = true;
     this.materialRaisedButton1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.materialRaisedButton1.Depth = 0;
     this.materialRaisedButton1.Icon = global::Maya_KP.Properties.Resources.print;
     this.materialRaisedButton1.Location = new System.Drawing.Point(7, 13);
     this.materialRaisedButton1.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
     this.materialRaisedButton1.MouseState = MaterialSkin.MouseState.HOVER;
     this.materialRaisedButton1.Name = "materialRaisedButton1";
     this.materialRaisedButton1.Primary = true;
     this.materialRaisedButton1.Size = new System.Drawing.Size(300, 36);
     this.materialRaisedButton1.TabIndex = 5;
     this.materialRaisedButton1.Text = "Cetak Rincian Pengeluaran";
     this.materialRaisedButton1.UseVisualStyleBackColor = true;
     this.materialRaisedButton1.Click += new System.EventHandler(this.MaterialRaisedButton1_Click_2);
     //
     // Pengeluaran_
     //
     this.Pengeluaran_.BackgroundImageTiled = true;
     this.Pengeluaran_.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.Pengeluaran_.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader8,
     this.columnHeader12,
     this.columnHeader13,
     this.columnHeader14,
     this.columnHeader15,
     this.columnHeader16,
     this.columnHeader17,
     this.columnHeader18,
     this.columnHeader19,
     this.columnHeader20});
     this.Pengeluaran_.Depth = 0;
     this.Pengeluaran_.Font = new System.Drawing.Font("Microsoft Sans Serif", 24F);
     this.Pengeluaran_.FullRowSelect = true;
     this.Pengeluaran_.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
     this.Pengeluaran_.HideSelection = false;
     this.Pengeluaran_.Location = new System.Drawing.Point(7, 58);
     this.Pengeluaran_.MouseLocation = new System.Drawing.Point(-1, -1);
     this.Pengeluaran_.MouseState = MaterialSkin.MouseState.OUT;
     this.Pengeluaran_.Name = "Pengeluaran_";
     this.Pengeluaran_.OwnerDraw = true;
     this.Pengeluaran_.Size = new System.Drawing.Size(1524, 697);
     this.Pengeluaran_.TabIndex = 8;
     this.Pengeluaran_.UseCompatibleStateImageBehavior = false;
     this.Pengeluaran_.View = System.Windows.Forms.View.Details;
     //
     // columnHeader8
     //
     this.columnHeader8.Text = "No";
     //
     // columnHeader12
     //
     this.columnHeader12.Text = "Nama";
     this.columnHeader12.Width = 270;
     //
     // columnHeader13
     //
     this.columnHeader13.Text = "Uang Harian";
     this.columnHeader13.Width = 210;
     //
     // columnHeader14
     //
     this.columnHeader14.Text = "Penginapan";
     this.columnHeader14.Width = 170;
     //
     // columnHeader15
     //
     this.columnHeader15.Text = "Transport PP";
     this.columnHeader15.Width = 260;
     //
     // columnHeader16
     //
     this.columnHeader16.Text = "Transport Lokal";
     this.columnHeader16.Width = 150;
     //
     // columnHeader17
     //
     this.columnHeader17.Text = "Damri";
     this.columnHeader17.Width = 200;
     //
     // columnHeader18
     //
     this.columnHeader18.Text = "Lain Lain";
     this.columnHeader18.Width = 200;
     //
     // columnHeader19
     //
     this.columnHeader19.Text = "Tgl_Kwitansi";
     this.columnHeader19.Width = 200;
     //
     // columnHeader20
     //
     this.columnHeader20.Text = "Tgl_Lunas";
     this.columnHeader20.Width = 200;
     //
     // materialTabSelector1
     //
     this.materialTabSelector1.BaseTabControl = this.mtbMain;
     this.materialTabSelector1.Depth = 0;
     this.materialTabSelector1.Dock = System.Windows.Forms.DockStyle.Top;
     this.materialTabSelector1.Location = new System.Drawing.Point(0, 0);
     this.materialTabSelector1.MouseState = MaterialSkin.MouseState.HOVER;
     this.materialTabSelector1.Name = "materialTabSelector1";
     this.materialTabSelector1.Size = new System.Drawing.Size(1110, 45);
     this.materialTabSelector1.TabIndex = 0;
     this.materialTabSelector1.Text = "materialTabSelector1";
     //
     // DataTable1TableAdapter
     //
     this.DataTable1TableAdapter.ClearBeforeFill = true;
     //
     // dataSet11
     //
     this.dataSet11.DataSetName = "DataSet1";
     this.dataSet11.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // dataSet12
     //
     this.dataSet12.DataSetName = "DataSet1";
     this.dataSet12.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // lblnip_komitmen
     //
     this.lblnip_komitmen.AutoSize = true;
     this.lblnip_komitmen.Location = new System.Drawing.Point(924, 236);
     this.lblnip_komitmen.Name = "lblnip_komitmen";
     this.lblnip_komitmen.Size = new System.Drawing.Size(36, 24);
     this.lblnip_komitmen.TabIndex = 10;
     this.lblnip_komitmen.Text = "nip";
     //
     // Form1
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 22F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoSize = true;
     this.ClientSize = new System.Drawing.Size(1110, 610);
     this.Controls.Add(this.panel1);
     this.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Margin = new System.Windows.Forms.Padding(4);
     this.Name = "Form1";
     this.Padding = new System.Windows.Forms.Padding(0, 63, 0, 0);
     this.Text = "Surat Perjalanan Dinas";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing);
     this.Load += new System.EventHandler(this.Form1_Load);
     ((System.ComponentModel.ISupportInitialize)(this.DataTable1BindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DataSet1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TableBindingSource)).EndInit();
     this.panel1.ResumeLayout(false);
     this.mtbMain.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     this.tabPage1.PerformLayout();
     this.panel3.ResumeLayout(false);
     this.panel3.PerformLayout();
     this.flowLayoutPanel3.ResumeLayout(false);
     this.flowLayoutPanel3.PerformLayout();
     this.flowLayoutPanel4.ResumeLayout(false);
     this.flowLayoutPanel4.PerformLayout();
     this.tabPage2.ResumeLayout(false);
     this.tabPage2.PerformLayout();
     this.panel2.ResumeLayout(false);
     this.panel2.PerformLayout();
     this.flowLayoutPanel2.ResumeLayout(false);
     this.flowLayoutPanel2.PerformLayout();
     this.flowLayoutPanel1.ResumeLayout(false);
     this.flowLayoutPanel1.PerformLayout();
     this.tabPage3.ResumeLayout(false);
     this.tabPage3.PerformLayout();
     this.tabPage4.ResumeLayout(false);
     this.tabPage4.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet12)).EndInit();
     this.ResumeLayout(false);
 }
Пример #11
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     MaterialSkin.Controls.MaterialLabel materialLabel7;
     this.panel1                = new System.Windows.Forms.Panel();
     this.label1                = new System.Windows.Forms.Label();
     this.panel2                = new System.Windows.Forms.Panel();
     this.tabControl1           = new System.Windows.Forms.TabControl();
     this.tabPage1              = new System.Windows.Forms.TabPage();
     this.panel3                = new System.Windows.Forms.Panel();
     this.textBoxHorasJornada   = new System.Windows.Forms.TextBox();
     this.dateTimeLimiteSalida  = new System.Windows.Forms.DateTimePicker();
     this.dateTimeHoraSalida    = new System.Windows.Forms.DateTimePicker();
     this.dateTimeLimiteEntrada = new System.Windows.Forms.DateTimePicker();
     this.dateTimeIniciaEntrada = new System.Windows.Forms.DateTimePicker();
     this.dateTimeHoraEntrada   = new System.Windows.Forms.DateTimePicker();
     this.materialLabel11       = new MaterialSkin.Controls.MaterialLabel();
     this.materialLabel12       = new MaterialSkin.Controls.MaterialLabel();
     this.materialLabel13       = new MaterialSkin.Controls.MaterialLabel();
     this.materialLabel14       = new MaterialSkin.Controls.MaterialLabel();
     this.materialLabel6        = new MaterialSkin.Controls.MaterialLabel();
     this.materialLabel5        = new MaterialSkin.Controls.MaterialLabel();
     this.materialLabel4        = new MaterialSkin.Controls.MaterialLabel();
     this.materialLabel3        = new MaterialSkin.Controls.MaterialLabel();
     this.textBoxDescripcion    = new System.Windows.Forms.TextBox();
     this.materialLabel2        = new MaterialSkin.Controls.MaterialLabel();
     this.textBoxTurno          = new System.Windows.Forms.TextBox();
     this.materialLabel1        = new MaterialSkin.Controls.MaterialLabel();
     this.buttonCancelar        = new System.Windows.Forms.Button();
     this.buttonLimpiar         = new System.Windows.Forms.Button();
     this.buttonGuardar         = new System.Windows.Forms.Button();
     materialLabel7             = new MaterialSkin.Controls.MaterialLabel();
     this.panel1.SuspendLayout();
     this.panel2.SuspendLayout();
     this.tabControl1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.panel3.SuspendLayout();
     this.SuspendLayout();
     //
     // materialLabel7
     //
     materialLabel7.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     materialLabel7.AutoSize    = true;
     materialLabel7.Depth       = 0;
     materialLabel7.Font        = new System.Drawing.Font("Roboto", 11F);
     materialLabel7.ForeColor   = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     materialLabel7.Location    = new System.Drawing.Point(45, 4);
     materialLabel7.MouseState  = MaterialSkin.MouseState.HOVER;
     materialLabel7.Name        = "materialLabel7";
     materialLabel7.RightToLeft = System.Windows.Forms.RightToLeft.No;
     materialLabel7.Size        = new System.Drawing.Size(15, 19);
     materialLabel7.TabIndex    = 79;
     materialLabel7.Text        = "*";
     materialLabel7.TextAlign   = System.Drawing.ContentAlignment.MiddleRight;
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(22)))), ((int)(((byte)(160)))), ((int)(((byte)(133)))));
     this.panel1.Controls.Add(this.label1);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(800, 37);
     this.panel1.TabIndex = 0;
     //
     // label1
     //
     this.label1.AutoSize  = true;
     this.label1.Font      = new System.Drawing.Font("Microsoft Sans Serif", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.Color.White;
     this.label1.Location  = new System.Drawing.Point(12, 10);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(66, 24);
     this.label1.TabIndex  = 1;
     this.label1.Text      = "Turno";
     //
     // panel2
     //
     this.panel2.Controls.Add(this.tabControl1);
     this.panel2.Controls.Add(this.buttonCancelar);
     this.panel2.Controls.Add(this.buttonLimpiar);
     this.panel2.Controls.Add(this.buttonGuardar);
     this.panel2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel2.Location = new System.Drawing.Point(0, 37);
     this.panel2.Name     = "panel2";
     this.panel2.Size     = new System.Drawing.Size(800, 413);
     this.panel2.TabIndex = 1;
     //
     // tabControl1
     //
     this.tabControl1.Controls.Add(this.tabPage1);
     this.tabControl1.Font          = new System.Drawing.Font("Microsoft Sans Serif", 11F);
     this.tabControl1.Location      = new System.Drawing.Point(12, 61);
     this.tabControl1.Name          = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size          = new System.Drawing.Size(800, 349);
     this.tabControl1.SizeMode      = System.Windows.Forms.TabSizeMode.FillToRight;
     this.tabControl1.TabIndex      = 15;
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.panel3);
     this.tabPage1.Location = new System.Drawing.Point(4, 27);
     this.tabPage1.Name     = "tabPage1";
     this.tabPage1.Padding  = new System.Windows.Forms.Padding(3);
     this.tabPage1.Size     = new System.Drawing.Size(792, 318);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text     = "Captura Turno";
     this.tabPage1.UseVisualStyleBackColor = true;
     //
     // panel3
     //
     this.panel3.Controls.Add(materialLabel7);
     this.panel3.Controls.Add(this.textBoxHorasJornada);
     this.panel3.Controls.Add(this.dateTimeLimiteSalida);
     this.panel3.Controls.Add(this.dateTimeHoraSalida);
     this.panel3.Controls.Add(this.dateTimeLimiteEntrada);
     this.panel3.Controls.Add(this.dateTimeIniciaEntrada);
     this.panel3.Controls.Add(this.dateTimeHoraEntrada);
     this.panel3.Controls.Add(this.materialLabel11);
     this.panel3.Controls.Add(this.materialLabel12);
     this.panel3.Controls.Add(this.materialLabel13);
     this.panel3.Controls.Add(this.materialLabel14);
     this.panel3.Controls.Add(this.materialLabel6);
     this.panel3.Controls.Add(this.materialLabel5);
     this.panel3.Controls.Add(this.materialLabel4);
     this.panel3.Controls.Add(this.materialLabel3);
     this.panel3.Controls.Add(this.textBoxDescripcion);
     this.panel3.Controls.Add(this.materialLabel2);
     this.panel3.Controls.Add(this.textBoxTurno);
     this.panel3.Controls.Add(this.materialLabel1);
     this.panel3.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel3.Location = new System.Drawing.Point(3, 3);
     this.panel3.Name     = "panel3";
     this.panel3.Size     = new System.Drawing.Size(786, 312);
     this.panel3.TabIndex = 13;
     //
     // textBoxHorasJornada
     //
     this.textBoxHorasJornada.Location  = new System.Drawing.Point(475, 228);
     this.textBoxHorasJornada.Name      = "textBoxHorasJornada";
     this.textBoxHorasJornada.Size      = new System.Drawing.Size(125, 24);
     this.textBoxHorasJornada.TabIndex  = 78;
     this.textBoxHorasJornada.Text      = "0";
     this.textBoxHorasJornada.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // dateTimeLimiteSalida
     //
     this.dateTimeLimiteSalida.CustomFormat = "HH:mm: ss";
     this.dateTimeLimiteSalida.Format       = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dateTimeLimiteSalida.Location     = new System.Drawing.Point(283, 225);
     this.dateTimeLimiteSalida.Name         = "dateTimeLimiteSalida";
     this.dateTimeLimiteSalida.ShowUpDown   = true;
     this.dateTimeLimiteSalida.Size         = new System.Drawing.Size(125, 24);
     this.dateTimeLimiteSalida.TabIndex     = 77;
     this.dateTimeLimiteSalida.Value        = new System.DateTime(2019, 2, 4, 0, 0, 0, 0);
     //
     // dateTimeHoraSalida
     //
     this.dateTimeHoraSalida.CustomFormat  = "HH:mm: ss";
     this.dateTimeHoraSalida.Format        = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dateTimeHoraSalida.Location      = new System.Drawing.Point(89, 225);
     this.dateTimeHoraSalida.Name          = "dateTimeHoraSalida";
     this.dateTimeHoraSalida.ShowUpDown    = true;
     this.dateTimeHoraSalida.Size          = new System.Drawing.Size(125, 24);
     this.dateTimeHoraSalida.TabIndex      = 76;
     this.dateTimeHoraSalida.Value         = new System.DateTime(2019, 2, 4, 0, 0, 0, 0);
     this.dateTimeHoraSalida.ValueChanged += new System.EventHandler(this.dateTimeHoraSalida_ValueChanged);
     //
     // dateTimeLimiteEntrada
     //
     this.dateTimeLimiteEntrada.CustomFormat = "HH:mm: ss";
     this.dateTimeLimiteEntrada.Format       = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dateTimeLimiteEntrada.Location     = new System.Drawing.Point(475, 148);
     this.dateTimeLimiteEntrada.Name         = "dateTimeLimiteEntrada";
     this.dateTimeLimiteEntrada.ShowUpDown   = true;
     this.dateTimeLimiteEntrada.Size         = new System.Drawing.Size(125, 24);
     this.dateTimeLimiteEntrada.TabIndex     = 73;
     this.dateTimeLimiteEntrada.Value        = new System.DateTime(2019, 2, 4, 0, 0, 0, 0);
     //
     // dateTimeIniciaEntrada
     //
     this.dateTimeIniciaEntrada.CustomFormat = "HH:mm: ss";
     this.dateTimeIniciaEntrada.Format       = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dateTimeIniciaEntrada.Location     = new System.Drawing.Point(283, 148);
     this.dateTimeIniciaEntrada.Name         = "dateTimeIniciaEntrada";
     this.dateTimeIniciaEntrada.ShowUpDown   = true;
     this.dateTimeIniciaEntrada.Size         = new System.Drawing.Size(125, 24);
     this.dateTimeIniciaEntrada.TabIndex     = 72;
     this.dateTimeIniciaEntrada.Value        = new System.DateTime(2019, 2, 4, 0, 0, 0, 0);
     //
     // dateTimeHoraEntrada
     //
     this.dateTimeHoraEntrada.CustomFormat  = "HH:mm: ss";
     this.dateTimeHoraEntrada.Format        = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dateTimeHoraEntrada.Location      = new System.Drawing.Point(89, 148);
     this.dateTimeHoraEntrada.Name          = "dateTimeHoraEntrada";
     this.dateTimeHoraEntrada.ShowUpDown    = true;
     this.dateTimeHoraEntrada.Size          = new System.Drawing.Size(125, 24);
     this.dateTimeHoraEntrada.TabIndex      = 71;
     this.dateTimeHoraEntrada.Value         = new System.DateTime(2019, 2, 4, 0, 0, 0, 0);
     this.dateTimeHoraEntrada.ValueChanged += new System.EventHandler(this.dateTimeHoraEntrada_ValueChanged);
     //
     // materialLabel11
     //
     this.materialLabel11.AutoSize   = true;
     this.materialLabel11.Depth      = 0;
     this.materialLabel11.Font       = new System.Drawing.Font("Roboto", 11F);
     this.materialLabel11.ForeColor  = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.materialLabel11.Location   = new System.Drawing.Point(471, 203);
     this.materialLabel11.MouseState = MaterialSkin.MouseState.HOVER;
     this.materialLabel11.Name       = "materialLabel11";
     this.materialLabel11.Size       = new System.Drawing.Size(108, 19);
     this.materialLabel11.TabIndex   = 66;
     this.materialLabel11.Text       = "Horas Jornada";
     //
     // materialLabel12
     //
     this.materialLabel12.AutoSize   = true;
     this.materialLabel12.Depth      = 0;
     this.materialLabel12.Font       = new System.Drawing.Font("Roboto", 11F);
     this.materialLabel12.ForeColor  = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.materialLabel12.Location   = new System.Drawing.Point(279, 203);
     this.materialLabel12.MouseState = MaterialSkin.MouseState.HOVER;
     this.materialLabel12.Name       = "materialLabel12";
     this.materialLabel12.Size       = new System.Drawing.Size(96, 19);
     this.materialLabel12.TabIndex   = 64;
     this.materialLabel12.Text       = "Limite Salida";
     //
     // materialLabel13
     //
     this.materialLabel13.AutoSize   = true;
     this.materialLabel13.Depth      = 0;
     this.materialLabel13.Font       = new System.Drawing.Font("Roboto", 11F);
     this.materialLabel13.ForeColor  = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.materialLabel13.Location   = new System.Drawing.Point(-1, 202);
     this.materialLabel13.MouseState = MaterialSkin.MouseState.HOVER;
     this.materialLabel13.Name       = "materialLabel13";
     this.materialLabel13.Size       = new System.Drawing.Size(50, 19);
     this.materialLabel13.TabIndex   = 62;
     this.materialLabel13.Text       = "Salida";
     //
     // materialLabel14
     //
     this.materialLabel14.AutoSize   = true;
     this.materialLabel14.Depth      = 0;
     this.materialLabel14.Font       = new System.Drawing.Font("Roboto", 11F);
     this.materialLabel14.ForeColor  = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.materialLabel14.Location   = new System.Drawing.Point(85, 203);
     this.materialLabel14.MouseState = MaterialSkin.MouseState.HOVER;
     this.materialLabel14.Name       = "materialLabel14";
     this.materialLabel14.Size       = new System.Drawing.Size(87, 19);
     this.materialLabel14.TabIndex   = 61;
     this.materialLabel14.Text       = "Hora Salida";
     //
     // materialLabel6
     //
     this.materialLabel6.AutoSize   = true;
     this.materialLabel6.Depth      = 0;
     this.materialLabel6.Font       = new System.Drawing.Font("Roboto", 11F);
     this.materialLabel6.ForeColor  = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.materialLabel6.Location   = new System.Drawing.Point(471, 126);
     this.materialLabel6.MouseState = MaterialSkin.MouseState.HOVER;
     this.materialLabel6.Name       = "materialLabel6";
     this.materialLabel6.Size       = new System.Drawing.Size(106, 19);
     this.materialLabel6.TabIndex   = 52;
     this.materialLabel6.Text       = "Limite Entrada";
     //
     // materialLabel5
     //
     this.materialLabel5.AutoSize   = true;
     this.materialLabel5.Depth      = 0;
     this.materialLabel5.Font       = new System.Drawing.Font("Roboto", 11F);
     this.materialLabel5.ForeColor  = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.materialLabel5.Location   = new System.Drawing.Point(279, 126);
     this.materialLabel5.MouseState = MaterialSkin.MouseState.HOVER;
     this.materialLabel5.Name       = "materialLabel5";
     this.materialLabel5.Size       = new System.Drawing.Size(100, 19);
     this.materialLabel5.TabIndex   = 50;
     this.materialLabel5.Text       = "Inicia Entrada";
     //
     // materialLabel4
     //
     this.materialLabel4.AutoSize   = true;
     this.materialLabel4.Depth      = 0;
     this.materialLabel4.Font       = new System.Drawing.Font("Roboto", 11F);
     this.materialLabel4.ForeColor  = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.materialLabel4.Location   = new System.Drawing.Point(-1, 125);
     this.materialLabel4.MouseState = MaterialSkin.MouseState.HOVER;
     this.materialLabel4.Name       = "materialLabel4";
     this.materialLabel4.Size       = new System.Drawing.Size(60, 19);
     this.materialLabel4.TabIndex   = 48;
     this.materialLabel4.Text       = "Entrada";
     //
     // materialLabel3
     //
     this.materialLabel3.AutoSize   = true;
     this.materialLabel3.Depth      = 0;
     this.materialLabel3.Font       = new System.Drawing.Font("Roboto", 11F);
     this.materialLabel3.ForeColor  = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.materialLabel3.Location   = new System.Drawing.Point(85, 126);
     this.materialLabel3.MouseState = MaterialSkin.MouseState.HOVER;
     this.materialLabel3.Name       = "materialLabel3";
     this.materialLabel3.Size       = new System.Drawing.Size(97, 19);
     this.materialLabel3.TabIndex   = 47;
     this.materialLabel3.Text       = "Hora Entrada";
     //
     // textBoxDescripcion
     //
     this.textBoxDescripcion.Location  = new System.Drawing.Point(3, 72);
     this.textBoxDescripcion.Multiline = true;
     this.textBoxDescripcion.Name      = "textBoxDescripcion";
     this.textBoxDescripcion.Size      = new System.Drawing.Size(335, 24);
     this.textBoxDescripcion.TabIndex  = 44;
     //
     // materialLabel2
     //
     this.materialLabel2.AutoSize   = true;
     this.materialLabel2.Depth      = 0;
     this.materialLabel2.Font       = new System.Drawing.Font("Roboto", 11F);
     this.materialLabel2.ForeColor  = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.materialLabel2.Location   = new System.Drawing.Point(-1, 50);
     this.materialLabel2.MouseState = MaterialSkin.MouseState.HOVER;
     this.materialLabel2.Name       = "materialLabel2";
     this.materialLabel2.Size       = new System.Drawing.Size(89, 19);
     this.materialLabel2.TabIndex   = 45;
     this.materialLabel2.Text       = "Descripcion";
     //
     // textBoxTurno
     //
     this.textBoxTurno.Location = new System.Drawing.Point(3, 23);
     this.textBoxTurno.Name     = "textBoxTurno";
     this.textBoxTurno.Size     = new System.Drawing.Size(335, 24);
     this.textBoxTurno.TabIndex = 42;
     //
     // materialLabel1
     //
     this.materialLabel1.AutoSize   = true;
     this.materialLabel1.Depth      = 0;
     this.materialLabel1.Font       = new System.Drawing.Font("Roboto", 11F);
     this.materialLabel1.ForeColor  = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.materialLabel1.Location   = new System.Drawing.Point(-1, 1);
     this.materialLabel1.MouseState = MaterialSkin.MouseState.HOVER;
     this.materialLabel1.Name       = "materialLabel1";
     this.materialLabel1.Size       = new System.Drawing.Size(48, 19);
     this.materialLabel1.TabIndex   = 43;
     this.materialLabel1.Text       = "Turno";
     //
     // buttonCancelar
     //
     this.buttonCancelar.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(11)))), ((int)(((byte)(83)))), ((int)(((byte)(69)))));
     this.buttonCancelar.FlatAppearance.CheckedBackColor = System.Drawing.SystemColors.HotTrack;
     this.buttonCancelar.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.buttonCancelar.Font      = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonCancelar.ForeColor = System.Drawing.Color.White;
     this.buttonCancelar.Location  = new System.Drawing.Point(177, 6);
     this.buttonCancelar.Name      = "buttonCancelar";
     this.buttonCancelar.Size      = new System.Drawing.Size(91, 40);
     this.buttonCancelar.TabIndex  = 13;
     this.buttonCancelar.Text      = "Cancelar";
     this.buttonCancelar.UseVisualStyleBackColor = false;
     this.buttonCancelar.Click += new System.EventHandler(this.buttonCancelar_Click);
     //
     // buttonLimpiar
     //
     this.buttonLimpiar.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(11)))), ((int)(((byte)(83)))), ((int)(((byte)(69)))));
     this.buttonLimpiar.FlatAppearance.CheckedBackColor = System.Drawing.SystemColors.HotTrack;
     this.buttonLimpiar.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.buttonLimpiar.Font      = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonLimpiar.ForeColor = System.Drawing.Color.White;
     this.buttonLimpiar.Location  = new System.Drawing.Point(96, 6);
     this.buttonLimpiar.Name      = "buttonLimpiar";
     this.buttonLimpiar.Size      = new System.Drawing.Size(82, 40);
     this.buttonLimpiar.TabIndex  = 12;
     this.buttonLimpiar.Text      = "Limpiar";
     this.buttonLimpiar.UseVisualStyleBackColor = false;
     this.buttonLimpiar.Click += new System.EventHandler(this.buttonLimpiar_Click);
     //
     // buttonGuardar
     //
     this.buttonGuardar.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(11)))), ((int)(((byte)(83)))), ((int)(((byte)(69)))));
     this.buttonGuardar.FlatAppearance.CheckedBackColor = System.Drawing.SystemColors.HotTrack;
     this.buttonGuardar.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.buttonGuardar.Font      = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonGuardar.ForeColor = System.Drawing.Color.White;
     this.buttonGuardar.Location  = new System.Drawing.Point(12, 6);
     this.buttonGuardar.Name      = "buttonGuardar";
     this.buttonGuardar.Size      = new System.Drawing.Size(90, 40);
     this.buttonGuardar.TabIndex  = 11;
     this.buttonGuardar.Text      = "Guardar";
     this.buttonGuardar.UseVisualStyleBackColor = false;
     this.buttonGuardar.Click += new System.EventHandler(this.buttonGuardar_Click);
     //
     // cFMTU110010
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(800, 450);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.panel1);
     this.Name    = "cFMTU110010";
     this.Load   += new System.EventHandler(this.cFRT140010_Load);
     this.Resize += new System.EventHandler(this.cFMTU110010_Resize);
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.panel2.ResumeLayout(false);
     this.tabControl1.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     this.panel3.ResumeLayout(false);
     this.panel3.PerformLayout();
     this.ResumeLayout(false);
 }
        public ElementBox(int userID, int tvshowID, string title, string description, string image, int season, int episode, int status)
        {
            TvshowID      = tvshowID;
            UserID        = userID;
            FlowDirection = FlowDirection.TopDown;
            TvshowID      = tvshowID;

            var Title = new MaterialSkin.Controls.MaterialLabel()
            {
            };

            var Description = new MaterialSkin.Controls.MaterialLabel()
            {
            };

            var Image = new PictureBox()
            {
                ImageLocation = image,
                SizeMode      = PictureBoxSizeMode.StretchImage
            };

            var Season = new MaterialSkin.Controls.MaterialLabel()
            {
            };

            var Episode = new MaterialSkin.Controls.MaterialLabel()
            {
            };

            var Tooltip = new ToolTip()
            {
                AutoPopDelay = 5000,
                InitialDelay = 1000,
                ReshowDelay  = 500,
                ShowAlways   = true
            };

            var EditIcon = new PictureBox()
            {
                SizeMode        = PictureBoxSizeMode.StretchImage,
                Image           = semestra_darbs.Properties.Resources.editv2,
                BackgroundImage = semestra_darbs.Properties.Resources.editv2,
                Height          = 15,
                Width           = 15
            };

            var DeleteIcon = new PictureBox()
            {
                SizeMode        = PictureBoxSizeMode.StretchImage,
                Image           = semestra_darbs.Properties.Resources.delete,
                BackgroundImage = semestra_darbs.Properties.Resources.delete,
                Height          = 15,
                Width           = 15
            };

            //Controls.Add(Season);
            //Controls.Add(Episode);
            //Controls.Add(Title);
            //Controls.Add(Description);
            Controls.Add(Image);
            Controls.Add(EditIcon);
            Controls.Add(DeleteIcon);

            Tooltip.SetToolTip(Image, "Title: " + title + Environment.NewLine + "Description: " + description + Environment.NewLine
                               + "Season: " + season + Environment.NewLine + "Episode: " + episode);


            DeleteIcon.MouseClick += DeleteIcon_MouseClick;
            EditIcon.MouseClick   += EditIcon_MouseClick;
        }
Пример #13
0
 private void InitializeComponent()
 {
     this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
     this.panel2            = new System.Windows.Forms.Panel();
     this.btnCancelar       = new MaterialSkin.Controls.MaterialRaisedButton();
     this.btnAceptar        = new MaterialSkin.Controls.MaterialRaisedButton();
     this.panel1            = new System.Windows.Forms.Panel();
     this.lblPrompt         = new MaterialSkin.Controls.MaterialLabel();
     this.txtDescripcion    = new MaterialSkin.Controls.MaterialSingleLineTextField();
     this.tableLayoutPanel1.SuspendLayout();
     this.panel2.SuspendLayout();
     this.panel1.SuspendLayout();
     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.panel2, 0, 1);
     this.tableLayoutPanel1.Controls.Add(this.panel1, 0, 0);
     this.tableLayoutPanel1.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 27);
     this.tableLayoutPanel1.Name     = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 2;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 62.58065F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 37.41935F));
     this.tableLayoutPanel1.Size     = new System.Drawing.Size(300, 112);
     this.tableLayoutPanel1.TabIndex = 2;
     //
     // panel2
     //
     this.panel2.Controls.Add(this.btnCancelar);
     this.panel2.Controls.Add(this.btnAceptar);
     this.panel2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel2.Location = new System.Drawing.Point(3, 73);
     this.panel2.Name     = "panel2";
     this.panel2.Size     = new System.Drawing.Size(294, 36);
     this.panel2.TabIndex = 1;
     //
     // btnCancelar
     //
     this.btnCancelar.Depth      = 0;
     this.btnCancelar.Location   = new System.Drawing.Point(160, 9);
     this.btnCancelar.MouseState = MaterialSkin.MouseState.HOVER;
     this.btnCancelar.Name       = "btnCancelar";
     this.btnCancelar.Primary    = true;
     this.btnCancelar.Size       = new System.Drawing.Size(75, 23);
     this.btnCancelar.TabIndex   = 1;
     this.btnCancelar.Text       = "Cancelar";
     this.btnCancelar.UseVisualStyleBackColor = true;
     //
     // btnAceptar
     //
     this.btnAceptar.Depth      = 0;
     this.btnAceptar.Location   = new System.Drawing.Point(36, 8);
     this.btnAceptar.MouseState = MaterialSkin.MouseState.HOVER;
     this.btnAceptar.Name       = "btnAceptar";
     this.btnAceptar.Primary    = true;
     this.btnAceptar.Size       = new System.Drawing.Size(75, 23);
     this.btnAceptar.TabIndex   = 0;
     this.btnAceptar.Text       = "Aceptar";
     this.btnAceptar.UseVisualStyleBackColor = true;
     //
     // panel1
     //
     this.panel1.Controls.Add(this.lblPrompt);
     this.panel1.Controls.Add(this.txtDescripcion);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(3, 3);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(294, 64);
     this.panel1.TabIndex = 0;
     //
     // lblPrompt
     //
     this.lblPrompt.AutoSize   = true;
     this.lblPrompt.Depth      = 0;
     this.lblPrompt.Font       = new System.Drawing.Font("Roboto", 11F);
     this.lblPrompt.ForeColor  = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.lblPrompt.Location   = new System.Drawing.Point(8, 5);
     this.lblPrompt.MouseState = MaterialSkin.MouseState.HOVER;
     this.lblPrompt.Name       = "lblPrompt";
     this.lblPrompt.Size       = new System.Drawing.Size(108, 19);
     this.lblPrompt.TabIndex   = 2;
     this.lblPrompt.Text       = "materialLabel1";
     //
     // txtDescripcion
     //
     this.txtDescripcion.Depth                 = 0;
     this.txtDescripcion.Hint                  = "";
     this.txtDescripcion.Location              = new System.Drawing.Point(9, 36);
     this.txtDescripcion.MouseState            = MaterialSkin.MouseState.HOVER;
     this.txtDescripcion.Name                  = "txtDescripcion";
     this.txtDescripcion.PasswordChar          = '\0';
     this.txtDescripcion.SelectedText          = "";
     this.txtDescripcion.SelectionLength       = 0;
     this.txtDescripcion.SelectionStart        = 0;
     this.txtDescripcion.Size                  = new System.Drawing.Size(276, 23);
     this.txtDescripcion.TabIndex              = 1;
     this.txtDescripcion.UseSystemPasswordChar = false;
     //
     // frmInputQuery
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(300, 139);
     this.Controls.Add(this.tableLayoutPanel1);
     this.Name = "frmInputQuery";
     this.tableLayoutPanel1.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.ResumeLayout(false);
 }
Пример #14
0
 /// <summary>
 /// Méthode requise pour la prise en charge du concepteur - ne modifiez pas
 /// le contenu de cette méthode avec l'éditeur de code.
 /// </summary>
 private void InitializeComponent()
 {
     MaterialSkin.Controls.MaterialLabel            materialLabel2;
     MaterialSkin.Controls.MaterialLabel            materialLabel3;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Main));
     this.materialTabControl1 = new MaterialSkin.Controls.MaterialTabControl();
     this.Damage               = new System.Windows.Forms.TabPage();
     this.numericUpDown1       = new System.Windows.Forms.NumericUpDown();
     this.DamageButton         = new MaterialSkin.Controls.MaterialRaisedButton();
     this.materialLabel1       = new MaterialSkin.Controls.MaterialLabel();
     this.About                = new System.Windows.Forms.TabPage();
     this.OnraIMG              = new System.Windows.Forms.PictureBox();
     this.UCLink               = new MaterialSkin.Controls.MaterialLabel();
     this.materialTabSelector1 = new MaterialSkin.Controls.MaterialTabSelector();
     materialLabel2            = new MaterialSkin.Controls.MaterialLabel();
     materialLabel3            = new MaterialSkin.Controls.MaterialLabel();
     this.materialTabControl1.SuspendLayout();
     this.Damage.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).BeginInit();
     this.About.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.OnraIMG)).BeginInit();
     this.SuspendLayout();
     //
     // materialTabControl1
     //
     this.materialTabControl1.Controls.Add(this.Damage);
     this.materialTabControl1.Controls.Add(this.About);
     this.materialTabControl1.Depth         = 0;
     this.materialTabControl1.Location      = new System.Drawing.Point(-1, 74);
     this.materialTabControl1.MouseState    = MaterialSkin.MouseState.HOVER;
     this.materialTabControl1.Name          = "materialTabControl1";
     this.materialTabControl1.SelectedIndex = 0;
     this.materialTabControl1.Size          = new System.Drawing.Size(539, 252);
     this.materialTabControl1.TabIndex      = 0;
     //
     // Damage
     //
     this.Damage.Controls.Add(materialLabel3);
     this.Damage.Controls.Add(materialLabel2);
     this.Damage.Controls.Add(this.numericUpDown1);
     this.Damage.Controls.Add(this.DamageButton);
     this.Damage.Controls.Add(this.materialLabel1);
     this.Damage.Location = new System.Drawing.Point(4, 22);
     this.Damage.Name     = "Damage";
     this.Damage.Padding  = new System.Windows.Forms.Padding(3);
     this.Damage.Size     = new System.Drawing.Size(531, 226);
     this.Damage.TabIndex = 0;
     this.Damage.Text     = "Damage";
     this.Damage.UseVisualStyleBackColor = true;
     //
     // numericUpDown1
     //
     this.numericUpDown1.Location = new System.Drawing.Point(236, 94);
     this.numericUpDown1.Maximum  = new decimal(new int[] {
         25,
         0,
         0,
         0
     });
     this.numericUpDown1.Name     = "numericUpDown1";
     this.numericUpDown1.Size     = new System.Drawing.Size(77, 20);
     this.numericUpDown1.TabIndex = 2;
     //
     // DamageButton
     //
     this.DamageButton.AutoSize                = true;
     this.DamageButton.AutoSizeMode            = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.DamageButton.Depth                   = 0;
     this.DamageButton.Icon                    = null;
     this.DamageButton.Location                = new System.Drawing.Point(319, 84);
     this.DamageButton.MouseState              = MaterialSkin.MouseState.HOVER;
     this.DamageButton.Name                    = "DamageButton";
     this.DamageButton.Primary                 = true;
     this.DamageButton.Size                    = new System.Drawing.Size(71, 36);
     this.DamageButton.TabIndex                = 1;
     this.DamageButton.Text                    = "Modify";
     this.DamageButton.UseVisualStyleBackColor = true;
     this.DamageButton.Click                  += new System.EventHandler(this.DamageButton_Click);
     //
     // materialLabel1
     //
     this.materialLabel1.AutoSize   = true;
     this.materialLabel1.Depth      = 0;
     this.materialLabel1.Font       = new System.Drawing.Font("Roboto", 11F);
     this.materialLabel1.ForeColor  = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.materialLabel1.Location   = new System.Drawing.Point(95, 92);
     this.materialLabel1.MouseState = MaterialSkin.MouseState.HOVER;
     this.materialLabel1.Name       = "materialLabel1";
     this.materialLabel1.Size       = new System.Drawing.Size(135, 19);
     this.materialLabel1.TabIndex   = 0;
     this.materialLabel1.Text       = "Damage multiplier:";
     //
     // About
     //
     this.About.Controls.Add(this.OnraIMG);
     this.About.Controls.Add(this.UCLink);
     this.About.Location = new System.Drawing.Point(4, 22);
     this.About.Name     = "About";
     this.About.Padding  = new System.Windows.Forms.Padding(3);
     this.About.Size     = new System.Drawing.Size(531, 214);
     this.About.TabIndex = 1;
     this.About.Text     = "About";
     this.About.UseVisualStyleBackColor = true;
     //
     // OnraIMG
     //
     this.OnraIMG.Cursor   = System.Windows.Forms.Cursors.Hand;
     this.OnraIMG.Image    = global::Damage_GUI.Properties.Resources.normal_onra2;
     this.OnraIMG.Location = new System.Drawing.Point(177, 40);
     this.OnraIMG.Name     = "OnraIMG";
     this.OnraIMG.Size     = new System.Drawing.Size(165, 177);
     this.OnraIMG.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
     this.OnraIMG.TabIndex = 1;
     this.OnraIMG.TabStop  = false;
     this.OnraIMG.Click   += new System.EventHandler(this.OnraIMG_Click);
     //
     // UCLink
     //
     this.UCLink.AutoSize   = true;
     this.UCLink.Depth      = 0;
     this.UCLink.Font       = new System.Drawing.Font("Roboto", 11F);
     this.UCLink.ForeColor  = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.UCLink.Location   = new System.Drawing.Point(37, 3);
     this.UCLink.MouseState = MaterialSkin.MouseState.HOVER;
     this.UCLink.Name       = "UCLink";
     this.UCLink.Size       = new System.Drawing.Size(452, 19);
     this.UCLink.TabIndex   = 0;
     this.UCLink.Text       = "This tool was created by Onra2 for http://www.unknowncheats.me";
     this.UCLink.Click     += new System.EventHandler(this.UCLink_Click);
     //
     // materialTabSelector1
     //
     this.materialTabSelector1.BaseTabControl = this.materialTabControl1;
     this.materialTabSelector1.Depth          = 0;
     this.materialTabSelector1.Location       = new System.Drawing.Point(-1, 52);
     this.materialTabSelector1.MouseState     = MaterialSkin.MouseState.HOVER;
     this.materialTabSelector1.Name           = "materialTabSelector1";
     this.materialTabSelector1.Size           = new System.Drawing.Size(539, 23);
     this.materialTabSelector1.TabIndex       = 1;
     this.materialTabSelector1.Text           = "materialTabSelector1";
     //
     // materialLabel2
     //
     materialLabel2.AutoSize   = true;
     materialLabel2.Depth      = 0;
     materialLabel2.Font       = new System.Drawing.Font("Roboto", 11F);
     materialLabel2.ForeColor  = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     materialLabel2.Location   = new System.Drawing.Point(6, 182);
     materialLabel2.MouseState = MaterialSkin.MouseState.HOVER;
     materialLabel2.Name       = "materialLabel2";
     materialLabel2.Size       = new System.Drawing.Size(426, 19);
     materialLabel2.TabIndex   = 3;
     materialLabel2.Text       = "Higher values have a higher chance of making the game crash.";
     //
     // materialLabel3
     //
     materialLabel3.AutoSize   = true;
     materialLabel3.Depth      = 0;
     materialLabel3.Font       = new System.Drawing.Font("Roboto", 11F);
     materialLabel3.ForeColor  = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     materialLabel3.Location   = new System.Drawing.Point(6, 200);
     materialLabel3.MouseState = MaterialSkin.MouseState.HOVER;
     materialLabel3.Name       = "materialLabel3";
     materialLabel3.Size       = new System.Drawing.Size(302, 19);
     materialLabel3.TabIndex   = 4;
     materialLabel3.Text       = "It is recommended to set it around 10 to 15.";
     //
     // Main
     //
     this.AcceptButton        = this.DamageButton;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(537, 314);
     this.Controls.Add(this.materialTabSelector1);
     this.Controls.Add(this.materialTabControl1);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox   = false;
     this.Name          = "Main";
     this.Sizable       = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Onra2\'s Damage modifier (SWBF2)";
     this.materialTabControl1.ResumeLayout(false);
     this.Damage.ResumeLayout(false);
     this.Damage.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).EndInit();
     this.About.ResumeLayout(false);
     this.About.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.OnraIMG)).EndInit();
     this.ResumeLayout(false);
 }
Пример #15
0
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
     this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
     this.materialLabel2    = new MaterialSkin.Controls.MaterialLabel();
     this.lblMusicName      = new MaterialSkin.Controls.MaterialLabel();
     this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
     this.lblListens        = new MaterialSkin.Controls.MaterialLabel();
     this.lblIconMusic      = new MaterialSkin.Controls.MaterialLabel();
     this.materialLabel1    = new MaterialSkin.Controls.MaterialLabel();
     this.pnlSingers        = new System.Windows.Forms.Panel();
     this.tableLayoutPanel1.SuspendLayout();
     this.tableLayoutPanel2.SuspendLayout();
     this.tableLayoutPanel3.SuspendLayout();
     this.SuspendLayout();
     //
     // tableLayoutPanel1
     //
     this.tableLayoutPanel1.BackColor   = System.Drawing.SystemColors.Control;
     this.tableLayoutPanel1.ColumnCount = 1;
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     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.Name     = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 2;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel1.Size     = new System.Drawing.Size(476, 57);
     this.tableLayoutPanel1.TabIndex = 0;
     //
     // tableLayoutPanel2
     //
     this.tableLayoutPanel2.BackColor   = System.Drawing.Color.White;
     this.tableLayoutPanel2.ColumnCount = 2;
     this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 37F));
     this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel2.Controls.Add(this.materialLabel2, 0, 0);
     this.tableLayoutPanel2.Controls.Add(this.lblMusicName, 1, 0);
     this.tableLayoutPanel2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel2.Location = new System.Drawing.Point(0, 0);
     this.tableLayoutPanel2.Margin   = new System.Windows.Forms.Padding(0);
     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(476, 28);
     this.tableLayoutPanel2.TabIndex = 0;
     //
     // materialLabel2
     //
     this.materialLabel2.Depth      = 0;
     this.materialLabel2.Dock       = System.Windows.Forms.DockStyle.Fill;
     this.materialLabel2.Font       = new System.Drawing.Font("Roboto", 11F);
     this.materialLabel2.ForeColor  = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.materialLabel2.Image      = global::CustomControls.resrouce.play_arrow;
     this.materialLabel2.Location   = new System.Drawing.Point(0, 0);
     this.materialLabel2.Margin     = new System.Windows.Forms.Padding(0);
     this.materialLabel2.MouseState = MaterialSkin.MouseState.HOVER;
     this.materialLabel2.Name       = "materialLabel2";
     this.materialLabel2.Size       = new System.Drawing.Size(37, 28);
     this.materialLabel2.TabIndex   = 2;
     //
     // lblMusicName
     //
     this.lblMusicName.Depth       = 0;
     this.lblMusicName.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.lblMusicName.Font        = new System.Drawing.Font("Roboto", 11F);
     this.lblMusicName.ForeColor   = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.lblMusicName.Location    = new System.Drawing.Point(40, 0);
     this.lblMusicName.MouseState  = MaterialSkin.MouseState.HOVER;
     this.lblMusicName.Name        = "lblMusicName";
     this.lblMusicName.Size        = new System.Drawing.Size(433, 28);
     this.lblMusicName.TabIndex    = 3;
     this.lblMusicName.Text        = "Music Name";
     this.lblMusicName.TextAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     this.lblMusicName.Click      += new System.EventHandler(this.LblMusicNameClick);
     this.lblMusicName.MouseEnter += new System.EventHandler(this.LblMusicNameMouseEnter);
     this.lblMusicName.MouseLeave += new System.EventHandler(this.LblMusicNameMouseLeave);
     //
     // tableLayoutPanel3
     //
     this.tableLayoutPanel3.BackColor   = System.Drawing.Color.White;
     this.tableLayoutPanel3.ColumnCount = 4;
     this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 37F));
     this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 70F));
     this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 37F));
     this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 30F));
     this.tableLayoutPanel3.Controls.Add(this.lblListens, 3, 0);
     this.tableLayoutPanel3.Controls.Add(this.lblIconMusic, 0, 0);
     this.tableLayoutPanel3.Controls.Add(this.materialLabel1, 2, 0);
     this.tableLayoutPanel3.Controls.Add(this.pnlSingers, 1, 0);
     this.tableLayoutPanel3.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel3.Location = new System.Drawing.Point(0, 28);
     this.tableLayoutPanel3.Margin   = new System.Windows.Forms.Padding(0);
     this.tableLayoutPanel3.Name     = "tableLayoutPanel3";
     this.tableLayoutPanel3.RowCount = 1;
     this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel3.Size     = new System.Drawing.Size(476, 29);
     this.tableLayoutPanel3.TabIndex = 1;
     //
     // lblListens
     //
     this.lblListens.Depth      = 0;
     this.lblListens.Dock       = System.Windows.Forms.DockStyle.Fill;
     this.lblListens.Font       = new System.Drawing.Font("Roboto", 11F);
     this.lblListens.ForeColor  = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.lblListens.Location   = new System.Drawing.Point(358, 0);
     this.lblListens.MouseState = MaterialSkin.MouseState.HOVER;
     this.lblListens.Name       = "lblListens";
     this.lblListens.Size       = new System.Drawing.Size(115, 29);
     this.lblListens.TabIndex   = 5;
     this.lblListens.Text       = "Listen";
     this.lblListens.TextAlign  = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lblIconMusic
     //
     this.lblIconMusic.Depth      = 0;
     this.lblIconMusic.Dock       = System.Windows.Forms.DockStyle.Fill;
     this.lblIconMusic.Font       = new System.Drawing.Font("Roboto", 11F);
     this.lblIconMusic.ForeColor  = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.lblIconMusic.Image      = global::CustomControls.resrouce.voice_message_microphone_button;
     this.lblIconMusic.Location   = new System.Drawing.Point(0, 0);
     this.lblIconMusic.Margin     = new System.Windows.Forms.Padding(0);
     this.lblIconMusic.MouseState = MaterialSkin.MouseState.HOVER;
     this.lblIconMusic.Name       = "lblIconMusic";
     this.lblIconMusic.Size       = new System.Drawing.Size(37, 29);
     this.lblIconMusic.TabIndex   = 0;
     //
     // materialLabel1
     //
     this.materialLabel1.Depth      = 0;
     this.materialLabel1.Dock       = System.Windows.Forms.DockStyle.Fill;
     this.materialLabel1.Font       = new System.Drawing.Font("Roboto", 11F);
     this.materialLabel1.ForeColor  = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.materialLabel1.Image      = global::CustomControls.resrouce.headset_with_microphone;
     this.materialLabel1.Location   = new System.Drawing.Point(318, 0);
     this.materialLabel1.Margin     = new System.Windows.Forms.Padding(0);
     this.materialLabel1.MouseState = MaterialSkin.MouseState.HOVER;
     this.materialLabel1.Name       = "materialLabel1";
     this.materialLabel1.Size       = new System.Drawing.Size(37, 29);
     this.materialLabel1.TabIndex   = 1;
     //
     // pnlSingers
     //
     this.pnlSingers.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.pnlSingers.Location = new System.Drawing.Point(37, 0);
     this.pnlSingers.Margin   = new System.Windows.Forms.Padding(0);
     this.pnlSingers.Name     = "pnlSingers";
     this.pnlSingers.Size     = new System.Drawing.Size(281, 29);
     this.pnlSingers.TabIndex = 6;
     //
     // CustomMusicItem
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor           = System.Drawing.SystemColors.ActiveCaption;
     this.Controls.Add(this.tableLayoutPanel1);
     this.Margin  = new System.Windows.Forms.Padding(0);
     this.Name    = "CustomMusicItem";
     this.Padding = new System.Windows.Forms.Padding(0, 0, 0, 2);
     this.Size    = new System.Drawing.Size(476, 59);
     this.tableLayoutPanel1.ResumeLayout(false);
     this.tableLayoutPanel2.ResumeLayout(false);
     this.tableLayoutPanel3.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Пример #16
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     MaterialSkin.Controls.MaterialLabel materialLabel4;
     this.groupBox1             = new System.Windows.Forms.GroupBox();
     this.materialLabel1        = new MaterialSkin.Controls.MaterialLabel();
     this.materialLabel2        = new MaterialSkin.Controls.MaterialLabel();
     this.materialRaisedButton1 = new MaterialSkin.Controls.MaterialRaisedButton();
     this.BtnGetUserID          = new MaterialSkin.Controls.MaterialRaisedButton();
     this.IdUserInput           = new MaterialSkin.Controls.MaterialLabel();
     this.UserLink              = new MaterialSkin.Controls.MaterialSingleLineTextField();
     this.WelcomeLabel          = new System.Windows.Forms.Label();
     this.aTimer                = new System.Windows.Forms.Timer(this.components);
     this.Divisor               = new MaterialSkin.Controls.MaterialRaisedButton();
     this.groupBox2             = new System.Windows.Forms.GroupBox();
     this.materialLabel6        = new MaterialSkin.Controls.MaterialLabel();
     this.materialLabel5        = new MaterialSkin.Controls.MaterialLabel();
     this.materialRaisedButton2 = new MaterialSkin.Controls.MaterialRaisedButton();
     this.materialLabel3        = new MaterialSkin.Controls.MaterialLabel();
     this.userIDtoUnban         = new MaterialSkin.Controls.MaterialSingleLineTextField();
     this.groupID               = new MaterialSkin.Controls.MaterialSingleLineTextField();
     materialLabel4             = new MaterialSkin.Controls.MaterialLabel();
     this.groupBox1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.SuspendLayout();
     //
     // materialLabel4
     //
     materialLabel4.Depth      = 0;
     materialLabel4.Font       = new System.Drawing.Font("Roboto", 11F);
     materialLabel4.ForeColor  = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     materialLabel4.Location   = new System.Drawing.Point(330, 31);
     materialLabel4.MouseState = MaterialSkin.MouseState.HOVER;
     materialLabel4.Name       = "materialLabel4";
     materialLabel4.Size       = new System.Drawing.Size(18, 22);
     materialLabel4.TabIndex   = 7;
     materialLabel4.Text       = "+";
     materialLabel4.TextAlign  = System.Drawing.ContentAlignment.BottomLeft;
     //
     // groupBox1
     //
     this.groupBox1.BackColor = System.Drawing.Color.White;
     this.groupBox1.Controls.Add(this.materialLabel1);
     this.groupBox1.Controls.Add(this.materialLabel2);
     this.groupBox1.Controls.Add(this.materialRaisedButton1);
     this.groupBox1.Controls.Add(this.BtnGetUserID);
     this.groupBox1.Controls.Add(this.IdUserInput);
     this.groupBox1.Controls.Add(this.UserLink);
     this.groupBox1.Location = new System.Drawing.Point(23, 189);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(664, 125);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop  = false;
     //
     // materialLabel1
     //
     this.materialLabel1.Depth      = 0;
     this.materialLabel1.Font       = new System.Drawing.Font("Roboto", 11F);
     this.materialLabel1.ForeColor  = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.materialLabel1.Location   = new System.Drawing.Point(247, -4);
     this.materialLabel1.MouseState = MaterialSkin.MouseState.HOVER;
     this.materialLabel1.Name       = "materialLabel1";
     this.materialLabel1.Size       = new System.Drawing.Size(175, 22);
     this.materialLabel1.TabIndex   = 4;
     this.materialLabel1.Text       = "Get User ID / Group ID";
     this.materialLabel1.TextAlign  = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // materialLabel2
     //
     this.materialLabel2.Depth      = 0;
     this.materialLabel2.Font       = new System.Drawing.Font("Roboto", 11F);
     this.materialLabel2.ForeColor  = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.materialLabel2.Location   = new System.Drawing.Point(390, 39);
     this.materialLabel2.MouseState = MaterialSkin.MouseState.HOVER;
     this.materialLabel2.Name       = "materialLabel2";
     this.materialLabel2.Size       = new System.Drawing.Size(52, 22);
     this.materialLabel2.TabIndex   = 6;
     this.materialLabel2.Text       = "=    ID:";
     this.materialLabel2.TextAlign  = System.Drawing.ContentAlignment.BottomLeft;
     //
     // materialRaisedButton1
     //
     this.materialRaisedButton1.Depth      = 0;
     this.materialRaisedButton1.Location   = new System.Drawing.Point(589, 34);
     this.materialRaisedButton1.MouseState = MaterialSkin.MouseState.HOVER;
     this.materialRaisedButton1.Name       = "materialRaisedButton1";
     this.materialRaisedButton1.Primary    = true;
     this.materialRaisedButton1.Size       = new System.Drawing.Size(45, 27);
     this.materialRaisedButton1.TabIndex   = 5;
     this.materialRaisedButton1.Text       = "Copy";
     this.materialRaisedButton1.UseVisualStyleBackColor = true;
     this.materialRaisedButton1.Click += new System.EventHandler(this.materialRaisedButton1_Click);
     //
     // BtnGetUserID
     //
     this.BtnGetUserID.Depth      = 0;
     this.BtnGetUserID.Location   = new System.Drawing.Point(145, 83);
     this.BtnGetUserID.MouseState = MaterialSkin.MouseState.HOVER;
     this.BtnGetUserID.Name       = "BtnGetUserID";
     this.BtnGetUserID.Primary    = true;
     this.BtnGetUserID.Size       = new System.Drawing.Size(396, 27);
     this.BtnGetUserID.TabIndex   = 2;
     this.BtnGetUserID.Text       = "GO";
     this.BtnGetUserID.UseVisualStyleBackColor = true;
     this.BtnGetUserID.Click += new System.EventHandler(this.BtnGetUserID_Click);
     //
     // IdUserInput
     //
     this.IdUserInput.Depth      = 0;
     this.IdUserInput.Font       = new System.Drawing.Font("Roboto", 11F);
     this.IdUserInput.ForeColor  = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.IdUserInput.Location   = new System.Drawing.Point(442, 39);
     this.IdUserInput.MouseState = MaterialSkin.MouseState.HOVER;
     this.IdUserInput.Name       = "IdUserInput";
     this.IdUserInput.Size       = new System.Drawing.Size(141, 22);
     this.IdUserInput.TabIndex   = 3;
     this.IdUserInput.Text       = "0000000000000000";
     this.IdUserInput.TextAlign  = System.Drawing.ContentAlignment.BottomLeft;
     //
     // UserLink
     //
     this.UserLink.Depth                 = 0;
     this.UserLink.Hint                  = "";
     this.UserLink.Location              = new System.Drawing.Point(67, 42);
     this.UserLink.MouseState            = MaterialSkin.MouseState.HOVER;
     this.UserLink.Name                  = "UserLink";
     this.UserLink.PasswordChar          = '\0';
     this.UserLink.SelectedText          = "";
     this.UserLink.SelectionLength       = 0;
     this.UserLink.SelectionStart        = 0;
     this.UserLink.Size                  = new System.Drawing.Size(317, 23);
     this.UserLink.TabIndex              = 0;
     this.UserLink.Text                  = "https://www.facebook.com/ThoseEmptyWalls";
     this.UserLink.UseSystemPasswordChar = false;
     //
     // WelcomeLabel
     //
     this.WelcomeLabel.BackColor = System.Drawing.SystemColors.ButtonFace;
     this.WelcomeLabel.Font      = new System.Drawing.Font("Microsoft YaHei", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.WelcomeLabel.Location  = new System.Drawing.Point(-1, 75);
     this.WelcomeLabel.Name      = "WelcomeLabel";
     this.WelcomeLabel.Size      = new System.Drawing.Size(716, 45);
     this.WelcomeLabel.TabIndex  = 2;
     this.WelcomeLabel.Text      = "Aguardando usuário";
     this.WelcomeLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // aTimer
     //
     this.aTimer.Tick += new System.EventHandler(this.aTimer_Tick);
     //
     // Divisor
     //
     this.Divisor.Depth      = 0;
     this.Divisor.Enabled    = false;
     this.Divisor.Location   = new System.Drawing.Point(-5, 131);
     this.Divisor.MouseState = MaterialSkin.MouseState.HOVER;
     this.Divisor.Name       = "Divisor";
     this.Divisor.Primary    = true;
     this.Divisor.Size       = new System.Drawing.Size(721, 26);
     this.Divisor.TabIndex   = 6;
     this.Divisor.UseVisualStyleBackColor = true;
     //
     // groupBox2
     //
     this.groupBox2.BackColor = System.Drawing.Color.White;
     this.groupBox2.Controls.Add(this.materialLabel6);
     this.groupBox2.Controls.Add(this.materialLabel5);
     this.groupBox2.Controls.Add(materialLabel4);
     this.groupBox2.Controls.Add(this.materialRaisedButton2);
     this.groupBox2.Controls.Add(this.materialLabel3);
     this.groupBox2.Controls.Add(this.userIDtoUnban);
     this.groupBox2.Controls.Add(this.groupID);
     this.groupBox2.Location = new System.Drawing.Point(23, 329);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(664, 142);
     this.groupBox2.TabIndex = 7;
     this.groupBox2.TabStop  = false;
     //
     // materialLabel6
     //
     this.materialLabel6.Depth      = 0;
     this.materialLabel6.Font       = new System.Drawing.Font("Roboto", 11F);
     this.materialLabel6.ForeColor  = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.materialLabel6.Location   = new System.Drawing.Point(406, 59);
     this.materialLabel6.MouseState = MaterialSkin.MouseState.HOVER;
     this.materialLabel6.Name       = "materialLabel6";
     this.materialLabel6.Size       = new System.Drawing.Size(106, 22);
     this.materialLabel6.TabIndex   = 11;
     this.materialLabel6.Text       = "UserID";
     this.materialLabel6.TextAlign  = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // materialLabel5
     //
     this.materialLabel5.Depth      = 0;
     this.materialLabel5.Font       = new System.Drawing.Font("Roboto", 11F);
     this.materialLabel5.ForeColor  = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.materialLabel5.Location   = new System.Drawing.Point(164, 59);
     this.materialLabel5.MouseState = MaterialSkin.MouseState.HOVER;
     this.materialLabel5.Name       = "materialLabel5";
     this.materialLabel5.Size       = new System.Drawing.Size(106, 22);
     this.materialLabel5.TabIndex   = 10;
     this.materialLabel5.Text       = "Group ID";
     this.materialLabel5.TextAlign  = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // materialRaisedButton2
     //
     this.materialRaisedButton2.Depth      = 0;
     this.materialRaisedButton2.Location   = new System.Drawing.Point(145, 101);
     this.materialRaisedButton2.MouseState = MaterialSkin.MouseState.HOVER;
     this.materialRaisedButton2.Name       = "materialRaisedButton2";
     this.materialRaisedButton2.Primary    = true;
     this.materialRaisedButton2.Size       = new System.Drawing.Size(396, 27);
     this.materialRaisedButton2.TabIndex   = 7;
     this.materialRaisedButton2.Text       = "UNBAN";
     this.materialRaisedButton2.UseVisualStyleBackColor = true;
     this.materialRaisedButton2.Click += new System.EventHandler(this.materialRaisedButton2_Click);
     //
     // materialLabel3
     //
     this.materialLabel3.Depth      = 0;
     this.materialLabel3.Font       = new System.Drawing.Font("Roboto", 11F);
     this.materialLabel3.ForeColor  = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.materialLabel3.Location   = new System.Drawing.Point(244, -3);
     this.materialLabel3.MouseState = MaterialSkin.MouseState.HOVER;
     this.materialLabel3.Name       = "materialLabel3";
     this.materialLabel3.Size       = new System.Drawing.Size(186, 22);
     this.materialLabel3.TabIndex   = 4;
     this.materialLabel3.Text       = "Unban User From Group";
     this.materialLabel3.TextAlign  = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // userIDtoUnban
     //
     this.userIDtoUnban.Depth                 = 0;
     this.userIDtoUnban.Hint                  = "";
     this.userIDtoUnban.Location              = new System.Drawing.Point(381, 33);
     this.userIDtoUnban.MouseState            = MaterialSkin.MouseState.HOVER;
     this.userIDtoUnban.Name                  = "userIDtoUnban";
     this.userIDtoUnban.PasswordChar          = '\0';
     this.userIDtoUnban.SelectedText          = "";
     this.userIDtoUnban.SelectionLength       = 0;
     this.userIDtoUnban.SelectionStart        = 0;
     this.userIDtoUnban.Size                  = new System.Drawing.Size(146, 23);
     this.userIDtoUnban.TabIndex              = 9;
     this.userIDtoUnban.UseSystemPasswordChar = false;
     this.userIDtoUnban.KeyPress             += new System.Windows.Forms.KeyPressEventHandler(this.userIDtoUnban_KeyPress);
     //
     // groupID
     //
     this.groupID.Depth                 = 0;
     this.groupID.Hint                  = "";
     this.groupID.Location              = new System.Drawing.Point(145, 33);
     this.groupID.MouseState            = MaterialSkin.MouseState.HOVER;
     this.groupID.Name                  = "groupID";
     this.groupID.PasswordChar          = '\0';
     this.groupID.SelectedText          = "";
     this.groupID.SelectionLength       = 0;
     this.groupID.SelectionStart        = 0;
     this.groupID.Size                  = new System.Drawing.Size(146, 23);
     this.groupID.TabIndex              = 7;
     this.groupID.UseSystemPasswordChar = false;
     this.groupID.KeyPress             += new System.Windows.Forms.KeyPressEventHandler(this.groupID_KeyPress);
     //
     // frmMain
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(711, 490);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.Divisor);
     this.Controls.Add(this.WelcomeLabel);
     this.Controls.Add(this.groupBox1);
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "frmMain";
     this.Sizable       = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "FBM";
     this.TopMost       = true;
     this.FormClosed   += new System.Windows.Forms.FormClosedEventHandler(this.frmMain_FormClosed);
     this.Load         += new System.EventHandler(this.frmMain_Load);
     this.groupBox1.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.ResumeLayout(false);
 }