示例#1
0
 private void init_titles()
 {
     titles = new List <Bunifu.Framework.UI.BunifuCustomLabel>();
     for (int i = 0; i < TITLES.Length; i++)
     {
         Bunifu.Framework.UI.BunifuCustomLabel l = new Bunifu.Framework.UI.BunifuCustomLabel();
         l.BackColor   = Color.Transparent;
         l.AutoSize    = false;
         l.Font        = new Font(TEXT_FONT, TEXT_SIZE, FontStyle.Bold);
         l.ForeColor   = Color.Snow;
         l.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
         l.Text        = TITLES[i];
         l.TextAlign   = ContentAlignment.MiddleCenter;
         l.Width       = WIDTHS_TITLES[i];
         l.Height      = HEIGHT_ROW;
         titles.Add(l);
         if (i == 0)
         {
             l.Location = new Point(COL_SPACE, 0);
         }
         else
         {
             l.Location = new Point(titles.ElementAt(i - 1).Location.X + titles.ElementAt(i - 1).Width + COL_SPACE, 0);
         }
         panel.Controls.Add(l);
         l.SendToBack();
     }
 }
        public static bool TryLogin(string username, string password, Bunifu.Framework.UI.BunifuCustomLabel label)
        {
            try {
                if ((username == string.Empty) || (password == string.Empty))
                {
                    label.Text      = "Credenziali errate. Riprovare.";
                    label.ForeColor = Color.Red;
                }

                cmd = new OleDbCommand("select count(*) from logins where username='******' AND password='******'", con);
                if (con.State == System.Data.ConnectionState.Closed)
                {
                    con.Open();
                    i = (int)cmd.ExecuteScalar();
                }
                con.Close();
                if (i > 0)
                {
                    return(true);
                }
                else
                {
                    return(false);
                }
            }
            catch (Exception ex) {
                MessageBox.Show(ex.ToString());
                return(false);
            };
        }
示例#3
0
 private void creation_lien_router(Router A)
 {
     foreach (Router B in Machine.get_LesRouter())
     {
         if (A.get_RouterID() != B.get_RouterID())
         {
             foreach (Lien lien in A.get_ConnecxionsRouter())
             {
                 if ((lien.get_extrem1() == A.get_RouterID() && lien.get_extrem2() == B.get_RouterID()))
                 {
                     Dessiner_Lien(A.get_FaceRouter(), B.get_FaceRouter());
                     Bunifu.Framework.UI.BunifuCustomLabel RouterLinkLabel = new Bunifu.Framework.UI.BunifuCustomLabel();
                     RouterLinkLabel.Tag       = "oneTime";
                     RouterLinkLabel.Text      = "" + lien.get_cout() + "";
                     RouterLinkLabel.BackColor = Color.Transparent;
                     RouterLinkLabel.AutoSize  = false;
                     RouterLinkLabel.Width     = 22;
                     RouterLinkLabel.Height    = 15;
                     RouterLinkLabel.BringToFront();
                     RouterLinkLabel.Location = new Point((A.get_FaceRouter().Location.X + (A.get_FaceRouter().Size.Width / 2) + B.get_FaceRouter().Location.X + (B.get_FaceRouter().Size.Width / 2)) / 2 - 5, (A.get_FaceRouter().Location.Y + (A.get_FaceRouter().Size.Height / 2) + B.get_FaceRouter().Location.Y + (B.get_FaceRouter().Size.Height / 2)) / 2 - 6);
                     listeLabel.Add(RouterLinkLabel);
                     espaceRouter.Controls.Add(RouterLinkLabel);
                 }
             }
         }
     }
 }
示例#4
0
 Bunifu.Framework.UI.BunifuCustomLabel getNewLabel(int x, int y, string text)
 {
     Bunifu.Framework.UI.BunifuCustomLabel temp = new Bunifu.Framework.UI.BunifuCustomLabel();
     temp.Location = new Point(x, y);
     temp.Text     = text;
     temp.AutoSize = true;
     return(temp);
 }
示例#5
0
        int getWebsitePriceFromPanel(Control control)
        {
            string ret = "";

            Bunifu.Framework.UI.BunifuCustomLabel label = (Bunifu.Framework.UI.BunifuCustomLabel)control.Controls[1];
            ret = label.Text.Substring("price : ".Length);
            return(int.Parse(ret));
        }
示例#6
0
        string getWebsiteNameFromPanel(Control control)
        {
            string ret = "";

            Bunifu.Framework.UI.BunifuCustomLabel label = (Bunifu.Framework.UI.BunifuCustomLabel)control.Controls[0];
            ret = label.Text.Substring("website name : ".Length);
            return(ret);
        }
示例#7
0
        private void CreateDashboardLabel()
        {
            lblComing           = new Bunifu.Framework.UI.BunifuCustomLabel();
            lblComing.Text      = "Comming Soon!";
            lblComing.Font      = new Font("Microsoft Sans Serif", 15);
            lblComing.AutoSize  = true;
            lblComing.ForeColor = Color.DarkGray;
            lblComing.Location  = new Point((pnl_Home.Width / 2) - (lblComing.Width / 2), (pnl_Home.Height / 2) - (lblComing.Height / 2));

            pnl_Home.Controls.Add(lblComing);
        }
示例#8
0
        /// <summary>
        /// tilebuttonVisiable委托赋值函数
        /// </summary>
        /// <param name="tileButton"></param>
        /// <param name="isVisable"></param>
        private void SetMessageLabel(Bunifu.Framework.UI.BunifuCustomLabel label, string message)
        {
            if (label.InvokeRequired)
            {
                setMessageLabel setThis = new setMessageLabel(SetMessageLabel);

                label.Invoke(setThis, label, message);
            }
            else
            {
                label.Text = message;
            }
        }
示例#9
0
        private Bunifu.Framework.UI.BunifuCustomLabel initLables(Bunifu.Framework.UI.BunifuCustomLabel lbl, TYPES type)
        {
            if (lbl == null)
            {
                lbl = new Bunifu.Framework.UI.BunifuCustomLabel();
            }
            lbl.BackColor = Color.Transparent;
            lbl.ForeColor = Color.Snow;
            lbl.Font      = new Font(TEXT_FONT, TEXT_SIZE, FontStyle.Bold);
            lbl.AutoSize  = false;
            lbl.Height    = HEIGHT_ROW - 10;

            lbl.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            lbl.TextAlign   = ContentAlignment.MiddleCenter;
            switch (type)
            {
            case TYPES.DATE:
                lbl.Width = (int)WIDTHS.DATE;     //
                if (datetime == null)
                {
                    lbl.Text = "dd/MM/yyyy";
                }
                else
                {
                    lbl.Text = datetime.ToString("dd/MM/yyyy");
                }
                break;

            case TYPES.TIME:
                lbl.Width = (int)WIDTHS.TIME;     //
                if (datetime == null)
                {
                    lbl.Text = "HH:mm";
                }
                else
                {
                    lbl.Text = datetime.ToString("HH:mm:ss");
                }
                break;

            case TYPES.NUMBER:
                lbl.Width = (int)WIDTHS.NUMBER;     //
                lbl.Text  = "0.";
                break;

            default:
                break;
            }
            return(lbl);
        }
示例#10
0
 private void afficher_machine(Router A)
 {
     espaceRouter.Controls.Add(A.get_FaceRouter());
     Machine.listeInterfaces.Add(A.get_FaceRouter());
     A.get_FaceRouter().Load();
     Bunifu.Framework.UI.BunifuCustomLabel RouterName = new Bunifu.Framework.UI.BunifuCustomLabel();
     RouterName.Tag       = "oneTime";
     RouterName.BackColor = Color.Transparent;
     RouterName.Text      = A.get_RouterID();
     RouterName.AutoSize  = false;
     RouterName.Width     = 60;
     RouterName.Height    = 15;
     RouterName.Location  = new Point(A.get_FaceRouter().Location.X + (A.get_FaceRouter().Size.Width / 2) - 25, A.get_FaceRouter().Location.Y + A.get_FaceRouter().Size.Height);
     listeLabel.Add(RouterName);
     espaceRouter.Controls.Add(RouterName);
 }
示例#11
0
        void loadButton1()
        {
            DataTable data = DataProviderDAO.Instance.ExecuteQuery("SELECT Rooms.id 'idroom',Rooms.name 'roomname',Departments.name 'departmentname',RANK() OVER(PARTITION BY Rooms.departmentid ORDER BY dbo.Rooms.name) '#' FROM dbo.Rooms JOIN dbo.Departments ON Departments.id = Rooms.departmentid");

            string department = null;

            for (int i = 0; i < data.Rows.Count; i++)
            {
                //create lb
                Bunifu.Framework.UI.BunifuCustomLabel lb = new Bunifu.Framework.UI.BunifuCustomLabel();
                lb.Font      = new Font("Segoe UI ", 11, FontStyle.Bold);
                lb.ForeColor = Color.FromArgb(52, 73, 94);
                lb.Size      = new Size(150, 100);
                lb.Text      = data.Rows[i][2].ToString();
                //create button
                Bunifu.Framework.UI.BunifuTileButton button = new Bunifu.Framework.UI.BunifuTileButton();
                button.Tag           = data.Rows[i][0];
                button.Size          = new Size(150, 100);
                button.Margin        = new Padding(5, 5, 5, 5);
                button.LabelText     = $"{data.Rows[i][1]}";
                button.Font          = new Font("Segoe UI ", 11, FontStyle.Bold);
                button.ImageZoom     = 0;
                button.LabelPosition = 50;
                //  button.Image = RFID_RoomManage.Properties.Resources.unchecked_checkbox_filled_50p11x;
                button.BackColor   = Color.FromArgb(241, 196, 15);
                button.colorActive = Color.FromArgb(243, 156, 18);
                button.color       = Color.FromArgb(241, 196, 15);

                //   button.ContextMenuStrip = contextMenuStrip1;
                if (i < data.Rows.Count - 1)
                {
                    if (department != data.Rows[i + 1][2].ToString() && int.Parse(data.Rows[i][3].ToString()) != 1 && department != null)
                    {
                        flowLayoutPanel1.SetFlowBreak(button, true);
                    }
                }

                if (lb.Text != department)
                {
                    flowLayoutPanel1.Controls.Add(lb);
                }
                flowLayoutPanel1.Controls.Add(button);
                department = data.Rows[i][2].ToString();
            }
        }
        public static void ResetPassword(string new_password, Bunifu.Framework.UI.BunifuCustomLabel label)
        {
            //string query = "update logins set password='******' where username=admin";
            string query = "UPDATE logins SET [password]='" + Crypter.Encrypt(new_password) + "' WHERE username='******'";

            cmd.CommandType = System.Data.CommandType.Text;

            cmd = new OleDbCommand(query, con);
            con.Open();
            try {
                cmd.ExecuteNonQuery();
            }
            catch (Exception ex) {
                MessageBox.Show(ex.Message, "Errore");
                label.Text      = "Errore! Password non modificata.";
                label.ForeColor = Color.Red;
            }
            finally {
                label.Text      = "Password modificata, Accedere!";
                label.ForeColor = Color.Green;
            }

            con.Close();
        }
示例#13
0
 private Bunifu.Framework.UI.BunifuCustomLabel initMessage(Bunifu.Framework.UI.BunifuCustomLabel lbl, string message)
 {
     if (lbl == null)
     {
         lbl = new Bunifu.Framework.UI.BunifuCustomLabel();
     }
     lbl.BackColor   = Color.Transparent;
     lbl.ForeColor   = Color.Snow;
     lbl.Font        = new Font(TEXT_FONT, TEXT_SIZE + 10, FontStyle.Bold);
     lbl.AutoSize    = false;
     lbl.Height      = HEIGHT_ROW - 10;
     lbl.Text        = message;
     lbl.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     lbl.Width       = panel.Width;
     lbl.TextAlign   = ContentAlignment.MiddleCenter;
     lbl.Location    = new Point(0, 0);
     lbl.Click      += ((s, e) => {
         deleted = false;
         data = mainForm.dataProgram;
         panel.Controls.Clear();
         addControlsToPanel();
     });
     return(lbl);
 }
示例#14
0
        public static async Task ByChannelDescription(Int64 Min, Int64 Max, Bunifu.Framework.UI.BunifuCustomDataGrid Grid, String Keyword, Bunifu.Framework.UI.BunifuCustomLabel Total)
        {
            Console.WriteLine(Form1.browser.IsBrowserInitialized);
            Console.WriteLine("Access");
            Int64  total     = 0;
            String PageToken = "";

            try
            {
                var youtubeService = new YouTubeService(new BaseClientService.Initializer()
                {
                    ApiKey          = "AIzaSyC3E-CwcboQuhV5qhAukGdYnFlONzmkJJw",
                    ApplicationName = "_Youtube"
                });
                var searchListRequest = youtubeService.Search.List("snippet");
                searchListRequest.Q          = Keyword; // Replace with your search term.
                searchListRequest.MaxResults = 50;
                searchListRequest.Order      = SearchResource.ListRequest.OrderEnum.ViewCount;

                Boolean exist = false;


                while (PageToken != "null")
                {
                    searchListRequest.PageToken = PageToken;
                    var searchListResponse = await searchListRequest.ExecuteAsync();

                    foreach (var searchResult in searchListResponse.Items)
                    {
                        if (!Form1.isSearching)
                        {
                            return;
                        }
                        //---------getting channel description---------------
                        var searchDescription = youtubeService.Channels.List("snippet");
                        searchDescription.Id = searchResult.Snippet.ChannelId;
                        var searchDEscResponse = await searchDescription.ExecuteAsync();

                        foreach (string k in Keyword.Split(' '))
                        {
                            if (searchDEscResponse.Items[0].Snippet.Description.Contains(k))
                            {
                                exist = true; break;
                            }
                        }
                        if (!exist)
                        {
                            continue;
                        }
                        exist = false;
                        //---------getting channel description--------------

                        using (var Webclient = new HttpClient())
                        {
                            Uri    tempUrl     = new Uri($"https://www.googleapis.com/youtube/v3/channels?part=statistics&id={searchResult.Snippet.ChannelId}&key=AIzaSyC3E-CwcboQuhV5qhAukGdYnFlONzmkJJw");
                            String Subscribers = await Webclient.GetStringAsync(tempUrl);

                            if (Subscribers.Split('\n')[16].Contains("true"))
                            {
                                continue;
                            }


                            if (Form1.isSub)
                            {
                                if (Int64.Parse(Subscribers.Split('\n')[15].Split(':')[1].Substring(1).Split('"')[1]) > Max || Int64.Parse(Subscribers.Split('\n')[15].Split(':')[1].Substring(1).Split('"')[1]) < Min)
                                {
                                    continue;
                                }
                            }

                            //-------------------Fetching Email-------------------
                            Console.WriteLine("Fetching");
                            Form1.browser.Load($"www.youtube.com/channel/{searchResult.Snippet.ChannelId}/about");
                            // Form1.browser.LoadingStateChanged += getEmail;

                            await _PageLoad(60);

                            Console.WriteLine($"Skiped PageLoad");
                            //-------------------Fetching Email-------------------

                            if (_email == "")
                            {
                                continue;
                            }

                            String[] tempX = { searchResult.Snippet.ChannelTitle, Subscribers.Split('\n')[15].Split(':')[1].Substring(1).Split('"')[1], "https://www.youtube.com/channel/" + searchResult.Snippet.ChannelId + "/about", _email };
                            Grid.Rows.Add(tempX);
                            total++;
                            Total.Text = total.ToString();
                            _email     = "";
                        }
                    }
                    PageToken = searchListResponse.NextPageToken;
                }
            }
            catch (Exception z)
            {
                // MessageBox.Show(z.Message);
            }
            Form1.isSearching = false;
        }
示例#15
0
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmAbout));
     this.elipseBorder          = new Bunifu.Framework.UI.BunifuElipse(this.components);
     this.gradientpanelUpperBar = new Bunifu.Framework.UI.BunifuGradientPanel();
     this.buttonClose           = new Bunifu.Framework.UI.BunifuImageButton();
     this.dragcontrolUpperPanel = new Bunifu.Framework.UI.BunifuDragControl(this.components);
     this.panelInfor            = new System.Windows.Forms.Panel();
     this.panelImage            = new System.Windows.Forms.Panel();
     this.pictureboxImage       = new System.Windows.Forms.PictureBox();
     this.labelAuthor           = new Bunifu.Framework.UI.BunifuCustomLabel();
     this.labelContact          = new Bunifu.Framework.UI.BunifuCustomLabel();
     this.labelDescription      = new Bunifu.Framework.UI.BunifuCustomLabel();
     this.textboxAuthor         = new WindowsFormsControlLibrary1.BunifuCustomTextbox();
     this.bunifuCustomTextbox2  = new WindowsFormsControlLibrary1.BunifuCustomTextbox();
     this.textboxDescription    = new WindowsFormsControlLibrary1.BunifuCustomTextbox();
     this.separator2            = new Bunifu.Framework.UI.BunifuSeparator();
     this.separator1            = new Bunifu.Framework.UI.BunifuSeparator();
     this.gradientpanelUpperBar.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.buttonClose)).BeginInit();
     this.panelInfor.SuspendLayout();
     this.panelImage.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureboxImage)).BeginInit();
     this.SuspendLayout();
     //
     // elipseBorder
     //
     this.elipseBorder.ElipseRadius  = 3;
     this.elipseBorder.TargetControl = this.gradientpanelUpperBar;
     //
     // gradientpanelUpperBar
     //
     this.gradientpanelUpperBar.BackgroundImage       = ((System.Drawing.Image)(resources.GetObject("gradientpanelUpperBar.BackgroundImage")));
     this.gradientpanelUpperBar.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.gradientpanelUpperBar.Controls.Add(this.buttonClose);
     this.gradientpanelUpperBar.Dock = System.Windows.Forms.DockStyle.Top;
     this.gradientpanelUpperBar.GradientBottomLeft  = System.Drawing.Color.DeepSkyBlue;
     this.gradientpanelUpperBar.GradientBottomRight = System.Drawing.Color.LightSeaGreen;
     this.gradientpanelUpperBar.GradientTopLeft     = System.Drawing.Color.DeepSkyBlue;
     this.gradientpanelUpperBar.GradientTopRight    = System.Drawing.Color.LightSeaGreen;
     this.gradientpanelUpperBar.Location            = new System.Drawing.Point(0, 0);
     this.gradientpanelUpperBar.Name     = "gradientpanelUpperBar";
     this.gradientpanelUpperBar.Quality  = 10;
     this.gradientpanelUpperBar.Size     = new System.Drawing.Size(384, 32);
     this.gradientpanelUpperBar.TabIndex = 1;
     //
     // buttonClose
     //
     this.buttonClose.Anchor      = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonClose.BackColor   = System.Drawing.Color.Transparent;
     this.buttonClose.Image       = global::UIDesign.Properties.Resources.button_close_background;
     this.buttonClose.ImageActive = null;
     this.buttonClose.Location    = new System.Drawing.Point(352, 0);
     this.buttonClose.Name        = "buttonClose";
     this.buttonClose.Size        = new System.Drawing.Size(32, 32);
     this.buttonClose.SizeMode    = System.Windows.Forms.PictureBoxSizeMode.Zoom;
     this.buttonClose.TabIndex    = 0;
     this.buttonClose.TabStop     = false;
     this.buttonClose.Zoom        = 0;
     this.buttonClose.Click      += new System.EventHandler(this.buttonClose_Click);
     this.buttonClose.MouseLeave += new System.EventHandler(this.buttonClose_MouseLeave);
     this.buttonClose.MouseMove  += new System.Windows.Forms.MouseEventHandler(this.buttonClose_MouseMove);
     //
     // dragcontrolUpperPanel
     //
     this.dragcontrolUpperPanel.Fixed         = true;
     this.dragcontrolUpperPanel.Horizontal    = true;
     this.dragcontrolUpperPanel.TargetControl = this.gradientpanelUpperBar;
     this.dragcontrolUpperPanel.Vertical      = true;
     //
     // panelInfor
     //
     this.panelInfor.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.panelInfor.BackColor = System.Drawing.Color.White;
     this.panelInfor.Controls.Add(this.separator1);
     this.panelInfor.Controls.Add(this.separator2);
     this.panelInfor.Controls.Add(this.textboxDescription);
     this.panelInfor.Controls.Add(this.bunifuCustomTextbox2);
     this.panelInfor.Controls.Add(this.textboxAuthor);
     this.panelInfor.Controls.Add(this.labelDescription);
     this.panelInfor.Controls.Add(this.labelContact);
     this.panelInfor.Controls.Add(this.labelAuthor);
     this.panelInfor.Location = new System.Drawing.Point(144, 31);
     this.panelInfor.Name     = "panelInfor";
     this.panelInfor.Size     = new System.Drawing.Size(239, 225);
     this.panelInfor.TabIndex = 5;
     //
     // panelImage
     //
     this.panelImage.BackColor = System.Drawing.Color.Transparent;
     this.panelImage.Controls.Add(this.pictureboxImage);
     this.panelImage.Location = new System.Drawing.Point(0, 32);
     this.panelImage.Name     = "panelImage";
     this.panelImage.Size     = new System.Drawing.Size(142, 224);
     this.panelImage.TabIndex = 6;
     //
     // pictureboxImage
     //
     this.pictureboxImage.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.pictureboxImage.Image    = global::UIDesign.Properties.Resources.form_about_background;
     this.pictureboxImage.Location = new System.Drawing.Point(1, 12);
     this.pictureboxImage.Name     = "pictureboxImage";
     this.pictureboxImage.Size     = new System.Drawing.Size(133, 212);
     this.pictureboxImage.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
     this.pictureboxImage.TabIndex = 0;
     this.pictureboxImage.TabStop  = false;
     //
     // labelAuthor
     //
     this.labelAuthor.Anchor    = System.Windows.Forms.AnchorStyles.Left;
     this.labelAuthor.AutoSize  = true;
     this.labelAuthor.ForeColor = System.Drawing.Color.Red;
     this.labelAuthor.Location  = new System.Drawing.Point(11, 25);
     this.labelAuthor.Name      = "labelAuthor";
     this.labelAuthor.Size      = new System.Drawing.Size(43, 14);
     this.labelAuthor.TabIndex  = 0;
     this.labelAuthor.Text      = "Author";
     //
     // labelContact
     //
     this.labelContact.Anchor    = System.Windows.Forms.AnchorStyles.Left;
     this.labelContact.AutoSize  = true;
     this.labelContact.ForeColor = System.Drawing.Color.Red;
     this.labelContact.Location  = new System.Drawing.Point(11, 59);
     this.labelContact.Name      = "labelContact";
     this.labelContact.Size      = new System.Drawing.Size(47, 14);
     this.labelContact.TabIndex  = 1;
     this.labelContact.Text      = "Contact";
     //
     // labelDescription
     //
     this.labelDescription.Anchor    = System.Windows.Forms.AnchorStyles.Left;
     this.labelDescription.AutoSize  = true;
     this.labelDescription.ForeColor = System.Drawing.Color.Red;
     this.labelDescription.Location  = new System.Drawing.Point(11, 102);
     this.labelDescription.Name      = "labelDescription";
     this.labelDescription.Size      = new System.Drawing.Size(69, 14);
     this.labelDescription.TabIndex  = 2;
     this.labelDescription.Text      = "Description";
     //
     // textboxAuthor
     //
     this.textboxAuthor.Anchor      = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
     this.textboxAuthor.BackColor   = System.Drawing.Color.White;
     this.textboxAuthor.BorderColor = System.Drawing.Color.Transparent;
     this.textboxAuthor.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.textboxAuthor.Font        = new System.Drawing.Font("Calibri", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textboxAuthor.ForeColor   = System.Drawing.Color.FromArgb(((int)(((byte)(37)))), ((int)(((byte)(84)))), ((int)(((byte)(90)))));
     this.textboxAuthor.Location    = new System.Drawing.Point(83, 24);
     this.textboxAuthor.Name        = "textboxAuthor";
     this.textboxAuthor.ReadOnly    = true;
     this.textboxAuthor.Size        = new System.Drawing.Size(145, 16);
     this.textboxAuthor.TabIndex    = 3;
     this.textboxAuthor.TabStop     = false;
     this.textboxAuthor.Text        = "Trần   Văn   Sơn";
     //
     // bunifuCustomTextbox2
     //
     this.bunifuCustomTextbox2.Anchor      = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
     this.bunifuCustomTextbox2.BackColor   = System.Drawing.Color.White;
     this.bunifuCustomTextbox2.BorderColor = System.Drawing.Color.Transparent;
     this.bunifuCustomTextbox2.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.bunifuCustomTextbox2.Font        = new System.Drawing.Font("Calibri", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.bunifuCustomTextbox2.ForeColor   = System.Drawing.Color.FromArgb(((int)(((byte)(37)))), ((int)(((byte)(84)))), ((int)(((byte)(90)))));
     this.bunifuCustomTextbox2.Location    = new System.Drawing.Point(83, 54);
     this.bunifuCustomTextbox2.Multiline   = true;
     this.bunifuCustomTextbox2.Name        = "bunifuCustomTextbox2";
     this.bunifuCustomTextbox2.ReadOnly    = true;
     this.bunifuCustomTextbox2.Size        = new System.Drawing.Size(145, 48);
     this.bunifuCustomTextbox2.TabIndex    = 4;
     this.bunifuCustomTextbox2.TabStop     = false;
     this.bunifuCustomTextbox2.Text        = "[email protected]\r\nfb:transon1812\r\nskype:kingson1812";
     //
     // textboxDescription
     //
     this.textboxDescription.Anchor      = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
     this.textboxDescription.BackColor   = System.Drawing.Color.White;
     this.textboxDescription.BorderColor = System.Drawing.Color.Transparent;
     this.textboxDescription.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.textboxDescription.ForeColor   = System.Drawing.Color.FromArgb(((int)(((byte)(37)))), ((int)(((byte)(84)))), ((int)(((byte)(90)))));
     this.textboxDescription.Location    = new System.Drawing.Point(14, 124);
     this.textboxDescription.Multiline   = true;
     this.textboxDescription.Name        = "textboxDescription";
     this.textboxDescription.ReadOnly    = true;
     this.textboxDescription.Size        = new System.Drawing.Size(214, 89);
     this.textboxDescription.TabIndex    = 5;
     this.textboxDescription.TabStop     = false;
     this.textboxDescription.Text        = "Media Play     is      a      product     of    entertainment. Hope  you  loved  " +
                                           "it.\r\n\r\n\r\n\r\n>_< Copyright © 2017 -_- Tran V. Son ._.";
     //
     // separator2
     //
     this.separator2.Anchor        = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
     this.separator2.BackColor     = System.Drawing.Color.Transparent;
     this.separator2.LineColor     = System.Drawing.Color.BurlyWood;
     this.separator2.LineThickness = 1;
     this.separator2.Location      = new System.Drawing.Point(1, 101);
     this.separator2.Name          = "separator2";
     this.separator2.Size          = new System.Drawing.Size(236, 1);
     this.separator2.TabIndex      = 1;
     this.separator2.TabStop       = false;
     this.separator2.Transparency  = 255;
     this.separator2.Vertical      = false;
     //
     // separator1
     //
     this.separator1.Anchor        = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
     this.separator1.BackColor     = System.Drawing.Color.Transparent;
     this.separator1.LineColor     = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(184)))), ((int)(((byte)(135)))));
     this.separator1.LineThickness = 1;
     this.separator1.Location      = new System.Drawing.Point(1, 44);
     this.separator1.Name          = "separator1";
     this.separator1.Size          = new System.Drawing.Size(236, 1);
     this.separator1.TabIndex      = 6;
     this.separator1.TabStop       = false;
     this.separator1.Transparency  = 255;
     this.separator1.Vertical      = false;
     //
     // frmAbout
     //
     this.BackColor  = System.Drawing.Color.Magenta;
     this.ClientSize = new System.Drawing.Size(384, 256);
     this.Controls.Add(this.panelImage);
     this.Controls.Add(this.panelInfor);
     this.Controls.Add(this.gradientpanelUpperBar);
     this.Font            = new System.Drawing.Font("Calibri", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.MaximumSize     = new System.Drawing.Size(384, 256);
     this.Name            = "frmAbout";
     this.ShowIcon        = false;
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.TransparencyKey = System.Drawing.Color.Magenta;
     this.gradientpanelUpperBar.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.buttonClose)).EndInit();
     this.panelInfor.ResumeLayout(false);
     this.panelInfor.PerformLayout();
     this.panelImage.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pictureboxImage)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.pakagename = new Bunifu.Framework.UI.BunifuMaterialTextbox();
     this.timer1 = new System.Windows.Forms.Timer(this.components);
     this.slidePic = new System.Windows.Forms.PictureBox();
     this.bunifuImageButton1 = new Bunifu.Framework.UI.BunifuImageButton();
     this.fname_txt = new Bunifu.Framework.UI.BunifuCustomLabel();
     this.ID_combo = new System.Windows.Forms.ComboBox();
     this.circularButton1 = new InventorySystem.supportiveClasses.CircularButton();
     ((System.ComponentModel.ISupportInitialize)(this.slidePic)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bunifuImageButton1)).BeginInit();
     this.SuspendLayout();
     //
     // pakagename
     //
     this.pakagename.BackColor = System.Drawing.SystemColors.InactiveCaptionText;
     this.pakagename.Cursor = System.Windows.Forms.Cursors.IBeam;
     this.pakagename.Font = new System.Drawing.Font("Century Gothic", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.pakagename.ForeColor = System.Drawing.Color.White;
     this.pakagename.HintForeColor = System.Drawing.Color.Empty;
     this.pakagename.HintText = "";
     this.pakagename.isPassword = false;
     this.pakagename.LineFocusedColor = System.Drawing.Color.Blue;
     this.pakagename.LineIdleColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(138)))), ((int)(((byte)(48)))));
     this.pakagename.LineMouseHoverColor = System.Drawing.Color.Blue;
     this.pakagename.LineThickness = 4;
     this.pakagename.Location = new System.Drawing.Point(440, 6);
     this.pakagename.Margin = new System.Windows.Forms.Padding(6, 6, 6, 6);
     this.pakagename.Name = "pakagename";
     this.pakagename.Size = new System.Drawing.Size(568, 47);
     this.pakagename.TabIndex = 0;
     this.pakagename.Text = "bunifuMaterialTextbox1";
     this.pakagename.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // timer1
     //
     this.timer1.Enabled = true;
     this.timer1.Interval = 2000;
     this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
     //
     // slidePic
     //
     this.slidePic.Image = global::InventorySystem.Properties.Resources.RB;
     this.slidePic.Location = new System.Drawing.Point(79, 186);
     this.slidePic.Name = "slidePic";
     this.slidePic.Size = new System.Drawing.Size(802, 535);
     this.slidePic.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.slidePic.TabIndex = 1;
     this.slidePic.TabStop = false;
     //
     // bunifuImageButton1
     //
     this.bunifuImageButton1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(223)))), ((int)(((byte)(171)))), ((int)(((byte)(68)))));
     this.bunifuImageButton1.Image = global::InventorySystem.Properties.Resources.kisspng_brand_logo_black_and_white_triangle_arrow_symbol_5a76c6d1df2c13_8388288415177335859141;
     this.bunifuImageButton1.ImageActive = null;
     this.bunifuImageButton1.Location = new System.Drawing.Point(13, 24);
     this.bunifuImageButton1.Name = "bunifuImageButton1";
     this.bunifuImageButton1.Size = new System.Drawing.Size(71, 29);
     this.bunifuImageButton1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
     this.bunifuImageButton1.TabIndex = 2;
     this.bunifuImageButton1.TabStop = false;
     this.bunifuImageButton1.Zoom = 10;
     this.bunifuImageButton1.Click += new System.EventHandler(this.bunifuImageButton1_Click_1);
     //
     // fname_txt
     //
     this.fname_txt.AutoSize = true;
     this.fname_txt.BackColor = System.Drawing.Color.White;
     this.fname_txt.ForeColor = System.Drawing.Color.Black;
     this.fname_txt.Location = new System.Drawing.Point(1284, 122);
     this.fname_txt.Name = "fname_txt";
     this.fname_txt.Size = new System.Drawing.Size(36, 13);
     this.fname_txt.TabIndex = 12;
     this.fname_txt.Text = "CusID";
     //
     // ID_combo
     //
     this.ID_combo.FormattingEnabled = true;
     this.ID_combo.Location = new System.Drawing.Point(1287, 169);
     this.ID_combo.Name = "ID_combo";
     this.ID_combo.Size = new System.Drawing.Size(172, 21);
     this.ID_combo.TabIndex = 13;
     this.ID_combo.SelectedIndexChanged += new System.EventHandler(this.ID_combo_SelectedIndexChanged_1);
     //
     // circularButton1
     //
     this.circularButton1.AccessibleRole = System.Windows.Forms.AccessibleRole.None;
     this.circularButton1.AllowDrop = true;
     this.circularButton1.Location = new System.Drawing.Point(1101, 403);
     this.circularButton1.Name = "circularButton1";
     this.circularButton1.Size = new System.Drawing.Size(75, 23);
     this.circularButton1.TabIndex = 14;
     this.circularButton1.Text = "circularButton1";
     this.circularButton1.UseVisualStyleBackColor = true;
     this.circularButton1.Click += new System.EventHandler(this.circularButton1_Click);
     //
     // package_wedd_1
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.circularButton1);
     this.Controls.Add(this.ID_combo);
     this.Controls.Add(this.fname_txt);
     this.Controls.Add(this.bunifuImageButton1);
     this.Controls.Add(this.slidePic);
     this.Controls.Add(this.pakagename);
     this.Name = "package_wedd_1";
     this.Size = new System.Drawing.Size(1489, 816);
     ((System.ComponentModel.ISupportInitialize)(this.slidePic)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bunifuImageButton1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
        private void Book_shelf_content_Load(object sender, EventArgs e)
        {
            sql.Open();
            string         query   = "Select Book_title,Book_image,Book_id from [dbo].[book_details]";
            SqlCommand     cmd     = new SqlCommand(query, sql);
            SqlDataAdapter adapter = new SqlDataAdapter();
            DataSet        dataSet = new DataSet();

            adapter.SelectCommand = cmd;
            adapter.Fill(dataSet);

            query = "Select Book_Id from [dbo].[wishlist] where Student_Id = " + Convert.ToInt64(user);
            cmd   = new SqlCommand(query, sql);
            SqlDataAdapter sqlData = new SqlDataAdapter();
            DataSet        ds      = new DataSet();

            sqlData.SelectCommand = cmd;
            sqlData.Fill(ds);

            int x = 40, y_lab = 150, y_butt = 40, x_plus = 155, y_plus = 40;
            int n = 1;

            for (int i = 0; i < count; i++)
            {
                btn_book[i] = new Bunifu.Framework.UI.BunifuImageButton();
                plus[i]     = new Bunifu.Framework.UI.BunifuImageButton();
                lbl_book[i] = new Bunifu.Framework.UI.BunifuCustomLabel();

                this.Controls.Add(btn_book[i]);
                this.Controls.Add(plus[i]);
                this.Controls.Add(lbl_book[i]);

                btn_book[i].Name = "btn_book_" + n;
                plus[i].Name     = "plus" + n;
                lbl_book[i].Name = "lbl_book_" + n;

                lbl_book[i].Text      = dataSet.Tables[0].Rows[i].ItemArray[0].ToString();
                lbl_book[i].BackColor = Color.Transparent;
                lbl_book[i].ForeColor = Color.Black;
                lbl_book[i].TextAlign = ContentAlignment.TopLeft;
                lbl_book[i].Font      = new Font("Century Gothic", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
                lbl_book[i].Size      = new Size(150, 80);
                lbl_book[i].Location  = new Point(x, y_lab);

                btn_book[i].Size     = new Size(109, 109);
                btn_book[i].Location = new Point(x, y_butt);
                try
                {
                    btn_book[i].Image       = Image.FromFile(dataSet.Tables[0].Rows[i].ItemArray[1].ToString());
                    btn_book[i].ImageActive = Image.FromFile(dataSet.Tables[0].Rows[i].ItemArray[1].ToString());
                }
                catch
                {
                    btn_book[i].Image = global::Library_Management_System.Properties.Resources.Book;
                    btn_book[i].Image = global::Library_Management_System.Properties.Resources.Book;
                }
                btn_book[i].BackColor = Color.FromArgb(((int)(((byte)(238)))), ((int)(((byte)(238)))), ((int)(((byte)(242)))));
                btn_book[i].Click    += book_open;

                bool flag = false;
                plus[i].Size     = new Size(20, 20);
                plus[i].Location = new Point(x_plus, y_plus);
                for (int j = 0; j < ds.Tables[0].Rows.Count; j++)
                {
                    if (dataSet.Tables[0].Rows[i].ItemArray[2].ToString() == ds.Tables[0].Rows[j].ItemArray[0].ToString())
                    {
                        flag = true;
                        break;
                    }
                }
                if (flag)
                {
                    plus[i].Image       = Image.FromFile(@"F:\Sem-4\Library Management System\Library Management System\Resources\Ok_48px.png");
                    plus[i].ImageActive = Image.FromFile(@"F:\Sem-4\Library Management System\Library Management System\Resources\Ok_48px.png");
                }
                else
                {
                    plus[i].Image       = Image.FromFile(@"F:\Sem-4\Library Management System\Library Management System\Resources\Plus_96px.png");
                    plus[i].ImageActive = Image.FromFile(@"F:\Sem-4\Library Management System\Library Management System\Resources\Plus_96px.png");
                }
                plus[i].BackColor = Color.FromArgb(((int)(((byte)(238)))), ((int)(((byte)(238)))), ((int)(((byte)(242)))));
                plus[i].Click    += btn_Click;

                id[i] = Convert.ToInt32(dataSet.Tables[0].Rows[i].ItemArray[2].ToString());

                x      += 195;
                x_plus += 195;
                if (x > 637)
                {
                    y_lab  += 200;
                    y_butt += 200;
                    y_plus += 200;
                    x       = 40;
                    x_plus  = 155;
                }
                n++;
            }
            ds.Clear();
            dataSet.Clear();
            sql.Close();
        }
示例#18
0
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Login));
     this.label1             = new System.Windows.Forms.Label();
     this.panel1             = new System.Windows.Forms.Panel();
     this.bunifuCustomLabel5 = new Bunifu.Framework.UI.BunifuCustomLabel();
     this.bunifuCustomLabel4 = new Bunifu.Framework.UI.BunifuCustomLabel();
     this.pictureBox1        = new System.Windows.Forms.PictureBox();
     this.bunifuCustomLabel2 = new Bunifu.Framework.UI.BunifuCustomLabel();
     this.bunifuSeparator1   = new Bunifu.Framework.UI.BunifuSeparator();
     this.bunifuCheckbox1    = new Bunifu.Framework.UI.BunifuCheckbox();
     this.bunifuCustomLabel1 = new Bunifu.Framework.UI.BunifuCustomLabel();
     this.panel4             = new System.Windows.Forms.Panel();
     this.panel3             = new System.Windows.Forms.Panel();
     this.button1            = new Bunifu.Framework.UI.BunifuThinButton2();
     this.textBox1           = new Bunifu.Framework.UI.BunifuMaterialTextbox();
     this.textBox2           = new Bunifu.Framework.UI.BunifuMaterialTextbox();
     this.bunifuCustomLabel6 = new Bunifu.Framework.UI.BunifuCustomLabel();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.AutoSize  = true;
     this.label1.BackColor = System.Drawing.Color.White;
     this.label1.Font      = new System.Drawing.Font("Century Gothic", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.Color.Red;
     this.label1.Location  = new System.Drawing.Point(486, 244);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(20, 16);
     this.label1.TabIndex  = 38;
     this.label1.Text      = "    ";
     //
     // panel1
     //
     this.panel1.BackgroundImage       = ((System.Drawing.Image)(resources.GetObject("panel1.BackgroundImage")));
     this.panel1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.panel1.Controls.Add(this.bunifuCustomLabel5);
     this.panel1.Controls.Add(this.bunifuCustomLabel4);
     this.panel1.Controls.Add(this.pictureBox1);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Left;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(400, 500);
     this.panel1.TabIndex = 46;
     //
     // bunifuCustomLabel5
     //
     this.bunifuCustomLabel5.AutoSize  = true;
     this.bunifuCustomLabel5.BackColor = System.Drawing.Color.Transparent;
     this.bunifuCustomLabel5.Font      = new System.Drawing.Font("Segoe UI Semilight", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.bunifuCustomLabel5.ForeColor = System.Drawing.Color.Black;
     this.bunifuCustomLabel5.Location  = new System.Drawing.Point(60, 350);
     this.bunifuCustomLabel5.Name      = "bunifuCustomLabel5";
     this.bunifuCustomLabel5.Size      = new System.Drawing.Size(294, 28);
     this.bunifuCustomLabel5.TabIndex  = 46;
     this.bunifuCustomLabel5.Text      = "With Billing and Collection System";
     //
     // bunifuCustomLabel4
     //
     this.bunifuCustomLabel4.AutoSize  = true;
     this.bunifuCustomLabel4.BackColor = System.Drawing.Color.Transparent;
     this.bunifuCustomLabel4.Font      = new System.Drawing.Font("Segoe UI Semilight", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.bunifuCustomLabel4.ForeColor = System.Drawing.Color.Black;
     this.bunifuCustomLabel4.Location  = new System.Drawing.Point(25, 306);
     this.bunifuCustomLabel4.Name      = "bunifuCustomLabel4";
     this.bunifuCustomLabel4.Size      = new System.Drawing.Size(363, 28);
     this.bunifuCustomLabel4.TabIndex  = 47;
     this.bunifuCustomLabel4.Text      = "Service Monitoring and Product Inventory";
     //
     // pictureBox1
     //
     this.pictureBox1.BackColor = System.Drawing.Color.Transparent;
     this.pictureBox1.Image     = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
     this.pictureBox1.Location  = new System.Drawing.Point(86, 24);
     this.pictureBox1.Name      = "pictureBox1";
     this.pictureBox1.Size      = new System.Drawing.Size(219, 217);
     this.pictureBox1.SizeMode  = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox1.TabIndex  = 45;
     this.pictureBox1.TabStop   = false;
     //
     // bunifuCustomLabel2
     //
     this.bunifuCustomLabel2.AutoSize  = true;
     this.bunifuCustomLabel2.Font      = new System.Drawing.Font("Segoe UI Semilight", 35F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.bunifuCustomLabel2.ForeColor = System.Drawing.Color.Black;
     this.bunifuCustomLabel2.Location  = new System.Drawing.Point(406, 9);
     this.bunifuCustomLabel2.Name      = "bunifuCustomLabel2";
     this.bunifuCustomLabel2.Size      = new System.Drawing.Size(140, 62);
     this.bunifuCustomLabel2.TabIndex  = 47;
     this.bunifuCustomLabel2.Text      = "Login";
     //
     // bunifuSeparator1
     //
     this.bunifuSeparator1.BackColor     = System.Drawing.Color.Transparent;
     this.bunifuSeparator1.LineColor     = System.Drawing.Color.FromArgb(((int)(((byte)(105)))), ((int)(((byte)(105)))), ((int)(((byte)(105)))));
     this.bunifuSeparator1.LineThickness = 1;
     this.bunifuSeparator1.Location      = new System.Drawing.Point(401, 60);
     this.bunifuSeparator1.Name          = "bunifuSeparator1";
     this.bunifuSeparator1.Size          = new System.Drawing.Size(405, 35);
     this.bunifuSeparator1.TabIndex      = 48;
     this.bunifuSeparator1.Transparency  = 255;
     this.bunifuSeparator1.Vertical      = false;
     //
     // bunifuCheckbox1
     //
     this.bunifuCheckbox1.BackColor       = System.Drawing.Color.FromArgb(((int)(((byte)(34)))), ((int)(((byte)(53)))), ((int)(((byte)(125)))));
     this.bunifuCheckbox1.ChechedOffColor = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(135)))), ((int)(((byte)(140)))));
     this.bunifuCheckbox1.Checked         = true;
     this.bunifuCheckbox1.CheckedOnColor  = System.Drawing.Color.FromArgb(((int)(((byte)(34)))), ((int)(((byte)(53)))), ((int)(((byte)(125)))));
     this.bunifuCheckbox1.ForeColor       = System.Drawing.Color.White;
     this.bunifuCheckbox1.Location        = new System.Drawing.Point(459, 330);
     this.bunifuCheckbox1.Name            = "bunifuCheckbox1";
     this.bunifuCheckbox1.Size            = new System.Drawing.Size(20, 20);
     this.bunifuCheckbox1.TabIndex        = 51;
     //
     // bunifuCustomLabel1
     //
     this.bunifuCustomLabel1.AutoSize  = true;
     this.bunifuCustomLabel1.Font      = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.bunifuCustomLabel1.ForeColor = System.Drawing.Color.Black;
     this.bunifuCustomLabel1.Location  = new System.Drawing.Point(485, 329);
     this.bunifuCustomLabel1.Name      = "bunifuCustomLabel1";
     this.bunifuCustomLabel1.Size      = new System.Drawing.Size(112, 21);
     this.bunifuCustomLabel1.TabIndex  = 52;
     this.bunifuCustomLabel1.Text      = "Remember me";
     //
     // panel4
     //
     this.panel4.BackgroundImage       = ((System.Drawing.Image)(resources.GetObject("panel4.BackgroundImage")));
     this.panel4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.panel4.Location = new System.Drawing.Point(450, 215);
     this.panel4.Name     = "panel4";
     this.panel4.Size     = new System.Drawing.Size(29, 25);
     this.panel4.TabIndex = 49;
     //
     // panel3
     //
     this.panel3.BackgroundImage       = ((System.Drawing.Image)(resources.GetObject("panel3.BackgroundImage")));
     this.panel3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.panel3.Location = new System.Drawing.Point(447, 140);
     this.panel3.Name     = "panel3";
     this.panel3.Size     = new System.Drawing.Size(32, 32);
     this.panel3.TabIndex = 50;
     //
     // button1
     //
     this.button1.ActiveBorderThickness = 1;
     this.button1.ActiveCornerRadius    = 20;
     this.button1.ActiveFillColor       = System.Drawing.Color.FromArgb(((int)(((byte)(34)))), ((int)(((byte)(53)))), ((int)(((byte)(125)))));
     this.button1.ActiveForecolor       = System.Drawing.Color.White;
     this.button1.ActiveLineColor       = System.Drawing.Color.FromArgb(((int)(((byte)(34)))), ((int)(((byte)(53)))), ((int)(((byte)(125)))));
     this.button1.BackColor             = System.Drawing.Color.White;
     this.button1.BackgroundImage       = ((System.Drawing.Image)(resources.GetObject("button1.BackgroundImage")));
     this.button1.ButtonText            = "Sign in";
     this.button1.Cursor              = System.Windows.Forms.Cursors.Hand;
     this.button1.Font                = new System.Drawing.Font("Segoe UI Semibold", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.button1.ForeColor           = System.Drawing.Color.SeaGreen;
     this.button1.IdleBorderThickness = 1;
     this.button1.IdleCornerRadius    = 10;
     this.button1.IdleFillColor       = System.Drawing.Color.White;
     this.button1.IdleForecolor       = System.Drawing.Color.FromArgb(((int)(((byte)(34)))), ((int)(((byte)(53)))), ((int)(((byte)(125)))));
     this.button1.IdleLineColor       = System.Drawing.Color.FromArgb(((int)(((byte)(34)))), ((int)(((byte)(53)))), ((int)(((byte)(125)))));
     this.button1.Location            = new System.Drawing.Point(617, 420);
     this.button1.Margin              = new System.Windows.Forms.Padding(5);
     this.button1.Name                = "button1";
     this.button1.Size                = new System.Drawing.Size(155, 52);
     this.button1.TabIndex            = 53;
     this.button1.TextAlign           = System.Drawing.ContentAlignment.MiddleCenter;
     this.button1.Click              += new System.EventHandler(this.button1_Click_1);
     //
     // textBox1
     //
     this.textBox1.BackColor           = System.Drawing.Color.White;
     this.textBox1.Cursor              = System.Windows.Forms.Cursors.IBeam;
     this.textBox1.Font                = new System.Drawing.Font("Century Gothic", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox1.ForeColor           = System.Drawing.SystemColors.ActiveCaptionText;
     this.textBox1.HintForeColor       = System.Drawing.Color.Empty;
     this.textBox1.HintText            = "";
     this.textBox1.isPassword          = false;
     this.textBox1.LineFocusedColor    = System.Drawing.Color.Lime;
     this.textBox1.LineIdleColor       = System.Drawing.Color.Blue;
     this.textBox1.LineMouseHoverColor = System.Drawing.Color.Blue;
     this.textBox1.LineThickness       = 3;
     this.textBox1.Location            = new System.Drawing.Point(479, 139);
     this.textBox1.Margin              = new System.Windows.Forms.Padding(4);
     this.textBox1.Name                = "textBox1";
     this.textBox1.Size                = new System.Drawing.Size(270, 33);
     this.textBox1.TabIndex            = 54;
     this.textBox1.Text                = "Username";
     this.textBox1.TextAlign           = System.Windows.Forms.HorizontalAlignment.Left;
     this.textBox1.Enter              += new System.EventHandler(this.textBox1_Enter);
     this.textBox1.KeyDown            += new System.Windows.Forms.KeyEventHandler(this.textBox1_KeyDown);
     //
     // textBox2
     //
     this.textBox2.BackColor           = System.Drawing.Color.White;
     this.textBox2.Cursor              = System.Windows.Forms.Cursors.IBeam;
     this.textBox2.Font                = new System.Drawing.Font("Century Gothic", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox2.ForeColor           = System.Drawing.SystemColors.ActiveCaptionText;
     this.textBox2.HintForeColor       = System.Drawing.Color.Empty;
     this.textBox2.HintText            = "";
     this.textBox2.isPassword          = false;
     this.textBox2.LineFocusedColor    = System.Drawing.Color.Lime;
     this.textBox2.LineIdleColor       = System.Drawing.Color.Blue;
     this.textBox2.LineMouseHoverColor = System.Drawing.Color.Blue;
     this.textBox2.LineThickness       = 3;
     this.textBox2.Location            = new System.Drawing.Point(479, 207);
     this.textBox2.Margin              = new System.Windows.Forms.Padding(4);
     this.textBox2.Name                = "textBox2";
     this.textBox2.Size                = new System.Drawing.Size(270, 33);
     this.textBox2.TabIndex            = 55;
     this.textBox2.Text                = "Password";
     this.textBox2.TextAlign           = System.Windows.Forms.HorizontalAlignment.Left;
     this.textBox2.Enter              += new System.EventHandler(this.textBox2_Enter);
     this.textBox2.KeyDown            += new System.Windows.Forms.KeyEventHandler(this.textBox2_KeyDown);
     this.textBox2.KeyPress           += new System.Windows.Forms.KeyPressEventHandler(this.textBox2_KeyPress);
     //
     // bunifuCustomLabel6
     //
     this.bunifuCustomLabel6.AutoSize = true;
     this.bunifuCustomLabel6.Cursor   = System.Windows.Forms.Cursors.Hand;
     this.bunifuCustomLabel6.Font     = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.bunifuCustomLabel6.Location = new System.Drawing.Point(778, 2);
     this.bunifuCustomLabel6.Name     = "bunifuCustomLabel6";
     this.bunifuCustomLabel6.Size     = new System.Drawing.Size(20, 21);
     this.bunifuCustomLabel6.TabIndex = 56;
     this.bunifuCustomLabel6.Text     = "X";
     this.bunifuCustomLabel6.Click   += new System.EventHandler(this.bunifuCustomLabel6_Click);
     //
     // Login
     //
     this.BackColor             = System.Drawing.Color.White;
     this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.ClientSize            = new System.Drawing.Size(800, 500);
     this.Controls.Add(this.bunifuCustomLabel6);
     this.Controls.Add(this.textBox1);
     this.Controls.Add(this.textBox2);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.bunifuCheckbox1);
     this.Controls.Add(this.bunifuCustomLabel1);
     this.Controls.Add(this.panel4);
     this.Controls.Add(this.panel3);
     this.Controls.Add(this.bunifuCustomLabel2);
     this.Controls.Add(this.bunifuSeparator1);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.label1);
     this.DoubleBuffered  = true;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name            = "Login";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Load           += new System.EventHandler(this.Login_Load);
     this.Enter          += new System.EventHandler(this.Login_Enter);
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
示例#19
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Tasks));
     System.Windows.Forms.DataGridViewCellStyle     dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle     dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     Bunifu.Framework.UI.BunifuCustomLabel          Person;
     this.bunifuCards1          = new Bunifu.Framework.UI.BunifuCards();
     this.bunifuImageButton2    = new Bunifu.Framework.UI.BunifuImageButton();
     this.bunifuImageButton1    = new Bunifu.Framework.UI.BunifuImageButton();
     this.Delete                = new Bunifu.Framework.UI.BunifuImageButton();
     this.bunifuCustomDataGrid1 = new Bunifu.Framework.UI.BunifuCustomDataGrid();
     this.bunifuDropdown2       = new Bunifu.Framework.UI.BunifuDropdown();
     Person = new Bunifu.Framework.UI.BunifuCustomLabel();
     this.bunifuCards1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bunifuImageButton2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bunifuImageButton1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Delete)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bunifuCustomDataGrid1)).BeginInit();
     this.SuspendLayout();
     //
     // bunifuCards1
     //
     this.bunifuCards1.BackColor       = System.Drawing.Color.White;
     this.bunifuCards1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("bunifuCards1.BackgroundImage")));
     this.bunifuCards1.BorderRadius    = 5;
     this.bunifuCards1.BottomSahddow   = true;
     this.bunifuCards1.color           = System.Drawing.Color.OliveDrab;
     this.bunifuCards1.Controls.Add(this.bunifuImageButton2);
     this.bunifuCards1.Controls.Add(this.bunifuImageButton1);
     this.bunifuCards1.Controls.Add(this.Delete);
     this.bunifuCards1.Controls.Add(this.bunifuCustomDataGrid1);
     this.bunifuCards1.Controls.Add(Person);
     this.bunifuCards1.Controls.Add(this.bunifuDropdown2);
     this.bunifuCards1.LeftSahddow  = false;
     this.bunifuCards1.Location     = new System.Drawing.Point(6, -1);
     this.bunifuCards1.Name         = "bunifuCards1";
     this.bunifuCards1.RightSahddow = true;
     this.bunifuCards1.ShadowDepth  = 20;
     this.bunifuCards1.Size         = new System.Drawing.Size(888, 653);
     this.bunifuCards1.TabIndex     = 7;
     //
     // bunifuImageButton2
     //
     this.bunifuImageButton2.BackColor             = System.Drawing.Color.Transparent;
     this.bunifuImageButton2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
     this.bunifuImageButton2.Image       = global::dotnetprojet.Properties.Resources.pdf__1_;
     this.bunifuImageButton2.ImageActive = null;
     this.bunifuImageButton2.Location    = new System.Drawing.Point(780, 449);
     this.bunifuImageButton2.Name        = "bunifuImageButton2";
     this.bunifuImageButton2.Size        = new System.Drawing.Size(37, 57);
     this.bunifuImageButton2.SizeMode    = System.Windows.Forms.PictureBoxSizeMode.Zoom;
     this.bunifuImageButton2.TabIndex    = 34;
     this.bunifuImageButton2.TabStop     = false;
     this.bunifuImageButton2.Zoom        = 10;
     //
     // bunifuImageButton1
     //
     this.bunifuImageButton1.BackColor             = System.Drawing.Color.Transparent;
     this.bunifuImageButton1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
     this.bunifuImageButton1.Image       = global::dotnetprojet.Properties.Resources.add__1_;
     this.bunifuImageButton1.ImageActive = null;
     this.bunifuImageButton1.Location    = new System.Drawing.Point(695, 27);
     this.bunifuImageButton1.Name        = "bunifuImageButton1";
     this.bunifuImageButton1.Size        = new System.Drawing.Size(37, 57);
     this.bunifuImageButton1.SizeMode    = System.Windows.Forms.PictureBoxSizeMode.Zoom;
     this.bunifuImageButton1.TabIndex    = 33;
     this.bunifuImageButton1.TabStop     = false;
     this.bunifuImageButton1.Zoom        = 10;
     //
     // Delete
     //
     this.Delete.BackColor             = System.Drawing.Color.Transparent;
     this.Delete.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
     this.Delete.Image       = global::dotnetprojet.Properties.Resources.files_and_folders;
     this.Delete.ImageActive = null;
     this.Delete.Location    = new System.Drawing.Point(806, 27);
     this.Delete.Name        = "Delete";
     this.Delete.Size        = new System.Drawing.Size(37, 57);
     this.Delete.SizeMode    = System.Windows.Forms.PictureBoxSizeMode.Zoom;
     this.Delete.TabIndex    = 31;
     this.Delete.TabStop     = false;
     this.Delete.Zoom        = 10;
     //
     // bunifuCustomDataGrid1
     //
     dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.bunifuCustomDataGrid1.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1;
     this.bunifuCustomDataGrid1.BackgroundColor          = System.Drawing.Color.Gainsboro;
     this.bunifuCustomDataGrid1.BorderStyle              = System.Windows.Forms.BorderStyle.None;
     this.bunifuCustomDataGrid1.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.None;
     dataGridViewCellStyle2.Alignment          = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle2.BackColor          = System.Drawing.Color.SeaGreen;
     dataGridViewCellStyle2.Font               = new System.Drawing.Font("Century Gothic", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle2.ForeColor          = System.Drawing.Color.SeaGreen;
     dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle2.WrapMode           = System.Windows.Forms.DataGridViewTriState.True;
     this.bunifuCustomDataGrid1.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2;
     this.bunifuCustomDataGrid1.ColumnHeadersHeightSizeMode   = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.bunifuCustomDataGrid1.DoubleBuffered            = true;
     this.bunifuCustomDataGrid1.EnableHeadersVisualStyles = false;
     this.bunifuCustomDataGrid1.HeaderBgColor             = System.Drawing.Color.SeaGreen;
     this.bunifuCustomDataGrid1.HeaderForeColor           = System.Drawing.Color.SeaGreen;
     this.bunifuCustomDataGrid1.Location = new System.Drawing.Point(64, 90);
     this.bunifuCustomDataGrid1.Name     = "bunifuCustomDataGrid1";
     this.bunifuCustomDataGrid1.RowHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.None;
     this.bunifuCustomDataGrid1.Size     = new System.Drawing.Size(749, 346);
     this.bunifuCustomDataGrid1.TabIndex = 28;
     //
     // Person
     //
     Person.AutoSize    = true;
     Person.BackColor   = System.Drawing.Color.Transparent;
     Person.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     Person.Font        = new System.Drawing.Font("Lucida Bright", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     Person.ForeColor   = System.Drawing.Color.Green;
     Person.Location    = new System.Drawing.Point(124, 36);
     Person.Name        = "Person";
     Person.Size        = new System.Drawing.Size(53, 17);
     Person.TabIndex    = 27;
     Person.Text        = "Person";
     //
     // bunifuDropdown2
     //
     this.bunifuDropdown2.BackColor     = System.Drawing.Color.Transparent;
     this.bunifuDropdown2.BorderRadius  = 3;
     this.bunifuDropdown2.ForeColor     = System.Drawing.Color.White;
     this.bunifuDropdown2.Items         = new string[0];
     this.bunifuDropdown2.Location      = new System.Drawing.Point(183, 27);
     this.bunifuDropdown2.Name          = "bunifuDropdown2";
     this.bunifuDropdown2.NomalColor    = System.Drawing.Color.FromArgb(((int)(((byte)(163)))), ((int)(((byte)(183)))), ((int)(((byte)(32)))));
     this.bunifuDropdown2.onHoverColor  = System.Drawing.Color.FromArgb(((int)(((byte)(163)))), ((int)(((byte)(183)))), ((int)(((byte)(32)))));
     this.bunifuDropdown2.selectedIndex = -1;
     this.bunifuDropdown2.Size          = new System.Drawing.Size(297, 38);
     this.bunifuDropdown2.TabIndex      = 26;
     //
     // Tasks
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(900, 650);
     this.Controls.Add(this.bunifuCards1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name            = "Tasks";
     this.Text            = "Tasks";
     this.bunifuCards1.ResumeLayout(false);
     this.bunifuCards1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bunifuImageButton2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bunifuImageButton1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Delete)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bunifuCustomDataGrid1)).EndInit();
     this.ResumeLayout(false);
 }
示例#20
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     Bunifu.Framework.UI.BunifuCustomLabel          bunifuCustomLabel2;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ChildrenF1));
     this.panel1 = new System.Windows.Forms.Panel();
     this.bunifuMaterialTextbox3 = new Bunifu.Framework.UI.BunifuMaterialTextbox();
     this.bunifuMaterialTextbox2 = new Bunifu.Framework.UI.BunifuMaterialTextbox();
     this.bunifuMaterialTextbox1 = new Bunifu.Framework.UI.BunifuMaterialTextbox();
     this.label1        = new System.Windows.Forms.Label();
     this.next          = new Bunifu.Framework.UI.BunifuImageButton();
     this.pred          = new Bunifu.Framework.UI.BunifuImageButton();
     this.progressBar1  = new System.Windows.Forms.ProgressBar();
     bunifuCustomLabel2 = new Bunifu.Framework.UI.BunifuCustomLabel();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.next)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pred)).BeginInit();
     this.SuspendLayout();
     //
     // bunifuCustomLabel2
     //
     bunifuCustomLabel2.AutoSize    = true;
     bunifuCustomLabel2.BackColor   = System.Drawing.Color.Transparent;
     bunifuCustomLabel2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     bunifuCustomLabel2.Font        = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     bunifuCustomLabel2.ForeColor   = System.Drawing.Color.DarkCyan;
     bunifuCustomLabel2.Location    = new System.Drawing.Point(55, 261);
     bunifuCustomLabel2.Name        = "bunifuCustomLabel2";
     bunifuCustomLabel2.Size        = new System.Drawing.Size(107, 15);
     bunifuCustomLabel2.TabIndex    = 30;
     bunifuCustomLabel2.Text        = "Schedule of the day:";
     bunifuCustomLabel2.Click      += new System.EventHandler(this.bunifuCustomLabel2_Click);
     //
     // panel1
     //
     this.panel1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panel1.BackgroundImage")));
     this.panel1.Controls.Add(this.bunifuMaterialTextbox3);
     this.panel1.Controls.Add(this.bunifuMaterialTextbox2);
     this.panel1.Controls.Add(this.bunifuMaterialTextbox1);
     this.panel1.Controls.Add(this.progressBar1);
     this.panel1.Controls.Add(bunifuCustomLabel2);
     this.panel1.Controls.Add(this.label1);
     this.panel1.Location = new System.Drawing.Point(270, 100);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(357, 447);
     this.panel1.TabIndex = 0;
     this.panel1.Paint   += new System.Windows.Forms.PaintEventHandler(this.panel1_Paint);
     //
     // bunifuMaterialTextbox3
     //
     this.bunifuMaterialTextbox3.Cursor              = System.Windows.Forms.Cursors.IBeam;
     this.bunifuMaterialTextbox3.Font                = new System.Drawing.Font("Microsoft Sans Serif", 9.75F);
     this.bunifuMaterialTextbox3.ForeColor           = System.Drawing.Color.SeaGreen;
     this.bunifuMaterialTextbox3.HintForeColor       = System.Drawing.Color.SeaGreen;
     this.bunifuMaterialTextbox3.HintText            = "School distance";
     this.bunifuMaterialTextbox3.isPassword          = false;
     this.bunifuMaterialTextbox3.LineFocusedColor    = System.Drawing.Color.SeaGreen;
     this.bunifuMaterialTextbox3.LineIdleColor       = System.Drawing.Color.SeaGreen;
     this.bunifuMaterialTextbox3.LineMouseHoverColor = System.Drawing.Color.SeaGreen;
     this.bunifuMaterialTextbox3.LineThickness       = 3;
     this.bunifuMaterialTextbox3.Location            = new System.Drawing.Point(16, 172);
     this.bunifuMaterialTextbox3.Margin              = new System.Windows.Forms.Padding(4);
     this.bunifuMaterialTextbox3.Name                = "bunifuMaterialTextbox3";
     this.bunifuMaterialTextbox3.Size                = new System.Drawing.Size(322, 44);
     this.bunifuMaterialTextbox3.TabIndex            = 46;
     this.bunifuMaterialTextbox3.TextAlign           = System.Windows.Forms.HorizontalAlignment.Left;
     //
     // bunifuMaterialTextbox2
     //
     this.bunifuMaterialTextbox2.Cursor              = System.Windows.Forms.Cursors.IBeam;
     this.bunifuMaterialTextbox2.Font                = new System.Drawing.Font("Microsoft Sans Serif", 9.75F);
     this.bunifuMaterialTextbox2.ForeColor           = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.bunifuMaterialTextbox2.HintForeColor       = System.Drawing.Color.SeaGreen;
     this.bunifuMaterialTextbox2.HintText            = "Degree";
     this.bunifuMaterialTextbox2.isPassword          = false;
     this.bunifuMaterialTextbox2.LineFocusedColor    = System.Drawing.Color.SeaGreen;
     this.bunifuMaterialTextbox2.LineIdleColor       = System.Drawing.Color.SeaGreen;
     this.bunifuMaterialTextbox2.LineMouseHoverColor = System.Drawing.Color.SeaGreen;
     this.bunifuMaterialTextbox2.LineThickness       = 3;
     this.bunifuMaterialTextbox2.Location            = new System.Drawing.Point(16, 109);
     this.bunifuMaterialTextbox2.Margin              = new System.Windows.Forms.Padding(4);
     this.bunifuMaterialTextbox2.Name                = "bunifuMaterialTextbox2";
     this.bunifuMaterialTextbox2.Size                = new System.Drawing.Size(322, 44);
     this.bunifuMaterialTextbox2.TabIndex            = 45;
     this.bunifuMaterialTextbox2.TextAlign           = System.Windows.Forms.HorizontalAlignment.Left;
     //
     // bunifuMaterialTextbox1
     //
     this.bunifuMaterialTextbox1.Cursor              = System.Windows.Forms.Cursors.IBeam;
     this.bunifuMaterialTextbox1.Font                = new System.Drawing.Font("Microsoft Sans Serif", 9.75F);
     this.bunifuMaterialTextbox1.ForeColor           = System.Drawing.Color.SeaGreen;
     this.bunifuMaterialTextbox1.HintForeColor       = System.Drawing.Color.SeaGreen;
     this.bunifuMaterialTextbox1.HintText            = "Child Name";
     this.bunifuMaterialTextbox1.isPassword          = false;
     this.bunifuMaterialTextbox1.LineFocusedColor    = System.Drawing.Color.SeaGreen;
     this.bunifuMaterialTextbox1.LineIdleColor       = System.Drawing.Color.SeaGreen;
     this.bunifuMaterialTextbox1.LineMouseHoverColor = System.Drawing.Color.SeaGreen;
     this.bunifuMaterialTextbox1.LineThickness       = 3;
     this.bunifuMaterialTextbox1.Location            = new System.Drawing.Point(16, 46);
     this.bunifuMaterialTextbox1.Margin              = new System.Windows.Forms.Padding(4);
     this.bunifuMaterialTextbox1.Name                = "bunifuMaterialTextbox1";
     this.bunifuMaterialTextbox1.Size                = new System.Drawing.Size(322, 44);
     this.bunifuMaterialTextbox1.TabIndex            = 44;
     this.bunifuMaterialTextbox1.TextAlign           = System.Windows.Forms.HorizontalAlignment.Left;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(23, 261);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(0, 13);
     this.label1.TabIndex = 3;
     //
     // next
     //
     this.next.BackColor             = System.Drawing.Color.Transparent;
     this.next.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
     this.next.Image       = global::dotnetprojet.Properties.Resources.next__1_;
     this.next.ImageActive = null;
     this.next.Location    = new System.Drawing.Point(830, 21);
     this.next.Name        = "next";
     this.next.Size        = new System.Drawing.Size(43, 41);
     this.next.SizeMode    = System.Windows.Forms.PictureBoxSizeMode.Zoom;
     this.next.TabIndex    = 30;
     this.next.TabStop     = false;
     this.next.Zoom        = 10;
     this.next.Click      += new System.EventHandler(this.next_Click);
     //
     // pred
     //
     this.pred.BackColor             = System.Drawing.Color.Transparent;
     this.pred.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
     this.pred.Image       = global::dotnetprojet.Properties.Resources.pred__1_;
     this.pred.ImageActive = null;
     this.pred.Location    = new System.Drawing.Point(31, 21);
     this.pred.Name        = "pred";
     this.pred.Size        = new System.Drawing.Size(43, 41);
     this.pred.SizeMode    = System.Windows.Forms.PictureBoxSizeMode.Zoom;
     this.pred.TabIndex    = 31;
     this.pred.TabStop     = false;
     this.pred.Zoom        = 10;
     this.pred.Click      += new System.EventHandler(this.pred_Click);
     //
     // progressBar1
     //
     this.progressBar1.Location = new System.Drawing.Point(73, 293);
     this.progressBar1.Name     = "progressBar1";
     this.progressBar1.Size     = new System.Drawing.Size(209, 113);
     this.progressBar1.TabIndex = 31;
     //
     // ChildrenF1
     //
     this.AccessibleRole      = System.Windows.Forms.AccessibleRole.None;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.BackgroundImage     = ((System.Drawing.Image)(resources.GetObject("$this.BackgroundImage")));
     this.ClientSize          = new System.Drawing.Size(900, 650);
     this.Controls.Add(this.pred);
     this.Controls.Add(this.next);
     this.Controls.Add(this.panel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name            = "ChildrenF1";
     this.Text            = "Form2";
     this.Load           += new System.EventHandler(this.Form2_Load);
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.next)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pred)).EndInit();
     this.ResumeLayout(false);
 }
示例#21
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     Bunifu.Framework.UI.BunifuCustomLabel          bunifuCustomLabel2;
     Bunifu.Framework.UI.BunifuCustomLabel          bunifuCustomLabel1;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Parent));
     this.panel1            = new System.Windows.Forms.Panel();
     this.fatherJobTxt      = new Bunifu.Framework.UI.BunifuMaterialTextbox();
     this.fatherNameTxt     = new Bunifu.Framework.UI.BunifuMaterialTextbox();
     this.next              = new Bunifu.Framework.UI.BunifuImageButton();
     this.pred              = new Bunifu.Framework.UI.BunifuImageButton();
     this.panel2            = new System.Windows.Forms.Panel();
     this.motherJobTxt      = new Bunifu.Framework.UI.BunifuMaterialTextbox();
     this.motherNameTxt     = new Bunifu.Framework.UI.BunifuMaterialTextbox();
     this.fatherScheduleTxt = new System.Windows.Forms.TextBox();
     this.motherScheduleTxt = new System.Windows.Forms.TextBox();
     bunifuCustomLabel2     = new Bunifu.Framework.UI.BunifuCustomLabel();
     bunifuCustomLabel1     = new Bunifu.Framework.UI.BunifuCustomLabel();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.next)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pred)).BeginInit();
     this.panel2.SuspendLayout();
     this.SuspendLayout();
     //
     // bunifuCustomLabel2
     //
     bunifuCustomLabel2.AutoSize    = true;
     bunifuCustomLabel2.BackColor   = System.Drawing.Color.Transparent;
     bunifuCustomLabel2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     bunifuCustomLabel2.ForeColor   = System.Drawing.SystemColors.ButtonHighlight;
     bunifuCustomLabel2.Location    = new System.Drawing.Point(56, 243);
     bunifuCustomLabel2.Name        = "bunifuCustomLabel2";
     bunifuCustomLabel2.Size        = new System.Drawing.Size(107, 15);
     bunifuCustomLabel2.TabIndex    = 32;
     bunifuCustomLabel2.Text        = "Schedule of the day:";
     //
     // bunifuCustomLabel1
     //
     bunifuCustomLabel1.AutoSize    = true;
     bunifuCustomLabel1.BackColor   = System.Drawing.Color.Transparent;
     bunifuCustomLabel1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     bunifuCustomLabel1.ForeColor   = System.Drawing.SystemColors.ButtonHighlight;
     bunifuCustomLabel1.Location    = new System.Drawing.Point(56, 243);
     bunifuCustomLabel1.Name        = "bunifuCustomLabel1";
     bunifuCustomLabel1.Size        = new System.Drawing.Size(107, 15);
     bunifuCustomLabel1.TabIndex    = 32;
     bunifuCustomLabel1.Text        = "Schedule of the day:";
     //
     // panel1
     //
     this.panel1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panel1.BackgroundImage")));
     this.panel1.Controls.Add(this.fatherScheduleTxt);
     this.panel1.Controls.Add(this.fatherJobTxt);
     this.panel1.Controls.Add(this.fatherNameTxt);
     this.panel1.Controls.Add(bunifuCustomLabel2);
     this.panel1.Location = new System.Drawing.Point(85, 83);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(357, 447);
     this.panel1.TabIndex = 17;
     this.panel1.Paint   += new System.Windows.Forms.PaintEventHandler(this.panel1_Paint);
     //
     // fatherJobTxt
     //
     this.fatherJobTxt.Cursor              = System.Windows.Forms.Cursors.IBeam;
     this.fatherJobTxt.Font                = new System.Drawing.Font("Microsoft Sans Serif", 9.75F);
     this.fatherJobTxt.ForeColor           = System.Drawing.Color.SeaGreen;
     this.fatherJobTxt.HintForeColor       = System.Drawing.Color.SeaGreen;
     this.fatherJobTxt.HintText            = "Father\'s job";
     this.fatherJobTxt.isPassword          = false;
     this.fatherJobTxt.LineFocusedColor    = System.Drawing.Color.SeaGreen;
     this.fatherJobTxt.LineIdleColor       = System.Drawing.Color.SeaGreen;
     this.fatherJobTxt.LineMouseHoverColor = System.Drawing.Color.SeaGreen;
     this.fatherJobTxt.LineThickness       = 3;
     this.fatherJobTxt.Location            = new System.Drawing.Point(56, 143);
     this.fatherJobTxt.Margin              = new System.Windows.Forms.Padding(4);
     this.fatherJobTxt.Name                = "fatherJobTxt";
     this.fatherJobTxt.Size                = new System.Drawing.Size(262, 44);
     this.fatherJobTxt.TabIndex            = 35;
     this.fatherJobTxt.TextAlign           = System.Windows.Forms.HorizontalAlignment.Left;
     //
     // fatherNameTxt
     //
     this.fatherNameTxt.Cursor              = System.Windows.Forms.Cursors.IBeam;
     this.fatherNameTxt.Font                = new System.Drawing.Font("Microsoft Sans Serif", 9.75F);
     this.fatherNameTxt.ForeColor           = System.Drawing.Color.SeaGreen;
     this.fatherNameTxt.HintForeColor       = System.Drawing.Color.SeaGreen;
     this.fatherNameTxt.HintText            = "Father\'s Name";
     this.fatherNameTxt.isPassword          = false;
     this.fatherNameTxt.LineFocusedColor    = System.Drawing.Color.SeaGreen;
     this.fatherNameTxt.LineIdleColor       = System.Drawing.Color.SeaGreen;
     this.fatherNameTxt.LineMouseHoverColor = System.Drawing.Color.SeaGreen;
     this.fatherNameTxt.LineThickness       = 3;
     this.fatherNameTxt.Location            = new System.Drawing.Point(56, 64);
     this.fatherNameTxt.Margin              = new System.Windows.Forms.Padding(4);
     this.fatherNameTxt.Name                = "fatherNameTxt";
     this.fatherNameTxt.Size                = new System.Drawing.Size(262, 44);
     this.fatherNameTxt.TabIndex            = 34;
     this.fatherNameTxt.TextAlign           = System.Windows.Forms.HorizontalAlignment.Left;
     //
     // next
     //
     this.next.BackColor             = System.Drawing.Color.Transparent;
     this.next.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
     this.next.Image       = global::dotnetprojet.Properties.Resources.next__1_;
     this.next.ImageActive = null;
     this.next.Location    = new System.Drawing.Point(808, 36);
     this.next.Name        = "next";
     this.next.Size        = new System.Drawing.Size(43, 41);
     this.next.SizeMode    = System.Windows.Forms.PictureBoxSizeMode.Zoom;
     this.next.TabIndex    = 30;
     this.next.TabStop     = false;
     this.next.Zoom        = 10;
     this.next.Click      += new System.EventHandler(this.next_Click);
     //
     // pred
     //
     this.pred.BackColor             = System.Drawing.Color.Transparent;
     this.pred.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
     this.pred.Image       = global::dotnetprojet.Properties.Resources.pred__1_;
     this.pred.ImageActive = null;
     this.pred.Location    = new System.Drawing.Point(51, 36);
     this.pred.Name        = "pred";
     this.pred.Size        = new System.Drawing.Size(43, 41);
     this.pred.SizeMode    = System.Windows.Forms.PictureBoxSizeMode.Zoom;
     this.pred.TabIndex    = 31;
     this.pred.TabStop     = false;
     this.pred.Zoom        = 10;
     this.pred.Click      += new System.EventHandler(this.pred_Click);
     //
     // panel2
     //
     this.panel2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panel2.BackgroundImage")));
     this.panel2.Controls.Add(this.motherScheduleTxt);
     this.panel2.Controls.Add(this.motherJobTxt);
     this.panel2.Controls.Add(this.motherNameTxt);
     this.panel2.Controls.Add(bunifuCustomLabel1);
     this.panel2.Location = new System.Drawing.Point(479, 83);
     this.panel2.Name     = "panel2";
     this.panel2.Size     = new System.Drawing.Size(357, 447);
     this.panel2.TabIndex = 18;
     //
     // motherJobTxt
     //
     this.motherJobTxt.Cursor              = System.Windows.Forms.Cursors.IBeam;
     this.motherJobTxt.Font                = new System.Drawing.Font("Microsoft Sans Serif", 9.75F);
     this.motherJobTxt.ForeColor           = System.Drawing.Color.SeaGreen;
     this.motherJobTxt.HintForeColor       = System.Drawing.Color.SeaGreen;
     this.motherJobTxt.HintText            = "Mother\'s job";
     this.motherJobTxt.isPassword          = false;
     this.motherJobTxt.LineFocusedColor    = System.Drawing.Color.SeaGreen;
     this.motherJobTxt.LineIdleColor       = System.Drawing.Color.SeaGreen;
     this.motherJobTxt.LineMouseHoverColor = System.Drawing.Color.SeaGreen;
     this.motherJobTxt.LineThickness       = 3;
     this.motherJobTxt.Location            = new System.Drawing.Point(44, 143);
     this.motherJobTxt.Margin              = new System.Windows.Forms.Padding(4);
     this.motherJobTxt.Name                = "motherJobTxt";
     this.motherJobTxt.Size                = new System.Drawing.Size(262, 44);
     this.motherJobTxt.TabIndex            = 37;
     this.motherJobTxt.TextAlign           = System.Windows.Forms.HorizontalAlignment.Left;
     //
     // motherNameTxt
     //
     this.motherNameTxt.Cursor              = System.Windows.Forms.Cursors.IBeam;
     this.motherNameTxt.Font                = new System.Drawing.Font("Microsoft Sans Serif", 9.75F);
     this.motherNameTxt.ForeColor           = System.Drawing.Color.SeaGreen;
     this.motherNameTxt.HintForeColor       = System.Drawing.Color.SeaGreen;
     this.motherNameTxt.HintText            = "Mother\'s Name";
     this.motherNameTxt.isPassword          = false;
     this.motherNameTxt.LineFocusedColor    = System.Drawing.Color.SeaGreen;
     this.motherNameTxt.LineIdleColor       = System.Drawing.Color.SeaGreen;
     this.motherNameTxt.LineMouseHoverColor = System.Drawing.Color.SeaGreen;
     this.motherNameTxt.LineThickness       = 3;
     this.motherNameTxt.Location            = new System.Drawing.Point(44, 64);
     this.motherNameTxt.Margin              = new System.Windows.Forms.Padding(4);
     this.motherNameTxt.Name                = "motherNameTxt";
     this.motherNameTxt.Size                = new System.Drawing.Size(262, 44);
     this.motherNameTxt.TabIndex            = 36;
     this.motherNameTxt.TextAlign           = System.Windows.Forms.HorizontalAlignment.Left;
     //
     // fatherScheduleTxt
     //
     this.fatherScheduleTxt.Location  = new System.Drawing.Point(56, 280);
     this.fatherScheduleTxt.Multiline = true;
     this.fatherScheduleTxt.Name      = "fatherScheduleTxt";
     this.fatherScheduleTxt.Size      = new System.Drawing.Size(262, 116);
     this.fatherScheduleTxt.TabIndex  = 36;
     //
     // motherScheduleTxt
     //
     this.motherScheduleTxt.Location  = new System.Drawing.Point(44, 280);
     this.motherScheduleTxt.Multiline = true;
     this.motherScheduleTxt.Name      = "motherScheduleTxt";
     this.motherScheduleTxt.Size      = new System.Drawing.Size(262, 116);
     this.motherScheduleTxt.TabIndex  = 37;
     //
     // Parent
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.BackgroundImage     = ((System.Drawing.Image)(resources.GetObject("$this.BackgroundImage")));
     this.ClientSize          = new System.Drawing.Size(900, 650);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.pred);
     this.Controls.Add(this.next);
     this.Controls.Add(this.panel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name            = "Parent";
     this.Text            = "Form4";
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.next)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pred)).EndInit();
     this.panel2.ResumeLayout(false);
     this.panel2.PerformLayout();
     this.ResumeLayout(false);
 }
示例#22
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     Bunifu.Framework.UI.BunifuCustomLabel          Person;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(statistics));
     this.Tasks = new Bunifu.Framework.UI.BunifuCards();
     this.bunifuImageButton2 = new Bunifu.Framework.UI.BunifuImageButton();
     this.bunifuDropdown2    = new Bunifu.Framework.UI.BunifuDropdown();
     Person = new Bunifu.Framework.UI.BunifuCustomLabel();
     this.Tasks.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bunifuImageButton2)).BeginInit();
     this.SuspendLayout();
     //
     // Person
     //
     Person.AutoSize    = true;
     Person.BackColor   = System.Drawing.Color.Transparent;
     Person.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     Person.Font        = new System.Drawing.Font("Lucida Bright", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     Person.ForeColor   = System.Drawing.Color.Green;
     Person.Location    = new System.Drawing.Point(128, 37);
     Person.Name        = "Person";
     Person.Size        = new System.Drawing.Size(49, 17);
     Person.TabIndex    = 27;
     Person.Text        = "Person";
     //
     // Tasks
     //
     this.Tasks.BackColor       = System.Drawing.Color.White;
     this.Tasks.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Tasks.BackgroundImage")));
     this.Tasks.BorderRadius    = 5;
     this.Tasks.BottomSahddow   = true;
     this.Tasks.color           = System.Drawing.Color.OliveDrab;
     this.Tasks.Controls.Add(this.bunifuImageButton2);
     this.Tasks.Controls.Add(Person);
     this.Tasks.Controls.Add(this.bunifuDropdown2);
     this.Tasks.LeftSahddow  = false;
     this.Tasks.Location     = new System.Drawing.Point(6, -1);
     this.Tasks.Name         = "Tasks";
     this.Tasks.RightSahddow = true;
     this.Tasks.ShadowDepth  = 20;
     this.Tasks.Size         = new System.Drawing.Size(888, 653);
     this.Tasks.TabIndex     = 7;
     //
     // bunifuImageButton2
     //
     this.bunifuImageButton2.BackColor             = System.Drawing.Color.Transparent;
     this.bunifuImageButton2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
     this.bunifuImageButton2.Image       = global::dotnetprojet.Properties.Resources.pdf__1_;
     this.bunifuImageButton2.ImageActive = null;
     this.bunifuImageButton2.Location    = new System.Drawing.Point(780, 449);
     this.bunifuImageButton2.Name        = "bunifuImageButton2";
     this.bunifuImageButton2.Size        = new System.Drawing.Size(37, 57);
     this.bunifuImageButton2.SizeMode    = System.Windows.Forms.PictureBoxSizeMode.Zoom;
     this.bunifuImageButton2.TabIndex    = 34;
     this.bunifuImageButton2.TabStop     = false;
     this.bunifuImageButton2.Zoom        = 10;
     //
     // bunifuDropdown2
     //
     this.bunifuDropdown2.BackColor     = System.Drawing.Color.Transparent;
     this.bunifuDropdown2.BorderRadius  = 3;
     this.bunifuDropdown2.ForeColor     = System.Drawing.Color.White;
     this.bunifuDropdown2.Items         = new string[0];
     this.bunifuDropdown2.Location      = new System.Drawing.Point(183, 27);
     this.bunifuDropdown2.Name          = "bunifuDropdown2";
     this.bunifuDropdown2.NomalColor    = System.Drawing.Color.FromArgb(((int)(((byte)(163)))), ((int)(((byte)(183)))), ((int)(((byte)(32)))));
     this.bunifuDropdown2.onHoverColor  = System.Drawing.Color.FromArgb(((int)(((byte)(163)))), ((int)(((byte)(183)))), ((int)(((byte)(32)))));
     this.bunifuDropdown2.selectedIndex = -1;
     this.bunifuDropdown2.Size          = new System.Drawing.Size(297, 38);
     this.bunifuDropdown2.TabIndex      = 26;
     //
     // statistics
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(900, 650);
     this.Controls.Add(this.Tasks);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name            = "statistics";
     this.Text            = "statistics";
     this.Tasks.ResumeLayout(false);
     this.Tasks.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bunifuImageButton2)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(doctorlogin));
     this.bunifuElipse1 = new Bunifu.Framework.UI.BunifuElipse(this.components);
     this.bunifuGradientPanel1 = new Bunifu.Framework.UI.BunifuGradientPanel();
     this.bunifuCustomLabel2 = new Bunifu.Framework.UI.BunifuCustomLabel();
     this.bunifuCustomLabel1 = new Bunifu.Framework.UI.BunifuCustomLabel();
     this.dctrRegBtn = new Bunifu.Framework.UI.BunifuImageButton();
     this.dctrloginBtn = new Bunifu.Framework.UI.BunifuImageButton();
     this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
     this.bunifuGradientPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dctrRegBtn)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dctrloginBtn)).BeginInit();
     this.SuspendLayout();
     //
     // bunifuElipse1
     //
     this.bunifuElipse1.ElipseRadius = 5;
     this.bunifuElipse1.TargetControl = this;
     //
     // bunifuGradientPanel1
     //
     this.bunifuGradientPanel1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("bunifuGradientPanel1.BackgroundImage")));
     this.bunifuGradientPanel1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.bunifuGradientPanel1.Controls.Add(this.bunifuCustomLabel2);
     this.bunifuGradientPanel1.Controls.Add(this.bunifuCustomLabel1);
     this.bunifuGradientPanel1.Controls.Add(this.dctrRegBtn);
     this.bunifuGradientPanel1.Controls.Add(this.dctrloginBtn);
     this.bunifuGradientPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.bunifuGradientPanel1.GradientBottomLeft = System.Drawing.Color.MidnightBlue;
     this.bunifuGradientPanel1.GradientBottomRight = System.Drawing.Color.Firebrick;
     this.bunifuGradientPanel1.GradientTopLeft = System.Drawing.Color.MidnightBlue;
     this.bunifuGradientPanel1.GradientTopRight = System.Drawing.Color.Firebrick;
     this.bunifuGradientPanel1.Location = new System.Drawing.Point(0, 0);
     this.bunifuGradientPanel1.Name = "bunifuGradientPanel1";
     this.bunifuGradientPanel1.Quality = 10;
     this.bunifuGradientPanel1.Size = new System.Drawing.Size(797, 491);
     this.bunifuGradientPanel1.TabIndex = 0;
     //
     // bunifuCustomLabel2
     //
     this.bunifuCustomLabel2.AutoSize = true;
     this.bunifuCustomLabel2.BackColor = System.Drawing.Color.Transparent;
     this.bunifuCustomLabel2.Font = new System.Drawing.Font("Perpetua Titling MT", 18F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.bunifuCustomLabel2.ForeColor = System.Drawing.Color.Gainsboro;
     this.bunifuCustomLabel2.Location = new System.Drawing.Point(361, 285);
     this.bunifuCustomLabel2.Name = "bunifuCustomLabel2";
     this.bunifuCustomLabel2.Size = new System.Drawing.Size(117, 29);
     this.bunifuCustomLabel2.TabIndex = 3;
     this.bunifuCustomLabel2.Text = "SIGN UP";
     //
     // bunifuCustomLabel1
     //
     this.bunifuCustomLabel1.AutoSize = true;
     this.bunifuCustomLabel1.BackColor = System.Drawing.Color.Transparent;
     this.bunifuCustomLabel1.Font = new System.Drawing.Font("Perpetua Titling MT", 18F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.bunifuCustomLabel1.ForeColor = System.Drawing.Color.Gainsboro;
     this.bunifuCustomLabel1.Location = new System.Drawing.Point(134, 285);
     this.bunifuCustomLabel1.Name = "bunifuCustomLabel1";
     this.bunifuCustomLabel1.Size = new System.Drawing.Size(96, 29);
     this.bunifuCustomLabel1.TabIndex = 2;
     this.bunifuCustomLabel1.Text = "LOGIN";
     //
     // dctrRegBtn
     //
     this.dctrRegBtn.BackColor = System.Drawing.Color.Transparent;
     this.dctrRegBtn.Image = global::pmed.Properties.Resources.icons8_sign_up_50;
     this.dctrRegBtn.ImageActive = null;
     this.dctrRegBtn.Location = new System.Drawing.Point(366, 171);
     this.dctrRegBtn.Name = "dctrRegBtn";
     this.dctrRegBtn.Size = new System.Drawing.Size(118, 99);
     this.dctrRegBtn.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
     this.dctrRegBtn.TabIndex = 1;
     this.dctrRegBtn.TabStop = false;
     this.toolTip1.SetToolTip(this.dctrRegBtn, "Create account");
     this.dctrRegBtn.Zoom = 10;
     this.dctrRegBtn.Click += new System.EventHandler(this.dctrRegBtn_Click);
     //
     // dctrloginBtn
     //
     this.dctrloginBtn.BackColor = System.Drawing.Color.Transparent;
     this.dctrloginBtn.Image = global::pmed.Properties.Resources.icons8_lock_80;
     this.dctrloginBtn.ImageActive = null;
     this.dctrloginBtn.Location = new System.Drawing.Point(139, 171);
     this.dctrloginBtn.Name = "dctrloginBtn";
     this.dctrloginBtn.Size = new System.Drawing.Size(111, 99);
     this.dctrloginBtn.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
     this.dctrloginBtn.TabIndex = 0;
     this.dctrloginBtn.TabStop = false;
     this.toolTip1.SetToolTip(this.dctrloginBtn, "For registered users..");
     this.dctrloginBtn.Zoom = 10;
     this.dctrloginBtn.Click += new System.EventHandler(this.dctrloginBtn_Click);
     //
     // toolTip1
     //
     this.toolTip1.ToolTipIcon = System.Windows.Forms.ToolTipIcon.Info;
     this.toolTip1.ToolTipTitle = "Click!!";
     //
     // doctorlogin
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(797, 491);
     this.Controls.Add(this.bunifuGradientPanel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "doctorlogin";
     this.Text = "doctorlogin";
     this.bunifuGradientPanel1.ResumeLayout(false);
     this.bunifuGradientPanel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dctrRegBtn)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dctrloginBtn)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     Bunifu.Framework.UI.BunifuCustomLabel          bunifuCustomLabel6;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SpouseName));
     this.next           = new Bunifu.Framework.UI.BunifuImageButton();
     this.panel1         = new System.Windows.Forms.Panel();
     this.spouseJobTxt   = new Bunifu.Framework.UI.BunifuMaterialTextbox();
     this.spouseNametxt  = new Bunifu.Framework.UI.BunifuMaterialTextbox();
     this.pred           = new Bunifu.Framework.UI.BunifuImageButton();
     this.spouseschedule = new System.Windows.Forms.TextBox();
     bunifuCustomLabel6  = new Bunifu.Framework.UI.BunifuCustomLabel();
     ((System.ComponentModel.ISupportInitialize)(this.next)).BeginInit();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pred)).BeginInit();
     this.SuspendLayout();
     //
     // bunifuCustomLabel6
     //
     bunifuCustomLabel6.AutoSize    = true;
     bunifuCustomLabel6.BackColor   = System.Drawing.Color.Transparent;
     bunifuCustomLabel6.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     bunifuCustomLabel6.ForeColor   = System.Drawing.Color.Teal;
     bunifuCustomLabel6.Location    = new System.Drawing.Point(23, 209);
     bunifuCustomLabel6.Name        = "bunifuCustomLabel6";
     bunifuCustomLabel6.Size        = new System.Drawing.Size(107, 15);
     bunifuCustomLabel6.TabIndex    = 43;
     bunifuCustomLabel6.Text        = "Schedule of the day:";
     //
     // next
     //
     this.next.BackColor             = System.Drawing.Color.Transparent;
     this.next.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
     this.next.Image       = global::dotnetprojet.Properties.Resources.next__1_;
     this.next.ImageActive = null;
     this.next.Location    = new System.Drawing.Point(814, 32);
     this.next.Name        = "next";
     this.next.Size        = new System.Drawing.Size(43, 41);
     this.next.SizeMode    = System.Windows.Forms.PictureBoxSizeMode.Zoom;
     this.next.TabIndex    = 30;
     this.next.TabStop     = false;
     this.next.Zoom        = 10;
     this.next.Click      += new System.EventHandler(this.next_Click);
     //
     // panel1
     //
     this.panel1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panel1.BackgroundImage")));
     this.panel1.Controls.Add(this.spouseschedule);
     this.panel1.Controls.Add(this.spouseJobTxt);
     this.panel1.Controls.Add(this.spouseNametxt);
     this.panel1.Controls.Add(bunifuCustomLabel6);
     this.panel1.Location = new System.Drawing.Point(249, 68);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(357, 447);
     this.panel1.TabIndex = 14;
     //
     // spouseJobTxt
     //
     this.spouseJobTxt.Cursor              = System.Windows.Forms.Cursors.IBeam;
     this.spouseJobTxt.Font                = new System.Drawing.Font("Microsoft Sans Serif", 9.75F);
     this.spouseJobTxt.ForeColor           = System.Drawing.Color.SeaGreen;
     this.spouseJobTxt.HintForeColor       = System.Drawing.Color.SeaGreen;
     this.spouseJobTxt.HintText            = "Job";
     this.spouseJobTxt.isPassword          = false;
     this.spouseJobTxt.LineFocusedColor    = System.Drawing.Color.SeaGreen;
     this.spouseJobTxt.LineIdleColor       = System.Drawing.Color.SeaGreen;
     this.spouseJobTxt.LineMouseHoverColor = System.Drawing.Color.SeaGreen;
     this.spouseJobTxt.LineThickness       = 3;
     this.spouseJobTxt.Location            = new System.Drawing.Point(23, 144);
     this.spouseJobTxt.Margin              = new System.Windows.Forms.Padding(4);
     this.spouseJobTxt.Name                = "spouseJobTxt";
     this.spouseJobTxt.Size                = new System.Drawing.Size(318, 44);
     this.spouseJobTxt.TabIndex            = 46;
     this.spouseJobTxt.TextAlign           = System.Windows.Forms.HorizontalAlignment.Left;
     //
     // spouseNametxt
     //
     this.spouseNametxt.Cursor              = System.Windows.Forms.Cursors.IBeam;
     this.spouseNametxt.Font                = new System.Drawing.Font("Microsoft Sans Serif", 9.75F);
     this.spouseNametxt.ForeColor           = System.Drawing.Color.SeaGreen;
     this.spouseNametxt.HintForeColor       = System.Drawing.Color.SeaGreen;
     this.spouseNametxt.HintText            = "Partner Name";
     this.spouseNametxt.isPassword          = false;
     this.spouseNametxt.LineFocusedColor    = System.Drawing.Color.SeaGreen;
     this.spouseNametxt.LineIdleColor       = System.Drawing.Color.SeaGreen;
     this.spouseNametxt.LineMouseHoverColor = System.Drawing.Color.SeaGreen;
     this.spouseNametxt.LineThickness       = 3;
     this.spouseNametxt.Location            = new System.Drawing.Point(23, 63);
     this.spouseNametxt.Margin              = new System.Windows.Forms.Padding(4);
     this.spouseNametxt.Name                = "spouseNametxt";
     this.spouseNametxt.Size                = new System.Drawing.Size(318, 44);
     this.spouseNametxt.TabIndex            = 45;
     this.spouseNametxt.TextAlign           = System.Windows.Forms.HorizontalAlignment.Left;
     //
     // pred
     //
     this.pred.BackColor             = System.Drawing.Color.Transparent;
     this.pred.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
     this.pred.Image       = global::dotnetprojet.Properties.Resources.pred__1_;
     this.pred.ImageActive = null;
     this.pred.Location    = new System.Drawing.Point(55, 32);
     this.pred.Name        = "pred";
     this.pred.Size        = new System.Drawing.Size(43, 41);
     this.pred.SizeMode    = System.Windows.Forms.PictureBoxSizeMode.Zoom;
     this.pred.TabIndex    = 32;
     this.pred.TabStop     = false;
     this.pred.Zoom        = 10;
     this.pred.Click      += new System.EventHandler(this.pred_Click);
     //
     // spouseschedule
     //
     this.spouseschedule.Location  = new System.Drawing.Point(47, 249);
     this.spouseschedule.Multiline = true;
     this.spouseschedule.Name      = "spouseschedule";
     this.spouseschedule.Size      = new System.Drawing.Size(262, 116);
     this.spouseschedule.TabIndex  = 47;
     //
     // SpouseName
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.BackgroundImage     = ((System.Drawing.Image)(resources.GetObject("$this.BackgroundImage")));
     this.ClientSize          = new System.Drawing.Size(900, 650);
     this.Controls.Add(this.pred);
     this.Controls.Add(this.next);
     this.Controls.Add(this.panel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name            = "SpouseName";
     this.Text            = "Form3";
     ((System.ComponentModel.ISupportInitialize)(this.next)).EndInit();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pred)).EndInit();
     this.ResumeLayout(false);
 }
示例#25
0
        //WATEVER MAY HAPEN PLIZ DO NAT TACH DIZ AREA OF CODE IF YOU DONT WANA DAY



        private void InitializeComponent()
        {
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
            this.rdoAdmin            = new MaterialSkin.Controls.MaterialRadioButton();
            this.groupBox1           = new System.Windows.Forms.GroupBox();
            this.rdoStudent          = new MaterialSkin.Controls.MaterialRadioButton();
            this.rdoTeacher          = new MaterialSkin.Controls.MaterialRadioButton();
            this.txtID               = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
            this.materialLabel1      = new MaterialSkin.Controls.MaterialLabel();
            this.txtFirstName        = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
            this.txtMiddleName       = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
            this.txtLastName         = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
            this.txtAddress          = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
            this.txtEmail            = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
            this.groupBox2           = new System.Windows.Forms.GroupBox();
            this.dtpBirthdate        = new System.Windows.Forms.DateTimePicker();
            this.bunifuCustomLabel3  = new Bunifu.Framework.UI.BunifuCustomLabel();
            this.materialLabel5      = new MaterialSkin.Controls.MaterialLabel();
            this.materialLabel6      = new MaterialSkin.Controls.MaterialLabel();
            this.materialLabel7      = new MaterialSkin.Controls.MaterialLabel();
            this.materialLabel8      = new MaterialSkin.Controls.MaterialLabel();
            this.materialLabel9      = new MaterialSkin.Controls.MaterialLabel();
            this.groupBox3           = new System.Windows.Forms.GroupBox();
            this.materialLabel3      = new MaterialSkin.Controls.MaterialLabel();
            this.txtUsername         = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
            this.materialLabel10     = new MaterialSkin.Controls.MaterialLabel();
            this.materialLabel11     = new MaterialSkin.Controls.MaterialLabel();
            this.txtConfirmPassword  = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
            this.txtPassword         = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
            this.groupBox4           = new System.Windows.Forms.GroupBox();
            this.drpSecurityQuestion = new ComponentFactory.Krypton.Toolkit.KryptonComboBox();
            this.materialLabel12     = new MaterialSkin.Controls.MaterialLabel();
            this.materialLabel13     = new MaterialSkin.Controls.MaterialLabel();
            this.txtSecurityAnswer   = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
            this.bunifuCustomLabel1  = new Bunifu.Framework.UI.BunifuCustomLabel();
            this.bunifuCustomLabel2  = new Bunifu.Framework.UI.BunifuCustomLabel();
            this.dgvView             = new DevComponents.DotNetBar.Controls.DataGridViewX();
            this.btnEdit             = new ComponentFactory.Krypton.Toolkit.KryptonButton();
            this.txtSearch           = new MaterialSkin.Controls.MaterialSingleLineTextField();
            this.btnInsert           = new ComponentFactory.Krypton.Toolkit.KryptonButton();
            this.btnDelete           = new ComponentFactory.Krypton.Toolkit.KryptonButton();
            this.btnClear            = new ComponentFactory.Krypton.Toolkit.KryptonButton();
            this.groupBox1.SuspendLayout();
            this.groupBox2.SuspendLayout();
            this.groupBox3.SuspendLayout();
            this.groupBox4.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.drpSecurityQuestion)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dgvView)).BeginInit();
            this.SuspendLayout();
            //
            // rdoAdmin
            //
            this.rdoAdmin.AutoSize                = true;
            this.rdoAdmin.Depth                   = 0;
            this.rdoAdmin.Font                    = new System.Drawing.Font("Roboto", 10F);
            this.rdoAdmin.Location                = new System.Drawing.Point(2, 13);
            this.rdoAdmin.Margin                  = new System.Windows.Forms.Padding(0);
            this.rdoAdmin.MouseLocation           = new System.Drawing.Point(-1, -1);
            this.rdoAdmin.MouseState              = MaterialSkin.MouseState.HOVER;
            this.rdoAdmin.Name                    = "rdoAdmin";
            this.rdoAdmin.Ripple                  = true;
            this.rdoAdmin.Size                    = new System.Drawing.Size(114, 30);
            this.rdoAdmin.TabIndex                = 2;
            this.rdoAdmin.Text                    = "Administrator";
            this.rdoAdmin.UseVisualStyleBackColor = true;
            this.rdoAdmin.CheckedChanged         += new System.EventHandler(this.rdoAdmin_CheckedChanged);
            //
            // groupBox1
            //
            this.groupBox1.BackColor = System.Drawing.SystemColors.Window;
            this.groupBox1.Controls.Add(this.rdoStudent);
            this.groupBox1.Controls.Add(this.rdoTeacher);
            this.groupBox1.Controls.Add(this.rdoAdmin);
            this.groupBox1.Font     = new System.Drawing.Font("Roboto", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupBox1.Location = new System.Drawing.Point(16, 98);
            this.groupBox1.Name     = "groupBox1";
            this.groupBox1.Size     = new System.Drawing.Size(280, 51);
            this.groupBox1.TabIndex = 1;
            this.groupBox1.TabStop  = false;
            this.groupBox1.Text     = "User Type";
            //
            // rdoStudent
            //
            this.rdoStudent.AutoSize                = true;
            this.rdoStudent.Depth                   = 0;
            this.rdoStudent.Font                    = new System.Drawing.Font("Roboto", 10F);
            this.rdoStudent.Location                = new System.Drawing.Point(195, 13);
            this.rdoStudent.Margin                  = new System.Windows.Forms.Padding(0);
            this.rdoStudent.MouseLocation           = new System.Drawing.Point(-1, -1);
            this.rdoStudent.MouseState              = MaterialSkin.MouseState.HOVER;
            this.rdoStudent.Name                    = "rdoStudent";
            this.rdoStudent.Ripple                  = true;
            this.rdoStudent.Size                    = new System.Drawing.Size(77, 30);
            this.rdoStudent.TabIndex                = 4;
            this.rdoStudent.Text                    = "Student";
            this.rdoStudent.UseVisualStyleBackColor = true;
            this.rdoStudent.CheckedChanged         += new System.EventHandler(this.rdoStudent_CheckedChanged);
            //
            // rdoTeacher
            //
            this.rdoTeacher.AutoSize                = true;
            this.rdoTeacher.Depth                   = 0;
            this.rdoTeacher.Font                    = new System.Drawing.Font("Roboto", 10F);
            this.rdoTeacher.Location                = new System.Drawing.Point(116, 13);
            this.rdoTeacher.Margin                  = new System.Windows.Forms.Padding(0);
            this.rdoTeacher.MouseLocation           = new System.Drawing.Point(-1, -1);
            this.rdoTeacher.MouseState              = MaterialSkin.MouseState.HOVER;
            this.rdoTeacher.Name                    = "rdoTeacher";
            this.rdoTeacher.Ripple                  = true;
            this.rdoTeacher.Size                    = new System.Drawing.Size(79, 30);
            this.rdoTeacher.TabIndex                = 3;
            this.rdoTeacher.Text                    = "Teacher";
            this.rdoTeacher.UseVisualStyleBackColor = true;
            this.rdoTeacher.CheckedChanged         += new System.EventHandler(this.rdoTeacher_CheckedChanged);
            //
            // txtID
            //
            this.txtID.Enabled  = false;
            this.txtID.Location = new System.Drawing.Point(86, 163);
            this.txtID.Name     = "txtID";
            this.txtID.Size     = new System.Drawing.Size(210, 23);
            this.txtID.TabIndex = 4;
            //
            // materialLabel1
            //
            this.materialLabel1.AutoSize   = true;
            this.materialLabel1.BackColor  = System.Drawing.SystemColors.Window;
            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(14, 74);
            this.materialLabel1.MouseState = MaterialSkin.MouseState.HOVER;
            this.materialLabel1.Name       = "materialLabel1";
            this.materialLabel1.Size       = new System.Drawing.Size(111, 19);
            this.materialLabel1.TabIndex   = 0;
            this.materialLabel1.Text       = "Register a User";
            //
            // txtFirstName
            //
            this.txtFirstName.Location = new System.Drawing.Point(145, 24);
            this.txtFirstName.Name     = "txtFirstName";
            this.txtFirstName.Size     = new System.Drawing.Size(233, 23);
            this.txtFirstName.TabIndex = 2;
            //
            // txtMiddleName
            //
            this.txtMiddleName.Location = new System.Drawing.Point(145, 53);
            this.txtMiddleName.Name     = "txtMiddleName";
            this.txtMiddleName.Size     = new System.Drawing.Size(233, 23);
            this.txtMiddleName.TabIndex = 3;
            //
            // txtLastName
            //
            this.txtLastName.Location = new System.Drawing.Point(145, 82);
            this.txtLastName.Name     = "txtLastName";
            this.txtLastName.Size     = new System.Drawing.Size(233, 23);
            this.txtLastName.TabIndex = 4;
            //
            // txtAddress
            //
            this.txtAddress.Location = new System.Drawing.Point(145, 111);
            this.txtAddress.Name     = "txtAddress";
            this.txtAddress.Size     = new System.Drawing.Size(233, 23);
            this.txtAddress.TabIndex = 5;
            //
            // txtEmail
            //
            this.txtEmail.Location = new System.Drawing.Point(145, 167);
            this.txtEmail.Name     = "txtEmail";
            this.txtEmail.Size     = new System.Drawing.Size(233, 23);
            this.txtEmail.TabIndex = 7;
            //
            // groupBox2
            //
            this.groupBox2.BackColor = System.Drawing.SystemColors.Window;
            this.groupBox2.Controls.Add(this.dtpBirthdate);
            this.groupBox2.Controls.Add(this.bunifuCustomLabel3);
            this.groupBox2.Controls.Add(this.txtEmail);
            this.groupBox2.Controls.Add(this.txtFirstName);
            this.groupBox2.Controls.Add(this.materialLabel5);
            this.groupBox2.Controls.Add(this.txtAddress);
            this.groupBox2.Controls.Add(this.materialLabel6);
            this.groupBox2.Controls.Add(this.txtLastName);
            this.groupBox2.Controls.Add(this.materialLabel7);
            this.groupBox2.Controls.Add(this.txtMiddleName);
            this.groupBox2.Controls.Add(this.materialLabel8);
            this.groupBox2.Controls.Add(this.materialLabel9);
            this.groupBox2.Location = new System.Drawing.Point(12, 192);
            this.groupBox2.Name     = "groupBox2";
            this.groupBox2.Size     = new System.Drawing.Size(384, 199);
            this.groupBox2.TabIndex = 18;
            this.groupBox2.TabStop  = false;
            this.groupBox2.Text     = "User Details";
            this.groupBox2.Enter   += new System.EventHandler(this.groupBox2_Enter);
            //
            // dtpBirthdate
            //
            this.dtpBirthdate.CalendarTitleBackColor    = System.Drawing.SystemColors.ControlLightLight;
            this.dtpBirthdate.CalendarTrailingForeColor = System.Drawing.SystemColors.WindowFrame;
            this.dtpBirthdate.Location = new System.Drawing.Point(145, 136);
            this.dtpBirthdate.Name     = "dtpBirthdate";
            this.dtpBirthdate.Size     = new System.Drawing.Size(233, 25);
            this.dtpBirthdate.TabIndex = 6;
            this.dtpBirthdate.Value    = new System.DateTime(2018, 7, 6, 7, 41, 9, 0);
            //
            // bunifuCustomLabel3
            //
            this.bunifuCustomLabel3.AutoSize  = true;
            this.bunifuCustomLabel3.BackColor = System.Drawing.SystemColors.Window;
            this.bunifuCustomLabel3.Font      = new System.Drawing.Font("Roboto", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.bunifuCustomLabel3.Location  = new System.Drawing.Point(48, 24);
            this.bunifuCustomLabel3.Name      = "bunifuCustomLabel3";
            this.bunifuCustomLabel3.Size      = new System.Drawing.Size(91, 19);
            this.bunifuCustomLabel3.TabIndex  = 24;
            this.bunifuCustomLabel3.Text      = "First Name :";
            //
            // materialLabel5
            //
            this.materialLabel5.AutoSize   = true;
            this.materialLabel5.BackColor  = System.Drawing.SystemColors.Window;
            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(34, 53);
            this.materialLabel5.MouseState = MaterialSkin.MouseState.HOVER;
            this.materialLabel5.Name       = "materialLabel5";
            this.materialLabel5.Size       = new System.Drawing.Size(106, 19);
            this.materialLabel5.TabIndex   = 8;
            this.materialLabel5.Text       = "Middle Name :";
            //
            // materialLabel6
            //
            this.materialLabel6.AutoSize   = true;
            this.materialLabel6.BackColor  = System.Drawing.SystemColors.Window;
            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(51, 82);
            this.materialLabel6.MouseState = MaterialSkin.MouseState.HOVER;
            this.materialLabel6.Name       = "materialLabel6";
            this.materialLabel6.Size       = new System.Drawing.Size(90, 19);
            this.materialLabel6.TabIndex   = 9;
            this.materialLabel6.Text       = "Last Name :";
            //
            // materialLabel7
            //
            this.materialLabel7.AutoSize   = true;
            this.materialLabel7.BackColor  = System.Drawing.SystemColors.Window;
            this.materialLabel7.Depth      = 0;
            this.materialLabel7.Font       = new System.Drawing.Font("Roboto", 11F);
            this.materialLabel7.ForeColor  = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
            this.materialLabel7.Location   = new System.Drawing.Point(67, 111);
            this.materialLabel7.MouseState = MaterialSkin.MouseState.HOVER;
            this.materialLabel7.Name       = "materialLabel7";
            this.materialLabel7.Size       = new System.Drawing.Size(72, 19);
            this.materialLabel7.TabIndex   = 10;
            this.materialLabel7.Text       = "Address :";
            //
            // materialLabel8
            //
            this.materialLabel8.AutoSize   = true;
            this.materialLabel8.BackColor  = System.Drawing.SystemColors.Window;
            this.materialLabel8.Depth      = 0;
            this.materialLabel8.Font       = new System.Drawing.Font("Roboto", 11F);
            this.materialLabel8.ForeColor  = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
            this.materialLabel8.Location   = new System.Drawing.Point(64, 140);
            this.materialLabel8.MouseState = MaterialSkin.MouseState.HOVER;
            this.materialLabel8.Name       = "materialLabel8";
            this.materialLabel8.Size       = new System.Drawing.Size(77, 19);
            this.materialLabel8.TabIndex   = 11;
            this.materialLabel8.Text       = "Birthdate :";
            //
            // materialLabel9
            //
            this.materialLabel9.AutoSize   = true;
            this.materialLabel9.BackColor  = System.Drawing.SystemColors.Window;
            this.materialLabel9.Depth      = 0;
            this.materialLabel9.Font       = new System.Drawing.Font("Roboto", 11F);
            this.materialLabel9.ForeColor  = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
            this.materialLabel9.Location   = new System.Drawing.Point(25, 167);
            this.materialLabel9.MouseState = MaterialSkin.MouseState.HOVER;
            this.materialLabel9.Name       = "materialLabel9";
            this.materialLabel9.Size       = new System.Drawing.Size(114, 19);
            this.materialLabel9.TabIndex   = 12;
            this.materialLabel9.Text       = "Email Address :";
            //
            // groupBox3
            //
            this.groupBox3.BackColor = System.Drawing.SystemColors.Window;
            this.groupBox3.Controls.Add(this.materialLabel3);
            this.groupBox3.Controls.Add(this.txtUsername);
            this.groupBox3.Controls.Add(this.materialLabel10);
            this.groupBox3.Controls.Add(this.materialLabel11);
            this.groupBox3.Controls.Add(this.txtConfirmPassword);
            this.groupBox3.Controls.Add(this.txtPassword);
            this.groupBox3.Location = new System.Drawing.Point(16, 397);
            this.groupBox3.Name     = "groupBox3";
            this.groupBox3.Size     = new System.Drawing.Size(380, 117);
            this.groupBox3.TabIndex = 19;
            this.groupBox3.TabStop  = false;
            this.groupBox3.Text     = "Account Details";
            //
            // materialLabel3
            //
            this.materialLabel3.AutoSize   = true;
            this.materialLabel3.BackColor  = System.Drawing.SystemColors.Window;
            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(57, 21);
            this.materialLabel3.MouseState = MaterialSkin.MouseState.HOVER;
            this.materialLabel3.Name       = "materialLabel3";
            this.materialLabel3.Size       = new System.Drawing.Size(85, 19);
            this.materialLabel3.TabIndex   = 7;
            this.materialLabel3.Text       = "Username :"******"txtUsername";
            this.txtUsername.Size     = new System.Drawing.Size(226, 23);
            this.txtUsername.TabIndex = 8;
            //
            // materialLabel10
            //
            this.materialLabel10.AutoSize   = true;
            this.materialLabel10.BackColor  = System.Drawing.SystemColors.Window;
            this.materialLabel10.Depth      = 0;
            this.materialLabel10.Font       = new System.Drawing.Font("Roboto", 11F);
            this.materialLabel10.ForeColor  = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
            this.materialLabel10.Location   = new System.Drawing.Point(59, 51);
            this.materialLabel10.MouseState = MaterialSkin.MouseState.HOVER;
            this.materialLabel10.Name       = "materialLabel10";
            this.materialLabel10.Size       = new System.Drawing.Size(83, 19);
            this.materialLabel10.TabIndex   = 8;
            this.materialLabel10.Text       = "Password :"******"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(1, 80);
            this.materialLabel11.MouseState = MaterialSkin.MouseState.HOVER;
            this.materialLabel11.Name       = "materialLabel11";
            this.materialLabel11.Size       = new System.Drawing.Size(141, 19);
            this.materialLabel11.TabIndex   = 9;
            this.materialLabel11.Text       = "Confirm Password :"******"txtConfirmPassword";
            this.txtConfirmPassword.PasswordChar          = '●';
            this.txtConfirmPassword.Size                  = new System.Drawing.Size(226, 23);
            this.txtConfirmPassword.TabIndex              = 10;
            this.txtConfirmPassword.UseSystemPasswordChar = true;
            //
            // txtPassword
            //
            this.txtPassword.Location              = new System.Drawing.Point(148, 51);
            this.txtPassword.Name                  = "txtPassword";
            this.txtPassword.PasswordChar          = '●';
            this.txtPassword.Size                  = new System.Drawing.Size(226, 23);
            this.txtPassword.TabIndex              = 8;
            this.txtPassword.UseSystemPasswordChar = true;
            //
            // groupBox4
            //
            this.groupBox4.BackColor = System.Drawing.SystemColors.Window;
            this.groupBox4.Controls.Add(this.drpSecurityQuestion);
            this.groupBox4.Controls.Add(this.materialLabel12);
            this.groupBox4.Controls.Add(this.materialLabel13);
            this.groupBox4.Controls.Add(this.txtSecurityAnswer);
            this.groupBox4.Location = new System.Drawing.Point(18, 520);
            this.groupBox4.Name     = "groupBox4";
            this.groupBox4.Size     = new System.Drawing.Size(378, 90);
            this.groupBox4.TabIndex = 20;
            this.groupBox4.TabStop  = false;
            this.groupBox4.Text     = "Account Recovery";
            //
            // drpSecurityQuestion
            //
            this.drpSecurityQuestion.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.drpSecurityQuestion.DropDownWidth     = 224;
            this.drpSecurityQuestion.InputControlStyle = ComponentFactory.Krypton.Toolkit.InputControlStyle.Ribbon;
            this.drpSecurityQuestion.Items.AddRange(new object[] {
                "In what city were you born?",
                "What high school did you attend?",
                "What is the first and last name of your first boyfriend or girlfriend?",
                "What is the name of your favorite pet?",
                "What is the name of your first grade teacher?",
                "What is the name of your first school?",
                "What is your father\'s middle name?",
                "What is your favorite color?",
                "what is your favorite forum",
                "What is your favorite movie?",
                "what is your favorite online platform",
                "what is your favorite social media website",
                "what is your favorite website",
                "What is your mother\'s maiden name?",
                "What street did you grow up on?",
                "What was the make of your first car?",
                "What was your favorite place to visit as a child?",
                "What was your high school mascot?",
                "When is your anniversary?",
                "Which is your favorite web browser?",
                "Which phone number do you remember most from your childhood?",
                "Who is your favorite actor, musician, or artist?"
            });
            this.drpSecurityQuestion.Location    = new System.Drawing.Point(148, 21);
            this.drpSecurityQuestion.Name        = "drpSecurityQuestion";
            this.drpSecurityQuestion.PaletteMode = ComponentFactory.Krypton.Toolkit.PaletteMode.Office2010Black;
            this.drpSecurityQuestion.Size        = new System.Drawing.Size(224, 21);
            this.drpSecurityQuestion.TabIndex    = 11;
            //
            // materialLabel12
            //
            this.materialLabel12.AutoSize   = true;
            this.materialLabel12.BackColor  = System.Drawing.SystemColors.Window;
            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(7, 21);
            this.materialLabel12.MouseState = MaterialSkin.MouseState.HOVER;
            this.materialLabel12.Name       = "materialLabel12";
            this.materialLabel12.Size       = new System.Drawing.Size(135, 19);
            this.materialLabel12.TabIndex   = 7;
            this.materialLabel12.Text       = "Security Question :";
            //
            // materialLabel13
            //
            this.materialLabel13.AutoSize   = true;
            this.materialLabel13.BackColor  = System.Drawing.SystemColors.Window;
            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(17, 51);
            this.materialLabel13.MouseState = MaterialSkin.MouseState.HOVER;
            this.materialLabel13.Name       = "materialLabel13";
            this.materialLabel13.Size       = new System.Drawing.Size(125, 19);
            this.materialLabel13.TabIndex   = 8;
            this.materialLabel13.Text       = "Security Answer :";
            //
            // txtSecurityAnswer
            //
            this.txtSecurityAnswer.Location = new System.Drawing.Point(148, 51);
            this.txtSecurityAnswer.Name     = "txtSecurityAnswer";
            this.txtSecurityAnswer.Size     = new System.Drawing.Size(224, 23);
            this.txtSecurityAnswer.TabIndex = 12;
            //
            // bunifuCustomLabel1
            //
            this.bunifuCustomLabel1.AutoSize  = true;
            this.bunifuCustomLabel1.BackColor = System.Drawing.SystemColors.Window;
            this.bunifuCustomLabel1.Font      = new System.Drawing.Font("Roboto Medium", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.bunifuCustomLabel1.Location  = new System.Drawing.Point(17, 163);
            this.bunifuCustomLabel1.Name      = "bunifuCustomLabel1";
            this.bunifuCustomLabel1.Size      = new System.Drawing.Size(66, 20);
            this.bunifuCustomLabel1.TabIndex  = 23;
            this.bunifuCustomLabel1.Text      = "User ID :";
            //
            // bunifuCustomLabel2
            //
            this.bunifuCustomLabel2.AutoSize  = true;
            this.bunifuCustomLabel2.BackColor = System.Drawing.SystemColors.Window;
            this.bunifuCustomLabel2.Font      = new System.Drawing.Font("Roboto", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.bunifuCustomLabel2.Location  = new System.Drawing.Point(931, 75);
            this.bunifuCustomLabel2.Name      = "bunifuCustomLabel2";
            this.bunifuCustomLabel2.Size      = new System.Drawing.Size(63, 19);
            this.bunifuCustomLabel2.TabIndex  = 24;
            this.bunifuCustomLabel2.Text      = "Search :";
            //
            // dgvView
            //
            this.dgvView.AllowUserToAddRows          = false;
            this.dgvView.AllowUserToDeleteRows       = false;
            this.dgvView.AllowUserToOrderColumns     = true;
            this.dgvView.AllowUserToResizeColumns    = false;
            this.dgvView.AllowUserToResizeRows       = false;
            this.dgvView.BackgroundColor             = System.Drawing.SystemColors.InactiveCaption;
            this.dgvView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            dataGridViewCellStyle3.Alignment         = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle3.BackColor         = System.Drawing.SystemColors.Window;
            dataGridViewCellStyle3.Font               = new System.Drawing.Font("Roboto Light", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle3.ForeColor          = System.Drawing.SystemColors.ControlText;
            dataGridViewCellStyle3.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle3.SelectionForeColor = System.Drawing.SystemColors.ControlText;
            dataGridViewCellStyle3.WrapMode           = System.Windows.Forms.DataGridViewTriState.False;
            this.dgvView.DefaultCellStyle             = dataGridViewCellStyle3;
            this.dgvView.EditMode  = System.Windows.Forms.DataGridViewEditMode.EditProgrammatically;
            this.dgvView.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
            this.dgvView.Location  = new System.Drawing.Point(402, 103);
            this.dgvView.Name      = "dgvView";
            this.dgvView.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.AutoSizeToAllHeaders;
            this.dgvView.SelectionMode           = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
            this.dgvView.Size     = new System.Drawing.Size(790, 536);
            this.dgvView.TabIndex = 25;
            this.dgvView.CellContentDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvView_CellContentDoubleClick);
            //
            // btnEdit
            //
            this.btnEdit.Location    = new System.Drawing.Point(210, 614);
            this.btnEdit.Name        = "btnEdit";
            this.btnEdit.Size        = new System.Drawing.Size(90, 25);
            this.btnEdit.TabIndex    = 26;
            this.btnEdit.Values.Text = "Edit User";
            //
            // txtSearch
            //
            this.txtSearch.Depth                 = 0;
            this.txtSearch.Hint                  = "";
            this.txtSearch.Location              = new System.Drawing.Point(991, 75);
            this.txtSearch.MouseState            = MaterialSkin.MouseState.HOVER;
            this.txtSearch.Name                  = "txtSearch";
            this.txtSearch.PasswordChar          = '\0';
            this.txtSearch.SelectedText          = "";
            this.txtSearch.SelectionLength       = 0;
            this.txtSearch.SelectionStart        = 0;
            this.txtSearch.Size                  = new System.Drawing.Size(201, 23);
            this.txtSearch.TabIndex              = 28;
            this.txtSearch.UseSystemPasswordChar = false;
            this.txtSearch.Click                += new System.EventHandler(this.txtSearch_Click);
            this.txtSearch.TextChanged          += new System.EventHandler(this.txtSearch_TextChanged);
            //
            // btnInsert
            //
            this.btnInsert.Location    = new System.Drawing.Point(306, 614);
            this.btnInsert.Name        = "btnInsert";
            this.btnInsert.Size        = new System.Drawing.Size(90, 25);
            this.btnInsert.TabIndex    = 29;
            this.btnInsert.Values.Text = "Add User";
            this.btnInsert.Click      += new System.EventHandler(this.btnInsert_Click);
            //
            // btnDelete
            //
            this.btnDelete.Location    = new System.Drawing.Point(114, 614);
            this.btnDelete.Name        = "btnDelete";
            this.btnDelete.Size        = new System.Drawing.Size(90, 25);
            this.btnDelete.TabIndex    = 30;
            this.btnDelete.Values.Text = "Delete User";
            //
            // btnClear
            //
            this.btnClear.Location    = new System.Drawing.Point(18, 614);
            this.btnClear.Name        = "btnClear";
            this.btnClear.Size        = new System.Drawing.Size(90, 25);
            this.btnClear.TabIndex    = 31;
            this.btnClear.Values.Text = "Clear";
            this.btnClear.Click      += new System.EventHandler(this.btnClear_Click);
            //
            // UserRegistration
            //
            this.ClientSize = new System.Drawing.Size(1204, 670);
            this.Controls.Add(this.btnClear);
            this.Controls.Add(this.btnDelete);
            this.Controls.Add(this.btnInsert);
            this.Controls.Add(this.txtSearch);
            this.Controls.Add(this.btnEdit);
            this.Controls.Add(this.dgvView);
            this.Controls.Add(this.bunifuCustomLabel2);
            this.Controls.Add(this.bunifuCustomLabel1);
            this.Controls.Add(this.groupBox4);
            this.Controls.Add(this.groupBox3);
            this.Controls.Add(this.groupBox2);
            this.Controls.Add(this.txtID);
            this.Controls.Add(this.groupBox1);
            this.Controls.Add(this.materialLabel1);
            this.Font          = new System.Drawing.Font("Roboto Light", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Name          = "UserRegistration";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text          = "User Registration";
            this.Load         += new System.EventHandler(this.UserRegistration_Load_2);
            this.groupBox1.ResumeLayout(false);
            this.groupBox1.PerformLayout();
            this.groupBox2.ResumeLayout(false);
            this.groupBox2.PerformLayout();
            this.groupBox3.ResumeLayout(false);
            this.groupBox3.PerformLayout();
            this.groupBox4.ResumeLayout(false);
            this.groupBox4.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.drpSecurityQuestion)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dgvView)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();
        }
示例#26
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     Bunifu.Framework.UI.BunifuCustomLabel          bunifuCustomLabel6;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Inscription2));
     this.pred   = new Bunifu.Framework.UI.BunifuImageButton();
     this.next   = new Bunifu.Framework.UI.BunifuImageButton();
     this.panel2 = new System.Windows.Forms.Panel();
     this.mother = new Bunifu.Framework.UI.BunifuCheckbox();
     this.father = new Bunifu.Framework.UI.BunifuCheckbox();
     this.bunifuCustomLabel11 = new Bunifu.Framework.UI.BunifuCustomLabel();
     this.bunifuCustomLabel8  = new Bunifu.Framework.UI.BunifuCustomLabel();
     this.nbrchild            = new Bunifu.Framework.UI.BunifuMaterialTextbox();
     this.bunifuCustomLabel5  = new Bunifu.Framework.UI.BunifuCustomLabel();
     this.bunifuCustomLabel1  = new Bunifu.Framework.UI.BunifuCustomLabel();
     this.bunifuCustomLabel10 = new Bunifu.Framework.UI.BunifuCustomLabel();
     this.bunifuCustomLabel9  = new Bunifu.Framework.UI.BunifuCustomLabel();
     this.married             = new Bunifu.Framework.UI.BunifuCheckbox();
     this.single             = new Bunifu.Framework.UI.BunifuCheckbox();
     this.panel1             = new System.Windows.Forms.Panel();
     this.job                = new Bunifu.Framework.UI.BunifuMaterialTextbox();
     this.adresse            = new Bunifu.Framework.UI.BunifuMaterialTextbox();
     this.bunifuCustomLabel4 = new Bunifu.Framework.UI.BunifuCustomLabel();
     this.bunifuCustomLabel2 = new Bunifu.Framework.UI.BunifuCustomLabel();
     this.bunifuCustomLabel3 = new Bunifu.Framework.UI.BunifuCustomLabel();
     this.bunifuCustomLabel7 = new Bunifu.Framework.UI.BunifuCustomLabel();
     this.AddImage           = new Bunifu.Framework.UI.BunifuImageButton();
     this.male               = new Bunifu.Framework.UI.BunifuCheckbox();
     this.female             = new Bunifu.Framework.UI.BunifuCheckbox();
     this.datebirth          = new Bunifu.Framework.UI.BunifuDatepicker();
     this.userschedule       = new System.Windows.Forms.TextBox();
     bunifuCustomLabel6      = new Bunifu.Framework.UI.BunifuCustomLabel();
     ((System.ComponentModel.ISupportInitialize)(this.pred)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.next)).BeginInit();
     this.panel2.SuspendLayout();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.AddImage)).BeginInit();
     this.SuspendLayout();
     //
     // bunifuCustomLabel6
     //
     bunifuCustomLabel6.AutoSize    = true;
     bunifuCustomLabel6.BackColor   = System.Drawing.Color.Transparent;
     bunifuCustomLabel6.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     bunifuCustomLabel6.ForeColor   = System.Drawing.Color.Teal;
     bunifuCustomLabel6.Location    = new System.Drawing.Point(54, 21);
     bunifuCustomLabel6.Name        = "bunifuCustomLabel6";
     bunifuCustomLabel6.Size        = new System.Drawing.Size(107, 15);
     bunifuCustomLabel6.TabIndex    = 41;
     bunifuCustomLabel6.Text        = "Schedule of the day:";
     bunifuCustomLabel6.Click      += new System.EventHandler(this.bunifuCustomLabel6_Click);
     //
     // pred
     //
     this.pred.BackColor             = System.Drawing.Color.Transparent;
     this.pred.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
     this.pred.Image       = global::dotnetprojet.Properties.Resources.pred__1_;
     this.pred.ImageActive = null;
     this.pred.Location    = new System.Drawing.Point(31, 35);
     this.pred.Name        = "pred";
     this.pred.Size        = new System.Drawing.Size(43, 41);
     this.pred.SizeMode    = System.Windows.Forms.PictureBoxSizeMode.Zoom;
     this.pred.TabIndex    = 31;
     this.pred.TabStop     = false;
     this.pred.Zoom        = 10;
     this.pred.Click      += new System.EventHandler(this.pred_Click);
     //
     // next
     //
     this.next.BackColor             = System.Drawing.Color.Transparent;
     this.next.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
     this.next.Image       = global::dotnetprojet.Properties.Resources.next__1_;
     this.next.ImageActive = null;
     this.next.Location    = new System.Drawing.Point(821, 35);
     this.next.Name        = "next";
     this.next.Size        = new System.Drawing.Size(43, 41);
     this.next.SizeMode    = System.Windows.Forms.PictureBoxSizeMode.Zoom;
     this.next.TabIndex    = 30;
     this.next.TabStop     = false;
     this.next.Zoom        = 10;
     this.next.Click      += new System.EventHandler(this.next_Click);
     //
     // panel2
     //
     this.panel2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panel2.BackgroundImage")));
     this.panel2.Controls.Add(this.userschedule);
     this.panel2.Controls.Add(this.mother);
     this.panel2.Controls.Add(this.father);
     this.panel2.Controls.Add(this.bunifuCustomLabel11);
     this.panel2.Controls.Add(this.bunifuCustomLabel8);
     this.panel2.Controls.Add(this.nbrchild);
     this.panel2.Controls.Add(bunifuCustomLabel6);
     this.panel2.Controls.Add(this.bunifuCustomLabel5);
     this.panel2.Controls.Add(this.bunifuCustomLabel1);
     this.panel2.Controls.Add(this.bunifuCustomLabel10);
     this.panel2.Controls.Add(this.bunifuCustomLabel9);
     this.panel2.Controls.Add(this.married);
     this.panel2.Controls.Add(this.single);
     this.panel2.Location = new System.Drawing.Point(464, 95);
     this.panel2.Name     = "panel2";
     this.panel2.Size     = new System.Drawing.Size(357, 447);
     this.panel2.TabIndex = 21;
     //
     // mother
     //
     this.mother.BackColor       = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(135)))), ((int)(((byte)(140)))));
     this.mother.ChechedOffColor = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(135)))), ((int)(((byte)(140)))));
     this.mother.Checked         = false;
     this.mother.CheckedOnColor  = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(205)))), ((int)(((byte)(117)))));
     this.mother.ForeColor       = System.Drawing.Color.White;
     this.mother.Location        = new System.Drawing.Point(176, 270);
     this.mother.Name            = "mother";
     this.mother.Size            = new System.Drawing.Size(20, 20);
     this.mother.TabIndex        = 47;
     //
     // father
     //
     this.father.BackColor       = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(135)))), ((int)(((byte)(140)))));
     this.father.ChechedOffColor = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(135)))), ((int)(((byte)(140)))));
     this.father.Checked         = false;
     this.father.CheckedOnColor  = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(205)))), ((int)(((byte)(117)))));
     this.father.ForeColor       = System.Drawing.Color.White;
     this.father.Location        = new System.Drawing.Point(176, 231);
     this.father.Name            = "father";
     this.father.Size            = new System.Drawing.Size(20, 20);
     this.father.TabIndex        = 43;
     //
     // bunifuCustomLabel11
     //
     this.bunifuCustomLabel11.AllowDrop = true;
     this.bunifuCustomLabel11.AutoSize  = true;
     this.bunifuCustomLabel11.BackColor = System.Drawing.Color.Transparent;
     this.bunifuCustomLabel11.ForeColor = System.Drawing.Color.Green;
     this.bunifuCustomLabel11.Location  = new System.Drawing.Point(45, 277);
     this.bunifuCustomLabel11.Name      = "bunifuCustomLabel11";
     this.bunifuCustomLabel11.Size      = new System.Drawing.Size(40, 13);
     this.bunifuCustomLabel11.TabIndex  = 43;
     this.bunifuCustomLabel11.Text      = "Mother";
     //
     // bunifuCustomLabel8
     //
     this.bunifuCustomLabel8.AutoSize  = true;
     this.bunifuCustomLabel8.BackColor = System.Drawing.Color.Transparent;
     this.bunifuCustomLabel8.ForeColor = System.Drawing.Color.Green;
     this.bunifuCustomLabel8.Location  = new System.Drawing.Point(45, 231);
     this.bunifuCustomLabel8.Name      = "bunifuCustomLabel8";
     this.bunifuCustomLabel8.Size      = new System.Drawing.Size(34, 13);
     this.bunifuCustomLabel8.TabIndex  = 43;
     this.bunifuCustomLabel8.Text      = "father";
     //
     // nbrchild
     //
     this.nbrchild.Cursor              = System.Windows.Forms.Cursors.IBeam;
     this.nbrchild.Font                = new System.Drawing.Font("Microsoft Sans Serif", 9.75F);
     this.nbrchild.ForeColor           = System.Drawing.Color.SeaGreen;
     this.nbrchild.HintForeColor       = System.Drawing.Color.SeaGreen;
     this.nbrchild.HintText            = "";
     this.nbrchild.isPassword          = false;
     this.nbrchild.LineFocusedColor    = System.Drawing.Color.SeaGreen;
     this.nbrchild.LineIdleColor       = System.Drawing.Color.SeaGreen;
     this.nbrchild.LineMouseHoverColor = System.Drawing.Color.SeaGreen;
     this.nbrchild.LineThickness       = 3;
     this.nbrchild.Location            = new System.Drawing.Point(154, 361);
     this.nbrchild.Margin              = new System.Windows.Forms.Padding(4);
     this.nbrchild.Name                = "nbrchild";
     this.nbrchild.Size                = new System.Drawing.Size(191, 44);
     this.nbrchild.TabIndex            = 46;
     this.nbrchild.TextAlign           = System.Windows.Forms.HorizontalAlignment.Left;
     //
     // bunifuCustomLabel5
     //
     this.bunifuCustomLabel5.AutoSize  = true;
     this.bunifuCustomLabel5.BackColor = System.Drawing.Color.Transparent;
     this.bunifuCustomLabel5.ForeColor = System.Drawing.Color.Green;
     this.bunifuCustomLabel5.Location  = new System.Drawing.Point(51, 182);
     this.bunifuCustomLabel5.Name      = "bunifuCustomLabel5";
     this.bunifuCustomLabel5.Size      = new System.Drawing.Size(60, 13);
     this.bunifuCustomLabel5.TabIndex  = 45;
     this.bunifuCustomLabel5.Text      = "Civil status:";
     this.bunifuCustomLabel5.Click    += new System.EventHandler(this.bunifuCustomLabel5_Click);
     //
     // bunifuCustomLabel1
     //
     this.bunifuCustomLabel1.AutoSize  = true;
     this.bunifuCustomLabel1.BackColor = System.Drawing.Color.Transparent;
     this.bunifuCustomLabel1.ForeColor = System.Drawing.Color.Green;
     this.bunifuCustomLabel1.Location  = new System.Drawing.Point(51, 374);
     this.bunifuCustomLabel1.Name      = "bunifuCustomLabel1";
     this.bunifuCustomLabel1.Size      = new System.Drawing.Size(96, 13);
     this.bunifuCustomLabel1.TabIndex  = 39;
     this.bunifuCustomLabel1.Text      = "Number of children";
     //
     // bunifuCustomLabel10
     //
     this.bunifuCustomLabel10.AutoSize  = true;
     this.bunifuCustomLabel10.BackColor = System.Drawing.Color.Transparent;
     this.bunifuCustomLabel10.ForeColor = System.Drawing.Color.Green;
     this.bunifuCustomLabel10.Location  = new System.Drawing.Point(134, 175);
     this.bunifuCustomLabel10.Name      = "bunifuCustomLabel10";
     this.bunifuCustomLabel10.Size      = new System.Drawing.Size(36, 13);
     this.bunifuCustomLabel10.TabIndex  = 44;
     this.bunifuCustomLabel10.Text      = "Single";
     this.bunifuCustomLabel10.Click    += new System.EventHandler(this.bunifuCustomLabel10_Click);
     //
     // bunifuCustomLabel9
     //
     this.bunifuCustomLabel9.AutoSize  = true;
     this.bunifuCustomLabel9.BackColor = System.Drawing.Color.Transparent;
     this.bunifuCustomLabel9.ForeColor = System.Drawing.Color.Green;
     this.bunifuCustomLabel9.Location  = new System.Drawing.Point(233, 175);
     this.bunifuCustomLabel9.Name      = "bunifuCustomLabel9";
     this.bunifuCustomLabel9.Size      = new System.Drawing.Size(42, 13);
     this.bunifuCustomLabel9.TabIndex  = 43;
     this.bunifuCustomLabel9.Text      = "Married";
     //
     // married
     //
     this.married.BackColor        = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(135)))), ((int)(((byte)(140)))));
     this.married.CausesValidation = false;
     this.married.ChechedOffColor  = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(135)))), ((int)(((byte)(140)))));
     this.married.Checked          = false;
     this.married.CheckedOnColor   = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(205)))), ((int)(((byte)(117)))));
     this.married.ForeColor        = System.Drawing.Color.White;
     this.married.Location         = new System.Drawing.Point(298, 175);
     this.married.Name             = "married";
     this.married.Size             = new System.Drawing.Size(20, 20);
     this.married.TabIndex         = 42;
     this.married.OnChange        += new System.EventHandler(this.married_OnChange);
     //
     // single
     //
     this.single.BackColor        = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(135)))), ((int)(((byte)(140)))));
     this.single.CausesValidation = false;
     this.single.ChechedOffColor  = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(135)))), ((int)(((byte)(140)))));
     this.single.Checked          = false;
     this.single.CheckedOnColor   = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(205)))), ((int)(((byte)(117)))));
     this.single.ForeColor        = System.Drawing.Color.White;
     this.single.Location         = new System.Drawing.Point(187, 175);
     this.single.Name             = "single";
     this.single.Size             = new System.Drawing.Size(20, 20);
     this.single.TabIndex         = 41;
     this.single.OnChange        += new System.EventHandler(this.single_OnChange);
     //
     // panel1
     //
     this.panel1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panel1.BackgroundImage")));
     this.panel1.Controls.Add(this.job);
     this.panel1.Controls.Add(this.adresse);
     this.panel1.Controls.Add(this.bunifuCustomLabel4);
     this.panel1.Controls.Add(this.bunifuCustomLabel2);
     this.panel1.Controls.Add(this.bunifuCustomLabel3);
     this.panel1.Controls.Add(this.bunifuCustomLabel7);
     this.panel1.Controls.Add(this.AddImage);
     this.panel1.Controls.Add(this.male);
     this.panel1.Controls.Add(this.female);
     this.panel1.Controls.Add(this.datebirth);
     this.panel1.Location = new System.Drawing.Point(85, 95);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(357, 447);
     this.panel1.TabIndex = 20;
     //
     // job
     //
     this.job.Cursor              = System.Windows.Forms.Cursors.IBeam;
     this.job.Font                = new System.Drawing.Font("Microsoft Sans Serif", 9.75F);
     this.job.ForeColor           = System.Drawing.Color.SeaGreen;
     this.job.HintForeColor       = System.Drawing.Color.SeaGreen;
     this.job.HintText            = "Job";
     this.job.isPassword          = false;
     this.job.LineFocusedColor    = System.Drawing.Color.SeaGreen;
     this.job.LineIdleColor       = System.Drawing.Color.SeaGreen;
     this.job.LineMouseHoverColor = System.Drawing.Color.SeaGreen;
     this.job.LineThickness       = 3;
     this.job.Location            = new System.Drawing.Point(25, 374);
     this.job.Margin              = new System.Windows.Forms.Padding(4);
     this.job.Name                = "job";
     this.job.Size                = new System.Drawing.Size(309, 44);
     this.job.TabIndex            = 42;
     this.job.TextAlign           = System.Windows.Forms.HorizontalAlignment.Left;
     //
     // adresse
     //
     this.adresse.Cursor              = System.Windows.Forms.Cursors.IBeam;
     this.adresse.Font                = new System.Drawing.Font("Microsoft Sans Serif", 9.75F);
     this.adresse.ForeColor           = System.Drawing.Color.SeaGreen;
     this.adresse.HintForeColor       = System.Drawing.Color.SeaGreen;
     this.adresse.HintText            = "Address";
     this.adresse.isPassword          = false;
     this.adresse.LineFocusedColor    = System.Drawing.Color.SeaGreen;
     this.adresse.LineIdleColor       = System.Drawing.Color.SeaGreen;
     this.adresse.LineMouseHoverColor = System.Drawing.Color.SeaGreen;
     this.adresse.LineThickness       = 3;
     this.adresse.Location            = new System.Drawing.Point(25, 307);
     this.adresse.Margin              = new System.Windows.Forms.Padding(4);
     this.adresse.Name                = "adresse";
     this.adresse.Size                = new System.Drawing.Size(309, 44);
     this.adresse.TabIndex            = 41;
     this.adresse.TextAlign           = System.Windows.Forms.HorizontalAlignment.Left;
     //
     // bunifuCustomLabel4
     //
     this.bunifuCustomLabel4.AutoSize  = true;
     this.bunifuCustomLabel4.BackColor = System.Drawing.Color.Transparent;
     this.bunifuCustomLabel4.ForeColor = System.Drawing.Color.Green;
     this.bunifuCustomLabel4.Location  = new System.Drawing.Point(42, 199);
     this.bunifuCustomLabel4.Name      = "bunifuCustomLabel4";
     this.bunifuCustomLabel4.Size      = new System.Drawing.Size(42, 13);
     this.bunifuCustomLabel4.TabIndex  = 40;
     this.bunifuCustomLabel4.Text      = "Gender";
     this.bunifuCustomLabel4.Click    += new System.EventHandler(this.bunifuCustomLabel4_Click);
     //
     // bunifuCustomLabel2
     //
     this.bunifuCustomLabel2.AutoSize  = true;
     this.bunifuCustomLabel2.BackColor = System.Drawing.Color.Transparent;
     this.bunifuCustomLabel2.ForeColor = System.Drawing.Color.Green;
     this.bunifuCustomLabel2.Location  = new System.Drawing.Point(42, 154);
     this.bunifuCustomLabel2.Name      = "bunifuCustomLabel2";
     this.bunifuCustomLabel2.Size      = new System.Drawing.Size(66, 13);
     this.bunifuCustomLabel2.TabIndex  = 39;
     this.bunifuCustomLabel2.Text      = "Date of Birth";
     this.bunifuCustomLabel2.Click    += new System.EventHandler(this.bunifuCustomLabel2_Click);
     //
     // bunifuCustomLabel3
     //
     this.bunifuCustomLabel3.AutoSize  = true;
     this.bunifuCustomLabel3.BackColor = System.Drawing.Color.Transparent;
     this.bunifuCustomLabel3.ForeColor = System.Drawing.Color.Green;
     this.bunifuCustomLabel3.Location  = new System.Drawing.Point(112, 262);
     this.bunifuCustomLabel3.Name      = "bunifuCustomLabel3";
     this.bunifuCustomLabel3.Size      = new System.Drawing.Size(30, 13);
     this.bunifuCustomLabel3.TabIndex  = 38;
     this.bunifuCustomLabel3.Text      = "Male";
     this.bunifuCustomLabel3.Click    += new System.EventHandler(this.bunifuCustomLabel3_Click);
     //
     // bunifuCustomLabel7
     //
     this.bunifuCustomLabel7.AutoSize  = true;
     this.bunifuCustomLabel7.BackColor = System.Drawing.Color.Transparent;
     this.bunifuCustomLabel7.ForeColor = System.Drawing.Color.Green;
     this.bunifuCustomLabel7.Location  = new System.Drawing.Point(112, 224);
     this.bunifuCustomLabel7.Name      = "bunifuCustomLabel7";
     this.bunifuCustomLabel7.Size      = new System.Drawing.Size(38, 13);
     this.bunifuCustomLabel7.TabIndex  = 37;
     this.bunifuCustomLabel7.Text      = "female";
     this.bunifuCustomLabel7.Click    += new System.EventHandler(this.bunifuCustomLabel7_Click);
     //
     // AddImage
     //
     this.AddImage.BackColor             = System.Drawing.Color.Transparent;
     this.AddImage.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
     this.AddImage.Image       = global::dotnetprojet.Properties.Resources.business_application_addmale_useradd_insert_add_user_client_23121;
     this.AddImage.ImageActive = null;
     this.AddImage.Location    = new System.Drawing.Point(130, 32);
     this.AddImage.Name        = "AddImage";
     this.AddImage.Size        = new System.Drawing.Size(91, 88);
     this.AddImage.SizeMode    = System.Windows.Forms.PictureBoxSizeMode.Zoom;
     this.AddImage.TabIndex    = 35;
     this.AddImage.TabStop     = false;
     this.AddImage.Zoom        = 10;
     //
     // male
     //
     this.male.BackColor        = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(135)))), ((int)(((byte)(140)))));
     this.male.CausesValidation = false;
     this.male.ChechedOffColor  = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(135)))), ((int)(((byte)(140)))));
     this.male.Checked          = false;
     this.male.CheckedOnColor   = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(205)))), ((int)(((byte)(117)))));
     this.male.ForeColor        = System.Drawing.Color.White;
     this.male.Location         = new System.Drawing.Point(181, 255);
     this.male.Name             = "male";
     this.male.Size             = new System.Drawing.Size(20, 20);
     this.male.TabIndex         = 6;
     this.male.OnChange        += new System.EventHandler(this.male_OnChange);
     //
     // female
     //
     this.female.BackColor       = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(135)))), ((int)(((byte)(140)))));
     this.female.ChechedOffColor = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(135)))), ((int)(((byte)(140)))));
     this.female.Checked         = false;
     this.female.CheckedOnColor  = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(205)))), ((int)(((byte)(117)))));
     this.female.ForeColor       = System.Drawing.Color.White;
     this.female.Location        = new System.Drawing.Point(181, 224);
     this.female.Name            = "female";
     this.female.Size            = new System.Drawing.Size(20, 20);
     this.female.TabIndex        = 5;
     this.female.OnChange       += new System.EventHandler(this.female_OnChange);
     //
     // datebirth
     //
     this.datebirth.BackColor       = System.Drawing.Color.SeaGreen;
     this.datebirth.BorderRadius    = 0;
     this.datebirth.ForeColor       = System.Drawing.Color.White;
     this.datebirth.Format          = System.Windows.Forms.DateTimePickerFormat.Long;
     this.datebirth.FormatCustom    = null;
     this.datebirth.Location        = new System.Drawing.Point(126, 141);
     this.datebirth.Name            = "datebirth";
     this.datebirth.Size            = new System.Drawing.Size(169, 36);
     this.datebirth.TabIndex        = 4;
     this.datebirth.Value           = new System.DateTime(2020, 3, 10, 14, 7, 11, 581);
     this.datebirth.onValueChanged += new System.EventHandler(this.bunifuDatepicker1_onValueChanged);
     //
     // userschedule
     //
     this.userschedule.Location  = new System.Drawing.Point(24, 51);
     this.userschedule.Multiline = true;
     this.userschedule.Name      = "userschedule";
     this.userschedule.Size      = new System.Drawing.Size(262, 116);
     this.userschedule.TabIndex  = 48;
     //
     // Inscription2
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.BackgroundImage     = ((System.Drawing.Image)(resources.GetObject("$this.BackgroundImage")));
     this.ClientSize          = new System.Drawing.Size(900, 640);
     this.Controls.Add(this.pred);
     this.Controls.Add(this.next);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.panel1);
     this.ForeColor       = System.Drawing.Color.Green;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name            = "Inscription2";
     this.Text            = "Form8";
     this.Load           += new System.EventHandler(this.Inscription2_Load);
     ((System.ComponentModel.ISupportInitialize)(this.pred)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.next)).EndInit();
     this.panel2.ResumeLayout(false);
     this.panel2.PerformLayout();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.AddImage)).EndInit();
     this.ResumeLayout(false);
 }