Example #1
0
        private void funCreateExpand()
        {
            //taskPane1
            ConnectServer.cConection cConn = new ConnectServer.cConection(UserID);
            string strDoc = cConn.getLastDoc(strConnect, Program.OffiecSpaceId, Program.DatabaseName, "position", int.Parse(position_id));

            XmlDocument xmlImage = new XmlDocument();

            xmlImage.Load(Application.StartupPath + @"\Image.xml");

            xmlConfig = new XmlDocument();
            XmlNodeList nodeView;

            if (position == "A")
            {
                XmlDocument xmlConfigT = new XmlDocument();
                xmlConfigT.Load("MConfig.xml");
                nodeView = xmlConfigT.SelectNodes("//Config/Views/View");
            }
            else
            {
                if (strDoc == "")
                {
                    XmlDocument xmlConfigT = new XmlDocument();
                    xmlConfigT.Load("MConfig.xml");
                    nodeView = xmlConfigT.SelectNodes("//Config/Views/View");
                }
                else
                {
                    XmlDocument xmlConfigT = new XmlDocument();
                    xmlConfigT.LoadXml(strDoc);
                    nodeView = xmlConfigT.SelectNodes("//Views/View");
                }
            }
            xmlConfig.Load("MConfig.xml");

            taskPane1.Controls.Clear();

            for (int i = 0; i < nodeView.Count; i++)
            {
                string Name      = nodeView[i].Attributes["Name"].Value;
                string PathTitle = "";
                try { PathTitle = xmlImage.SelectSingleNode("//Image[@ID='" + nodeView[i].Attributes["IconID"].Value + "']").Attributes["Path"].Value; }
                catch { }
                string PathWaterMark = "";
                try { PathWaterMark = xmlImage.SelectSingleNode("//Image[@ID='" + nodeView[i].Attributes["WaterMarkID"].Value + "']").Attributes["Path"].Value; }
                catch { }
                if (nodeView[i].Attributes["Enable"].Value.ToString() == "T")
                {
                    XPExplorerBar.Expando expTemp  = funExpando("" + nodeView[i].Attributes["Name"].Value, PathTitle, PathWaterMark);
                    XmlNodeList           listItem = nodeView[i].SelectNodes("./Item");
                    for (int j = 0; j < listItem.Count; j++)
                    {
                        string IconPath = "";
                        try { IconPath = "" + xmlImage.SelectSingleNode("//Image[@ID='" + listItem[j].Attributes["IconID"].Value + "']").Attributes["Path"].Value; }
                        catch { }
                        if (listItem[j].Attributes["Enable"].Value.ToString() == "T")
                        {
                            XmlNode nodeMap = xmlConfig.SelectSingleNode("//Config/Mappings/Mapping[@ID='" + listItem[j].Attributes["MappingID"].Value + "']");

                            XPExplorerBar.TaskItem xItem = new XPExplorerBar.TaskItem();
                            xItem.Text = "" + nodeMap.Attributes["Name"].Value;
                            xItem.Tag  = nodeMap;
                            try { xItem.Image = Image.FromFile(IconPath); }
                            catch { }
                            try { xItem.Image.Tag = IconPath; }
                            catch { }
                            xItem.Click += new EventHandler(xItem_Click);
                            expTemp.Items.Add(xItem);
                        }
                    }
                    //expTemp.Collapse();
                    taskPane1.Controls.Add(expTemp);
                }
            }
        }
Example #2
0
        void xItem_Click(object sender, EventArgs e)
        {
            #region Code
            XPExplorerBar.TaskItem taskItem = (XPExplorerBar.TaskItem)sender;

            lbStatus.Text = "Progress...";
            this.Update();
            XmlNode nTemp = (XmlNode)taskItem.Tag;
            if ("" + nTemp.Attributes["ManagementID"].Value == "")
            {
                MessageBox.Show("ÃÒ¡ÒÃàÁ¹Ù¹ÕéÂѧäÁè¶Ù¡ÊÃéÒ§¢Öé¹", "¢éͼԴ¾ÅÒ´", MessageBoxButtons.OK, MessageBoxIcon.Error);
                return;
            }
            string      strPathM = "//Managements/Management[@ID='" + nTemp.Attributes["ManagementID"].Value + "']";
            XmlDocument xmlMange = new XmlDocument();
            try { xmlMange.LoadXml(xmlConfig.SelectSingleNode(strPathM).OuterXml); }
            catch { }

            string      strPathT = "//Themes/Theme[@ID='" + nTemp.Attributes["ThemeID"].Value + "']";
            XmlDocument xmlTheme = new XmlDocument();
            try { xmlTheme.LoadXml(xmlConfig.SelectSingleNode(strPathT).OuterXml); }
            catch { }

            string      strPathD  = "//Config/Images";
            XmlDocument xmlDetail = new XmlDocument();
            try { xmlDetail.LoadXml(xmlConfig.SelectSingleNode(strPathD).OuterXml); }
            catch { }

            string      strPathTool = "//Tools/Tool[@ID='" + nTemp.Attributes["ToolID"].Value + "']";
            XmlDocument xmlTool     = new XmlDocument();
            try { xmlTool.LoadXml(xmlConfig.SelectSingleNode(strPathTool).OuterXml); }
            catch { }

            string      strPathParameter = "//Parameters/Parameter[@ID='" + nTemp.Attributes["ParameterID"].Value + "']";
            XmlDocument xmlParameter     = new XmlDocument();
            string      strParameter     = "";
            try { strParameter = xmlConfig.SelectSingleNode(strPathParameter).OuterXml; }
            catch { }

            string MenuType = "";
            try
            {
                MenuType = nTemp.Attributes["ManagementID"].Value;
            }
            catch { }


            string DisplayType = "";

            try
            {
                DisplayType = xmlMange.SelectSingleNode("//Management").Attributes["Type"].Value;
            }
            catch { }

            if (tsmiMode.Text == "Tabs Mode")
            {
                if (funCheckTab(nTemp.Attributes["ManagementID"].Value + nTemp.Attributes["Name"].Value))
                {
                    if (MenuType.ToUpper() == "USERCONTROL")
                    {
                        TabPage tabTemp = new TabPage();
                        tabTemp.Text = taskItem.Text;
                        tabTemp.Tag  = nTemp.Attributes["ManagementID"].Value + nTemp.Attributes["Name"].Value;
                        //tabTemp.Controls.Add(uct);
                        ToolCommand.csUserControl CSUC = new ToolCommand.csUserControl();
                        CSUC.OfficeSpaceId = Program.OffiecSpaceId;
                        ToolCommand.ucForm paTemp = CSUC.getPanel(strConnect, UserID, position, nTemp.Attributes["ToolID"].Value);
                        paTemp.Margin = new Padding(0);
                        paTemp.Dock   = DockStyle.Fill;
                        tabTemp.Controls.Add(paTemp);
                        tabControl1.Controls.Add(tabTemp);
                        tabControl1.SelectedTab = tabTemp;
                    }
                    else
                    {
                        if (DisplayType == "SQL")
                        {
                            frmMangements.UserControl1_DB uct = new frmMangements.UserControl1_DB();
                            uct._IMG       = Image.FromFile("" + taskItem.Image.Tag);
                            uct._Position  = setPositon(position);
                            uct._User      = UserID;
                            uct._ProjectID = ProjectID;
                            uct.loadMangement(xmlMange, xmlDetail, xmlTool, strParameter, strConnect);
                            //uct.loadTools(xmlTool);
                            uct.loadTheme(xmlTheme);
                            uct.Dock   = DockStyle.Fill;
                            uct.Margin = new System.Windows.Forms.Padding(0);

                            TabPage tabTemp = new TabPage();
                            tabTemp.Text = taskItem.Text;
                            tabTemp.Tag  = nTemp.Attributes["ManagementID"].Value + nTemp.Attributes["Name"].Value;
                            tabTemp.Controls.Add(uct);
                            tabControl1.Controls.Add(tabTemp);
                            tabControl1.SelectedTab = tabTemp;
                        }
                        else
                        {
                            frmMangements.UserControl1 uct = new frmMangements.UserControl1();
                            uct.OffiecSpaceId = Program.OffiecSpaceId;
                            try { uct._IMG = Image.FromFile("" + taskItem.Image.Tag); }
                            catch { }
                            uct._Position  = setPositon(position);
                            uct._User      = UserID;
                            uct._ProjectID = ProjectID;
                            uct.loadMangement(xmlMange, xmlDetail, xmlTool, strParameter, strConnect);
                            //uct.loadTools(xmlTool);
                            uct.loadTheme(xmlTheme);
                            uct.Dock   = DockStyle.Fill;
                            uct.Margin = new System.Windows.Forms.Padding(0);

                            TabPage tabTemp = new TabPage();
                            tabTemp.Text = taskItem.Text;
                            tabTemp.Tag  = nTemp.Attributes["ManagementID"].Value + nTemp.Attributes["Name"].Value;
                            tabTemp.Controls.Add(uct);
                            tabControl1.Controls.Add(tabTemp);
                            tabControl1.SelectedTab = tabTemp;
                        }
                    }
                }
            }
            else
            {
                if (checkMdi(nTemp.Attributes["ManagementID"].Value + nTemp.Attributes["Name"].Value))
                {
                    if (MenuType.ToUpper() == "USERCONTROL")
                    {
                        ToolCommand.csUserControl CSUC = new ToolCommand.csUserControl();
                        CSUC.OfficeSpaceId = Program.OffiecSpaceId;
                        ToolCommand.ucForm paTemp = CSUC.getPanel(strConnect, UserID, position, nTemp.Attributes["ToolID"].Value);
                        paTemp.Margin = new Padding(0);
                        paTemp.Dock   = DockStyle.Fill;

                        Form frm = new Form();
                        frm.Name        = taskItem.Text;
                        frm.WindowState = FormWindowState.Maximized;
                        frm.Text        = taskItem.Text;
                        frm.Icon        = new Icon("Icon/FauxS.ico");
                        frm.Tag         = nTemp.Attributes["ManagementID"].Value + nTemp.Attributes["Name"].Value;
                        frm.MdiParent   = this;
                        frm.Size        = new Size(800, 600);
                        frm.Controls.Add(paTemp);
                        frm.Show();
                        frmList.Add(frm);
                    }
                    else
                    {
                        if (DisplayType == "SQL")
                        {
                            frmMangements.UserControl1_DB uct = new frmMangements.UserControl1_DB();
                            uct._IMG       = Image.FromFile("" + taskItem.Image.Tag);
                            uct._Position  = setPositon(position);
                            uct._ProjectID = ProjectID;
                            uct._User      = UserID;
                            uct.loadMangement(xmlMange, xmlDetail, xmlTool, strParameter, strConnect);
                            uct.loadTheme(xmlTheme);
                            //uct.loadTools(xmlTool);
                            uct.Dock   = DockStyle.Fill;
                            uct.Margin = new System.Windows.Forms.Padding(0);

                            uct._frmParent = this;
                            Form frm = new Form();
                            frm.Name        = "Form Management";
                            frm.WindowState = FormWindowState.Maximized;
                            frm.Text        = taskItem.Text;
                            frm.Icon        = new Icon("Icon/FauxS.ico");
                            frm.Tag         = nTemp.Attributes["ManagementID"].Value + nTemp.Attributes["Name"].Value;
                            frm.MdiParent   = this;
                            frm.Size        = new Size(800, 600);
                            frm.Controls.Add(uct);
                            frm.Show();
                            frmList.Add(frm);
                        }
                        else
                        {
                            frmMangements.UserControl1 uct = new frmMangements.UserControl1();
                            uct.OffiecSpaceId = Program.OffiecSpaceId;
                            uct._IMG          = Image.FromFile("" + taskItem.Image.Tag);
                            uct._Position     = setPositon(position);
                            uct._ProjectID    = ProjectID;
                            uct._User         = UserID;
                            uct.loadMangement(xmlMange, xmlDetail, xmlTool, strParameter, strConnect);
                            uct.loadTheme(xmlTheme);
                            //uct.loadTools(xmlTool);
                            uct.Dock   = DockStyle.Fill;
                            uct.Margin = new System.Windows.Forms.Padding(0);

                            uct._frmParent = this;
                            Form frm = new Form();
                            frm.Name        = "Form Management";
                            frm.WindowState = FormWindowState.Maximized;
                            frm.Text        = taskItem.Text;
                            frm.Icon        = new Icon("Icon/FauxS.ico");
                            frm.Tag         = nTemp.Attributes["ManagementID"].Value + nTemp.Attributes["Name"].Value;
                            frm.MdiParent   = this;
                            frm.Size        = new Size(800, 600);
                            frm.Controls.Add(uct);
                            frm.Show();
                            frmList.Add(frm);
                        }
                    }
                }
            }
            this.Update();
            lbStatus.Text = "Ready...";
            #endregion
        }
Example #3
0
 private void InitializeComponent()
 {
     this.SolMenupanel = new System.Windows.Forms.Panel();
     this.taskPane1 = new XPExplorerBar.TaskPane();
     this.NewTasktem = new XPExplorerBar.TaskItem();
     this.SaveTaskitem = new XPExplorerBar.TaskItem();
     this.EditTaskItem = new XPExplorerBar.TaskItem();
     this.PrintTaskItem = new XPExplorerBar.TaskItem();
     this.CloseTaskItem = new XPExplorerBar.TaskItem();
     this.RefreshTaskItem = new XPExplorerBar.TaskItem();
     this.PasifTaskPane = new XPExplorerBar.TaskItem();
     this.SaveInformationTaskPane = new XPExplorerBar.TaskItem();
     this.AktiftaskItem = new XPExplorerBar.TaskItem();
     this.panel1 = new System.Windows.Forms.Panel();
     this.SaveInformationexpando = new XPExplorerBar.Expando();
     this.SolMenupanel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.taskPane1)).BeginInit();
     this.taskPane1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.SaveInformationexpando)).BeginInit();
     this.SaveInformationexpando.SuspendLayout();
     this.SuspendLayout();
     //
     // SolMenupanel
     //
     this.SolMenupanel.Controls.Add(this.taskPane1);
     this.SolMenupanel.Dock = System.Windows.Forms.DockStyle.Left;
     this.SolMenupanel.Location = new System.Drawing.Point(0, 0);
     this.SolMenupanel.Name = "SolMenupanel";
     this.SolMenupanel.Size = new System.Drawing.Size(173, 597);
     this.SolMenupanel.TabIndex = 0;
     //
     // taskPane1
     //
     this.taskPane1.AutoScrollMargin = new System.Drawing.Size(12, 12);
     this.taskPane1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.taskPane1.Expandos.AddRange(new XPExplorerBar.Expando[] {
     this.SaveInformationexpando});
     this.taskPane1.Location = new System.Drawing.Point(0, 0);
     this.taskPane1.Name = "taskPane1";
     this.taskPane1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.taskPane1.Size = new System.Drawing.Size(173, 597);
     this.taskPane1.TabIndex = 0;
     this.taskPane1.Text = "taskPane";
     //
     // NewTasktem
     //
     this.NewTasktem.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.NewTasktem.BackColor = System.Drawing.Color.Transparent;
     this.NewTasktem.Image = null;
     this.NewTasktem.Location = new System.Drawing.Point(14, 39);
     this.NewTasktem.Name = "NewTasktem";
     this.NewTasktem.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.NewTasktem.Size = new System.Drawing.Size(119, 16);
     this.NewTasktem.TabIndex = 0;
     this.NewTasktem.Text = "Yeni Kayıt ( Ins )";
     this.NewTasktem.TextAlign = System.Drawing.ContentAlignment.TopLeft;
     this.NewTasktem.UseVisualStyleBackColor = false;
     this.NewTasktem.Click += new System.EventHandler(this.NewTasktem_Click);
     //
     // SaveTaskitem
     //
     this.SaveTaskitem.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.SaveTaskitem.BackColor = System.Drawing.Color.Transparent;
     this.SaveTaskitem.Image = null;
     this.SaveTaskitem.Location = new System.Drawing.Point(14, 61);
     this.SaveTaskitem.Name = "SaveTaskitem";
     this.SaveTaskitem.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.SaveTaskitem.Size = new System.Drawing.Size(119, 16);
     this.SaveTaskitem.TabIndex = 1;
     this.SaveTaskitem.Text = "Kaydet ( F2 )";
     this.SaveTaskitem.TextAlign = System.Drawing.ContentAlignment.TopLeft;
     this.SaveTaskitem.UseVisualStyleBackColor = false;
     this.SaveTaskitem.Click += new System.EventHandler(this.SaveTaskitem_Click);
     //
     // EditTaskItem
     //
     this.EditTaskItem.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.EditTaskItem.BackColor = System.Drawing.Color.Transparent;
     this.EditTaskItem.Image = null;
     this.EditTaskItem.Location = new System.Drawing.Point(14, 83);
     this.EditTaskItem.Name = "EditTaskItem";
     this.EditTaskItem.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.EditTaskItem.Size = new System.Drawing.Size(119, 16);
     this.EditTaskItem.TabIndex = 2;
     this.EditTaskItem.Text = "Düzenle ( F4 )";
     this.EditTaskItem.TextAlign = System.Drawing.ContentAlignment.TopLeft;
     this.EditTaskItem.UseVisualStyleBackColor = false;
     this.EditTaskItem.Click += new System.EventHandler(this.EditTaskItem_Click);
     //
     // PrintTaskItem
     //
     this.PrintTaskItem.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.PrintTaskItem.BackColor = System.Drawing.Color.Transparent;
     this.PrintTaskItem.Image = null;
     this.PrintTaskItem.Location = new System.Drawing.Point(14, 105);
     this.PrintTaskItem.Name = "PrintTaskItem";
     this.PrintTaskItem.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.PrintTaskItem.Size = new System.Drawing.Size(119, 16);
     this.PrintTaskItem.TabIndex = 3;
     this.PrintTaskItem.Text = "Yazdır ( Ctrl+P )";
     this.PrintTaskItem.TextAlign = System.Drawing.ContentAlignment.TopLeft;
     this.PrintTaskItem.UseVisualStyleBackColor = false;
     //
     // CloseTaskItem
     //
     this.CloseTaskItem.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.CloseTaskItem.BackColor = System.Drawing.Color.Transparent;
     this.CloseTaskItem.Image = null;
     this.CloseTaskItem.Location = new System.Drawing.Point(14, 127);
     this.CloseTaskItem.Name = "CloseTaskItem";
     this.CloseTaskItem.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.CloseTaskItem.Size = new System.Drawing.Size(119, 16);
     this.CloseTaskItem.TabIndex = 4;
     this.CloseTaskItem.Text = "Kapat ( Shift+Esc )";
     this.CloseTaskItem.TextAlign = System.Drawing.ContentAlignment.TopLeft;
     this.CloseTaskItem.UseVisualStyleBackColor = false;
     this.CloseTaskItem.Click += new System.EventHandler(this.CloseTaskItem_Click);
     //
     // RefreshTaskItem
     //
     this.RefreshTaskItem.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.RefreshTaskItem.BackColor = System.Drawing.Color.Transparent;
     this.RefreshTaskItem.Image = null;
     this.RefreshTaskItem.Location = new System.Drawing.Point(14, 149);
     this.RefreshTaskItem.Name = "RefreshTaskItem";
     this.RefreshTaskItem.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.RefreshTaskItem.Size = new System.Drawing.Size(119, 16);
     this.RefreshTaskItem.TabIndex = 5;
     this.RefreshTaskItem.Text = "Tazele ( F5 )";
     this.RefreshTaskItem.TextAlign = System.Drawing.ContentAlignment.TopLeft;
     this.RefreshTaskItem.UseVisualStyleBackColor = false;
     this.RefreshTaskItem.Click += new System.EventHandler(this.RefreshTaskItem_Click);
     //
     // PasifTaskPane
     //
     this.PasifTaskPane.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.PasifTaskPane.BackColor = System.Drawing.Color.Transparent;
     this.PasifTaskPane.Image = null;
     this.PasifTaskPane.Location = new System.Drawing.Point(14, 171);
     this.PasifTaskPane.Name = "PasifTaskPane";
     this.PasifTaskPane.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.PasifTaskPane.Size = new System.Drawing.Size(119, 16);
     this.PasifTaskPane.TabIndex = 6;
     this.PasifTaskPane.Text = "Pasif";
     this.PasifTaskPane.TextAlign = System.Drawing.ContentAlignment.TopLeft;
     this.PasifTaskPane.UseVisualStyleBackColor = false;
     this.PasifTaskPane.Click += new System.EventHandler(this.PasifTaskPane_Click);
     //
     // SaveInformationTaskPane
     //
     this.SaveInformationTaskPane.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.SaveInformationTaskPane.BackColor = System.Drawing.Color.Transparent;
     this.SaveInformationTaskPane.Image = null;
     this.SaveInformationTaskPane.Location = new System.Drawing.Point(14, 215);
     this.SaveInformationTaskPane.Name = "SaveInformationTaskPane";
     this.SaveInformationTaskPane.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.SaveInformationTaskPane.Size = new System.Drawing.Size(119, 20);
     this.SaveInformationTaskPane.TabIndex = 7;
     this.SaveInformationTaskPane.Text = "Kayıt Bilgileri";
     this.SaveInformationTaskPane.TextAlign = System.Drawing.ContentAlignment.TopLeft;
     this.SaveInformationTaskPane.UseVisualStyleBackColor = false;
     //
     // AktiftaskItem
     //
     this.AktiftaskItem.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.AktiftaskItem.BackColor = System.Drawing.Color.Transparent;
     this.AktiftaskItem.Image = null;
     this.AktiftaskItem.Location = new System.Drawing.Point(14, 193);
     this.AktiftaskItem.Name = "AktiftaskItem";
     this.AktiftaskItem.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.AktiftaskItem.Size = new System.Drawing.Size(119, 16);
     this.AktiftaskItem.TabIndex = 8;
     this.AktiftaskItem.Text = "Aktif";
     this.AktiftaskItem.TextAlign = System.Drawing.ContentAlignment.TopLeft;
     this.AktiftaskItem.UseVisualStyleBackColor = false;
     this.AktiftaskItem.Click += new System.EventHandler(this.AktiftaskItem_Click);
     //
     // panel1
     //
     this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.panel1.Location = new System.Drawing.Point(173, 0);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(820, 597);
     this.panel1.TabIndex = 1;
     //
     // SaveInformationexpando
     //
     this.SaveInformationexpando.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.SaveInformationexpando.Animate = true;
     this.SaveInformationexpando.CustomHeaderSettings.TitleFont = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
     this.SaveInformationexpando.ExpandedHeight = 260;
     this.SaveInformationexpando.Font = new System.Drawing.Font("Tahoma", 8.25F);
     this.SaveInformationexpando.Items.AddRange(new System.Windows.Forms.Control[] {
     this.NewTasktem,
     this.AktiftaskItem,
     this.SaveInformationTaskPane,
     this.PasifTaskPane,
     this.RefreshTaskItem,
     this.CloseTaskItem,
     this.PrintTaskItem,
     this.EditTaskItem,
     this.SaveTaskitem});
     this.SaveInformationexpando.Location = new System.Drawing.Point(12, 12);
     this.SaveInformationexpando.Name = "SaveInformationexpando";
     this.SaveInformationexpando.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.SaveInformationexpando.Size = new System.Drawing.Size(149, 260);
     this.SaveInformationexpando.SpecialGroup = true;
     this.SaveInformationexpando.TabIndex = 1;
     this.SaveInformationexpando.Text = "Kayıt İşlemleri";
     //
     // frmInfoForm
     //
     this.ClientSize = new System.Drawing.Size(993, 597);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.SolMenupanel);
     this.KeyPreview = true;
     this.Name = "frmInfoForm";
     this.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.ShowIcon = false;
     this.SolMenupanel.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.taskPane1)).EndInit();
     this.taskPane1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.SaveInformationexpando)).EndInit();
     this.SaveInformationexpando.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #4
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmMain));
     this.tskTasks             = new XPExplorerBar.TaskPane();
     this.expHostTasks         = new XPExplorerBar.Expando();
     this.tsiManageBannedHosts = new XPExplorerBar.TaskItem();
     this.imgIcons             = new System.Windows.Forms.ImageList(this.components);
     this.tsiAddUrlToCrawl     = new XPExplorerBar.TaskItem();
     this.expStatisticsTasks   = new XPExplorerBar.Expando();
     this.tsiUserStatistics    = new XPExplorerBar.TaskItem();
     this.tsiServerStatistics  = new XPExplorerBar.TaskItem();
     this.expVersioningTasks   = new XPExplorerBar.Expando();
     this.tsiAddClientUpdate   = new XPExplorerBar.TaskItem();
     this.tsiManageServerList  = new XPExplorerBar.TaskItem();
     this.mnuMain      = new System.Windows.Forms.MainMenu(this.components);
     this.mnuExit      = new System.Windows.Forms.MenuItem();
     this.mnuWindows   = new System.Windows.Forms.MenuItem();
     this.mnuHelp      = new System.Windows.Forms.MenuItem();
     this.mnuHelpAbout = new System.Windows.Forms.MenuItem();
     ((System.ComponentModel.ISupportInitialize)(this.tskTasks)).BeginInit();
     this.tskTasks.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.expHostTasks)).BeginInit();
     this.expHostTasks.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.expStatisticsTasks)).BeginInit();
     this.expStatisticsTasks.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.expVersioningTasks)).BeginInit();
     this.expVersioningTasks.SuspendLayout();
     this.SuspendLayout();
     //
     // tskTasks
     //
     this.tskTasks.AutoScroll       = true;
     this.tskTasks.AutoScrollMargin = new System.Drawing.Size(12, 12);
     this.tskTasks.CustomSettings.GradientEndColor = System.Drawing.Color.SlateGray;
     this.tskTasks.CustomSettings.Watermark        = ((System.Drawing.Image)(resources.GetObject("resource.Watermark")));
     this.tskTasks.Dock = System.Windows.Forms.DockStyle.Left;
     this.tskTasks.Expandos.AddRange(new XPExplorerBar.Expando[] {
         this.expHostTasks,
         this.expStatisticsTasks,
         this.expVersioningTasks
     });
     this.tskTasks.Location = new System.Drawing.Point(0, 0);
     this.tskTasks.Name     = "tskTasks";
     this.tskTasks.Size     = new System.Drawing.Size(200, 405);
     this.tskTasks.TabIndex = 1;
     this.tskTasks.Text     = "Task Pane";
     //
     // expHostTasks
     //
     this.expHostTasks.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                      | System.Windows.Forms.AnchorStyles.Right)));
     this.expHostTasks.Animate = true;
     this.expHostTasks.Font    = new System.Drawing.Font("Tahoma", 8.25F);
     this.expHostTasks.Items.AddRange(new System.Windows.Forms.Control[] {
         this.tsiManageBannedHosts,
         this.tsiAddUrlToCrawl
     });
     this.expHostTasks.Location   = new System.Drawing.Point(12, 12);
     this.expHostTasks.Name       = "expHostTasks";
     this.expHostTasks.Size       = new System.Drawing.Size(176, 100);
     this.expHostTasks.TabIndex   = 0;
     this.expHostTasks.Text       = "Hosts Tasks";
     this.expHostTasks.TitleImage = ((System.Drawing.Image)(resources.GetObject("expHostTasks.TitleImage")));
     //
     // tsiManageBannedHosts
     //
     this.tsiManageBannedHosts.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                              | System.Windows.Forms.AnchorStyles.Right)));
     this.tsiManageBannedHosts.BackColor  = System.Drawing.Color.Transparent;
     this.tsiManageBannedHosts.Image      = ((System.Drawing.Image)(resources.GetObject("tsiManageBannedHosts.Image")));
     this.tsiManageBannedHosts.ImageIndex = 0;
     this.tsiManageBannedHosts.ImageList  = this.imgIcons;
     this.tsiManageBannedHosts.Location   = new System.Drawing.Point(8, 48);
     this.tsiManageBannedHosts.Name       = "tsiManageBannedHosts";
     this.tsiManageBannedHosts.Size       = new System.Drawing.Size(150, 16);
     this.tsiManageBannedHosts.TabIndex   = 0;
     this.tsiManageBannedHosts.Text       = "Manage Banned Hosts";
     this.tsiManageBannedHosts.TextAlign  = System.Drawing.ContentAlignment.TopLeft;
     this.tsiManageBannedHosts.UseVisualStyleBackColor = false;
     this.tsiManageBannedHosts.Click += new System.EventHandler(this.tsiManageBannedHosts_Click);
     //
     // imgIcons
     //
     this.imgIcons.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imgIcons.ImageStream")));
     this.imgIcons.TransparentColor = System.Drawing.Color.Transparent;
     this.imgIcons.Images.SetKeyName(0, "");
     this.imgIcons.Images.SetKeyName(1, "");
     this.imgIcons.Images.SetKeyName(2, "");
     this.imgIcons.Images.SetKeyName(3, "");
     this.imgIcons.Images.SetKeyName(4, "");
     this.imgIcons.Images.SetKeyName(5, "");
     this.imgIcons.Images.SetKeyName(6, "");
     this.imgIcons.Images.SetKeyName(7, "");
     //
     // tsiAddUrlToCrawl
     //
     this.tsiAddUrlToCrawl.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                          | System.Windows.Forms.AnchorStyles.Right)));
     this.tsiAddUrlToCrawl.BackColor  = System.Drawing.Color.Transparent;
     this.tsiAddUrlToCrawl.Image      = ((System.Drawing.Image)(resources.GetObject("tsiAddUrlToCrawl.Image")));
     this.tsiAddUrlToCrawl.ImageIndex = 1;
     this.tsiAddUrlToCrawl.ImageList  = this.imgIcons;
     this.tsiAddUrlToCrawl.Location   = new System.Drawing.Point(8, 72);
     this.tsiAddUrlToCrawl.Name       = "tsiAddUrlToCrawl";
     this.tsiAddUrlToCrawl.Size       = new System.Drawing.Size(150, 16);
     this.tsiAddUrlToCrawl.TabIndex   = 1;
     this.tsiAddUrlToCrawl.Text       = "Add a new Url to crawl";
     this.tsiAddUrlToCrawl.TextAlign  = System.Drawing.ContentAlignment.TopLeft;
     this.tsiAddUrlToCrawl.UseVisualStyleBackColor = false;
     this.tsiAddUrlToCrawl.Click += new System.EventHandler(this.tsiAddUrlToCrawl_Click);
     //
     // expStatisticsTasks
     //
     this.expStatisticsTasks.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                            | System.Windows.Forms.AnchorStyles.Right)));
     this.expStatisticsTasks.Animate = true;
     this.expStatisticsTasks.Font    = new System.Drawing.Font("Tahoma", 8.25F);
     this.expStatisticsTasks.Items.AddRange(new System.Windows.Forms.Control[] {
         this.tsiUserStatistics,
         this.tsiServerStatistics
     });
     this.expStatisticsTasks.Location   = new System.Drawing.Point(12, 124);
     this.expStatisticsTasks.Name       = "expStatisticsTasks";
     this.expStatisticsTasks.Size       = new System.Drawing.Size(176, 100);
     this.expStatisticsTasks.TabIndex   = 1;
     this.expStatisticsTasks.Text       = "Statistics Tasks";
     this.expStatisticsTasks.TitleImage = ((System.Drawing.Image)(resources.GetObject("expStatisticsTasks.TitleImage")));
     //
     // tsiUserStatistics
     //
     this.tsiUserStatistics.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                           | System.Windows.Forms.AnchorStyles.Right)));
     this.tsiUserStatistics.BackColor  = System.Drawing.Color.Transparent;
     this.tsiUserStatistics.Image      = ((System.Drawing.Image)(resources.GetObject("tsiUserStatistics.Image")));
     this.tsiUserStatistics.ImageIndex = 2;
     this.tsiUserStatistics.ImageList  = this.imgIcons;
     this.tsiUserStatistics.Location   = new System.Drawing.Point(8, 48);
     this.tsiUserStatistics.Name       = "tsiUserStatistics";
     this.tsiUserStatistics.Size       = new System.Drawing.Size(150, 16);
     this.tsiUserStatistics.TabIndex   = 0;
     this.tsiUserStatistics.Text       = "View User statistics";
     this.tsiUserStatistics.TextAlign  = System.Drawing.ContentAlignment.TopLeft;
     this.tsiUserStatistics.UseVisualStyleBackColor = false;
     this.tsiUserStatistics.Click += new System.EventHandler(this.tsiUserStatistics_Click);
     //
     // tsiServerStatistics
     //
     this.tsiServerStatistics.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                             | System.Windows.Forms.AnchorStyles.Right)));
     this.tsiServerStatistics.BackColor  = System.Drawing.Color.Transparent;
     this.tsiServerStatistics.Image      = ((System.Drawing.Image)(resources.GetObject("tsiServerStatistics.Image")));
     this.tsiServerStatistics.ImageIndex = 3;
     this.tsiServerStatistics.ImageList  = this.imgIcons;
     this.tsiServerStatistics.Location   = new System.Drawing.Point(8, 72);
     this.tsiServerStatistics.Name       = "tsiServerStatistics";
     this.tsiServerStatistics.Size       = new System.Drawing.Size(150, 16);
     this.tsiServerStatistics.TabIndex   = 1;
     this.tsiServerStatistics.Text       = "View Server statistics";
     this.tsiServerStatistics.TextAlign  = System.Drawing.ContentAlignment.TopLeft;
     this.tsiServerStatistics.UseVisualStyleBackColor = false;
     this.tsiServerStatistics.Click += new System.EventHandler(this.tsiServerStatistics_Click);
     //
     // expVersioningTasks
     //
     this.expVersioningTasks.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                            | System.Windows.Forms.AnchorStyles.Right)));
     this.expVersioningTasks.Animate = true;
     this.expVersioningTasks.Font    = new System.Drawing.Font("Tahoma", 8.25F);
     this.expVersioningTasks.Items.AddRange(new System.Windows.Forms.Control[] {
         this.tsiAddClientUpdate,
         this.tsiManageServerList
     });
     this.expVersioningTasks.Location   = new System.Drawing.Point(12, 236);
     this.expVersioningTasks.Name       = "expVersioningTasks";
     this.expVersioningTasks.Size       = new System.Drawing.Size(176, 100);
     this.expVersioningTasks.TabIndex   = 2;
     this.expVersioningTasks.Text       = "Versioning Tasks";
     this.expVersioningTasks.TitleImage = ((System.Drawing.Image)(resources.GetObject("expVersioningTasks.TitleImage")));
     //
     // tsiAddClientUpdate
     //
     this.tsiAddClientUpdate.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                            | System.Windows.Forms.AnchorStyles.Right)));
     this.tsiAddClientUpdate.BackColor  = System.Drawing.Color.Transparent;
     this.tsiAddClientUpdate.Image      = ((System.Drawing.Image)(resources.GetObject("tsiAddClientUpdate.Image")));
     this.tsiAddClientUpdate.ImageIndex = 5;
     this.tsiAddClientUpdate.ImageList  = this.imgIcons;
     this.tsiAddClientUpdate.Location   = new System.Drawing.Point(8, 48);
     this.tsiAddClientUpdate.Name       = "tsiAddClientUpdate";
     this.tsiAddClientUpdate.Size       = new System.Drawing.Size(150, 16);
     this.tsiAddClientUpdate.TabIndex   = 1;
     this.tsiAddClientUpdate.Text       = "Add a Client Update";
     this.tsiAddClientUpdate.TextAlign  = System.Drawing.ContentAlignment.TopLeft;
     this.tsiAddClientUpdate.UseVisualStyleBackColor = false;
     this.tsiAddClientUpdate.Click += new System.EventHandler(this.tsiAddClientUpdate_Click);
     //
     // tsiManageServerList
     //
     this.tsiManageServerList.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                             | System.Windows.Forms.AnchorStyles.Right)));
     this.tsiManageServerList.BackColor  = System.Drawing.Color.Transparent;
     this.tsiManageServerList.Image      = ((System.Drawing.Image)(resources.GetObject("tsiManageServerList.Image")));
     this.tsiManageServerList.ImageIndex = 7;
     this.tsiManageServerList.ImageList  = this.imgIcons;
     this.tsiManageServerList.Location   = new System.Drawing.Point(8, 72);
     this.tsiManageServerList.Name       = "tsiManageServerList";
     this.tsiManageServerList.Size       = new System.Drawing.Size(150, 16);
     this.tsiManageServerList.TabIndex   = 2;
     this.tsiManageServerList.Text       = "Manage Server List";
     this.tsiManageServerList.TextAlign  = System.Drawing.ContentAlignment.TopLeft;
     this.tsiManageServerList.UseVisualStyleBackColor = false;
     this.tsiManageServerList.Click += new System.EventHandler(this.tsiManageServerList_Click);
     //
     // mnuMain
     //
     this.mnuMain.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.mnuExit,
         this.mnuWindows,
         this.mnuHelp
     });
     //
     // mnuExit
     //
     this.mnuExit.Index  = 0;
     this.mnuExit.Text   = "Exit";
     this.mnuExit.Click += new System.EventHandler(this.mnuExit_Click);
     //
     // mnuWindows
     //
     this.mnuWindows.Index   = 1;
     this.mnuWindows.MdiList = true;
     this.mnuWindows.Text    = "Windows";
     //
     // mnuHelp
     //
     this.mnuHelp.Index = 2;
     this.mnuHelp.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.mnuHelpAbout
     });
     this.mnuHelp.Text = "Help";
     //
     // mnuHelpAbout
     //
     this.mnuHelpAbout.Index  = 0;
     this.mnuHelpAbout.Text   = "About";
     this.mnuHelpAbout.Click += new System.EventHandler(this.mnuHelpAbout_Click);
     //
     // frmMain
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(736, 405);
     this.Controls.Add(this.tskTasks);
     this.Icon           = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.IsMdiContainer = true;
     this.Menu           = this.mnuMain;
     this.Name           = "frmMain";
     this.Text           = "CrawlWave Server Manager";
     this.Load          += new System.EventHandler(this.frmMain_Load);
     ((System.ComponentModel.ISupportInitialize)(this.tskTasks)).EndInit();
     this.tskTasks.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.expHostTasks)).EndInit();
     this.expHostTasks.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.expStatisticsTasks)).EndInit();
     this.expStatisticsTasks.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.expVersioningTasks)).EndInit();
     this.expVersioningTasks.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #5
0
 private void InitializeComponent()
 {
     this.SolMenupanel            = new System.Windows.Forms.Panel();
     this.taskPane1               = new XPExplorerBar.TaskPane();
     this.NewTasktem              = new XPExplorerBar.TaskItem();
     this.SaveTaskitem            = new XPExplorerBar.TaskItem();
     this.EditTaskItem            = new XPExplorerBar.TaskItem();
     this.PrintTaskItem           = new XPExplorerBar.TaskItem();
     this.CloseTaskItem           = new XPExplorerBar.TaskItem();
     this.RefreshTaskItem         = new XPExplorerBar.TaskItem();
     this.PasifTaskPane           = new XPExplorerBar.TaskItem();
     this.SaveInformationTaskPane = new XPExplorerBar.TaskItem();
     this.AktiftaskItem           = new XPExplorerBar.TaskItem();
     this.panel1 = new System.Windows.Forms.Panel();
     this.SaveInformationexpando = new XPExplorerBar.Expando();
     this.SolMenupanel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.taskPane1)).BeginInit();
     this.taskPane1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.SaveInformationexpando)).BeginInit();
     this.SaveInformationexpando.SuspendLayout();
     this.SuspendLayout();
     //
     // SolMenupanel
     //
     this.SolMenupanel.Controls.Add(this.taskPane1);
     this.SolMenupanel.Dock     = System.Windows.Forms.DockStyle.Left;
     this.SolMenupanel.Location = new System.Drawing.Point(0, 0);
     this.SolMenupanel.Name     = "SolMenupanel";
     this.SolMenupanel.Size     = new System.Drawing.Size(173, 597);
     this.SolMenupanel.TabIndex = 0;
     //
     // taskPane1
     //
     this.taskPane1.AutoScrollMargin = new System.Drawing.Size(12, 12);
     this.taskPane1.Dock             = System.Windows.Forms.DockStyle.Fill;
     this.taskPane1.Expandos.AddRange(new XPExplorerBar.Expando[] {
         this.SaveInformationexpando
     });
     this.taskPane1.Location    = new System.Drawing.Point(0, 0);
     this.taskPane1.Name        = "taskPane1";
     this.taskPane1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.taskPane1.Size        = new System.Drawing.Size(173, 597);
     this.taskPane1.TabIndex    = 0;
     this.taskPane1.Text        = "taskPane";
     //
     // NewTasktem
     //
     this.NewTasktem.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                    | System.Windows.Forms.AnchorStyles.Right)));
     this.NewTasktem.BackColor               = System.Drawing.Color.Transparent;
     this.NewTasktem.Image                   = null;
     this.NewTasktem.Location                = new System.Drawing.Point(14, 39);
     this.NewTasktem.Name                    = "NewTasktem";
     this.NewTasktem.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.NewTasktem.Size                    = new System.Drawing.Size(119, 16);
     this.NewTasktem.TabIndex                = 0;
     this.NewTasktem.Text                    = "Yeni Kayıt ( Ins )";
     this.NewTasktem.TextAlign               = System.Drawing.ContentAlignment.TopLeft;
     this.NewTasktem.UseVisualStyleBackColor = false;
     this.NewTasktem.Click                  += new System.EventHandler(this.NewTasktem_Click);
     //
     // SaveTaskitem
     //
     this.SaveTaskitem.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                      | System.Windows.Forms.AnchorStyles.Right)));
     this.SaveTaskitem.BackColor               = System.Drawing.Color.Transparent;
     this.SaveTaskitem.Image                   = null;
     this.SaveTaskitem.Location                = new System.Drawing.Point(14, 61);
     this.SaveTaskitem.Name                    = "SaveTaskitem";
     this.SaveTaskitem.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.SaveTaskitem.Size                    = new System.Drawing.Size(119, 16);
     this.SaveTaskitem.TabIndex                = 1;
     this.SaveTaskitem.Text                    = "Kaydet ( F2 )";
     this.SaveTaskitem.TextAlign               = System.Drawing.ContentAlignment.TopLeft;
     this.SaveTaskitem.UseVisualStyleBackColor = false;
     this.SaveTaskitem.Click                  += new System.EventHandler(this.SaveTaskitem_Click);
     //
     // EditTaskItem
     //
     this.EditTaskItem.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                      | System.Windows.Forms.AnchorStyles.Right)));
     this.EditTaskItem.BackColor               = System.Drawing.Color.Transparent;
     this.EditTaskItem.Image                   = null;
     this.EditTaskItem.Location                = new System.Drawing.Point(14, 83);
     this.EditTaskItem.Name                    = "EditTaskItem";
     this.EditTaskItem.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.EditTaskItem.Size                    = new System.Drawing.Size(119, 16);
     this.EditTaskItem.TabIndex                = 2;
     this.EditTaskItem.Text                    = "Düzenle ( F4 )";
     this.EditTaskItem.TextAlign               = System.Drawing.ContentAlignment.TopLeft;
     this.EditTaskItem.UseVisualStyleBackColor = false;
     this.EditTaskItem.Click                  += new System.EventHandler(this.EditTaskItem_Click);
     //
     // PrintTaskItem
     //
     this.PrintTaskItem.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.PrintTaskItem.BackColor               = System.Drawing.Color.Transparent;
     this.PrintTaskItem.Image                   = null;
     this.PrintTaskItem.Location                = new System.Drawing.Point(14, 105);
     this.PrintTaskItem.Name                    = "PrintTaskItem";
     this.PrintTaskItem.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.PrintTaskItem.Size                    = new System.Drawing.Size(119, 16);
     this.PrintTaskItem.TabIndex                = 3;
     this.PrintTaskItem.Text                    = "Yazdır ( Ctrl+P )";
     this.PrintTaskItem.TextAlign               = System.Drawing.ContentAlignment.TopLeft;
     this.PrintTaskItem.UseVisualStyleBackColor = false;
     //
     // CloseTaskItem
     //
     this.CloseTaskItem.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.CloseTaskItem.BackColor               = System.Drawing.Color.Transparent;
     this.CloseTaskItem.Image                   = null;
     this.CloseTaskItem.Location                = new System.Drawing.Point(14, 127);
     this.CloseTaskItem.Name                    = "CloseTaskItem";
     this.CloseTaskItem.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.CloseTaskItem.Size                    = new System.Drawing.Size(119, 16);
     this.CloseTaskItem.TabIndex                = 4;
     this.CloseTaskItem.Text                    = "Kapat ( Shift+Esc )";
     this.CloseTaskItem.TextAlign               = System.Drawing.ContentAlignment.TopLeft;
     this.CloseTaskItem.UseVisualStyleBackColor = false;
     this.CloseTaskItem.Click                  += new System.EventHandler(this.CloseTaskItem_Click);
     //
     // RefreshTaskItem
     //
     this.RefreshTaskItem.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                         | System.Windows.Forms.AnchorStyles.Right)));
     this.RefreshTaskItem.BackColor               = System.Drawing.Color.Transparent;
     this.RefreshTaskItem.Image                   = null;
     this.RefreshTaskItem.Location                = new System.Drawing.Point(14, 149);
     this.RefreshTaskItem.Name                    = "RefreshTaskItem";
     this.RefreshTaskItem.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.RefreshTaskItem.Size                    = new System.Drawing.Size(119, 16);
     this.RefreshTaskItem.TabIndex                = 5;
     this.RefreshTaskItem.Text                    = "Tazele ( F5 )";
     this.RefreshTaskItem.TextAlign               = System.Drawing.ContentAlignment.TopLeft;
     this.RefreshTaskItem.UseVisualStyleBackColor = false;
     this.RefreshTaskItem.Click                  += new System.EventHandler(this.RefreshTaskItem_Click);
     //
     // PasifTaskPane
     //
     this.PasifTaskPane.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.PasifTaskPane.BackColor               = System.Drawing.Color.Transparent;
     this.PasifTaskPane.Image                   = null;
     this.PasifTaskPane.Location                = new System.Drawing.Point(14, 171);
     this.PasifTaskPane.Name                    = "PasifTaskPane";
     this.PasifTaskPane.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.PasifTaskPane.Size                    = new System.Drawing.Size(119, 16);
     this.PasifTaskPane.TabIndex                = 6;
     this.PasifTaskPane.Text                    = "Pasif";
     this.PasifTaskPane.TextAlign               = System.Drawing.ContentAlignment.TopLeft;
     this.PasifTaskPane.UseVisualStyleBackColor = false;
     this.PasifTaskPane.Click                  += new System.EventHandler(this.PasifTaskPane_Click);
     //
     // SaveInformationTaskPane
     //
     this.SaveInformationTaskPane.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                                 | System.Windows.Forms.AnchorStyles.Right)));
     this.SaveInformationTaskPane.BackColor               = System.Drawing.Color.Transparent;
     this.SaveInformationTaskPane.Image                   = null;
     this.SaveInformationTaskPane.Location                = new System.Drawing.Point(14, 215);
     this.SaveInformationTaskPane.Name                    = "SaveInformationTaskPane";
     this.SaveInformationTaskPane.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.SaveInformationTaskPane.Size                    = new System.Drawing.Size(119, 20);
     this.SaveInformationTaskPane.TabIndex                = 7;
     this.SaveInformationTaskPane.Text                    = "Kayıt Bilgileri";
     this.SaveInformationTaskPane.TextAlign               = System.Drawing.ContentAlignment.TopLeft;
     this.SaveInformationTaskPane.UseVisualStyleBackColor = false;
     //
     // AktiftaskItem
     //
     this.AktiftaskItem.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.AktiftaskItem.BackColor               = System.Drawing.Color.Transparent;
     this.AktiftaskItem.Image                   = null;
     this.AktiftaskItem.Location                = new System.Drawing.Point(14, 193);
     this.AktiftaskItem.Name                    = "AktiftaskItem";
     this.AktiftaskItem.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.AktiftaskItem.Size                    = new System.Drawing.Size(119, 16);
     this.AktiftaskItem.TabIndex                = 8;
     this.AktiftaskItem.Text                    = "Aktif";
     this.AktiftaskItem.TextAlign               = System.Drawing.ContentAlignment.TopLeft;
     this.AktiftaskItem.UseVisualStyleBackColor = false;
     this.AktiftaskItem.Click                  += new System.EventHandler(this.AktiftaskItem_Click);
     //
     // panel1
     //
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Font     = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.panel1.Location = new System.Drawing.Point(173, 0);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(820, 597);
     this.panel1.TabIndex = 1;
     //
     // SaveInformationexpando
     //
     this.SaveInformationexpando.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                                | System.Windows.Forms.AnchorStyles.Right)));
     this.SaveInformationexpando.Animate = true;
     this.SaveInformationexpando.CustomHeaderSettings.TitleFont = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
     this.SaveInformationexpando.ExpandedHeight = 260;
     this.SaveInformationexpando.Font           = new System.Drawing.Font("Tahoma", 8.25F);
     this.SaveInformationexpando.Items.AddRange(new System.Windows.Forms.Control[] {
         this.NewTasktem,
         this.AktiftaskItem,
         this.SaveInformationTaskPane,
         this.PasifTaskPane,
         this.RefreshTaskItem,
         this.CloseTaskItem,
         this.PrintTaskItem,
         this.EditTaskItem,
         this.SaveTaskitem
     });
     this.SaveInformationexpando.Location     = new System.Drawing.Point(12, 12);
     this.SaveInformationexpando.Name         = "SaveInformationexpando";
     this.SaveInformationexpando.RightToLeft  = System.Windows.Forms.RightToLeft.No;
     this.SaveInformationexpando.Size         = new System.Drawing.Size(149, 260);
     this.SaveInformationexpando.SpecialGroup = true;
     this.SaveInformationexpando.TabIndex     = 1;
     this.SaveInformationexpando.Text         = "Kayıt İşlemleri";
     //
     // frmInfoForm
     //
     this.ClientSize = new System.Drawing.Size(993, 597);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.SolMenupanel);
     this.KeyPreview  = true;
     this.Name        = "frmInfoForm";
     this.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.ShowIcon    = false;
     this.SolMenupanel.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.taskPane1)).EndInit();
     this.taskPane1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.SaveInformationexpando)).EndInit();
     this.SaveInformationexpando.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #6
0
 private void InitializeComponent()
 {
     this.Gridpanel = new System.Windows.Forms.Panel();
     this.grid = new DevExpress.XtraGrid.GridControl();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.ListFormPanel = new System.Windows.Forms.Panel();
     this.SolPanel = new System.Windows.Forms.Panel();
     this.SolMenutaskPane = new XPExplorerBar.TaskPane();
     this.Islemler = new XPExplorerBar.Expando();
     this.Incele = new XPExplorerBar.TaskItem();
     this.Duzenle = new XPExplorerBar.TaskItem();
     this.Yazdir = new XPExplorerBar.TaskItem();
     this.Kapat = new XPExplorerBar.TaskItem();
     this.Yardim = new XPExplorerBar.TaskItem();
     this.KayitBilgileri = new XPExplorerBar.TaskItem();
     this.Tazele = new XPExplorerBar.TaskItem();
     this.PasifTask = new XPExplorerBar.TaskItem();
     this.YeniKayit = new XPExplorerBar.TaskItem();
     this.Aktiftask = new XPExplorerBar.TaskItem();
     this.Gridpanel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grid)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     this.ListFormPanel.SuspendLayout();
     this.SolPanel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.SolMenutaskPane)).BeginInit();
     this.SolMenutaskPane.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Islemler)).BeginInit();
     this.Islemler.SuspendLayout();
     this.SuspendLayout();
     //
     // Gridpanel
     //
     this.Gridpanel.Controls.Add(this.grid);
     this.Gridpanel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.Gridpanel.Location = new System.Drawing.Point(149, 0);
     this.Gridpanel.Name = "Gridpanel";
     this.Gridpanel.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Gridpanel.Size = new System.Drawing.Size(867, 749);
     this.Gridpanel.TabIndex = 9;
     //
     // grid
     //
     this.grid.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grid.Location = new System.Drawing.Point(0, 0);
     this.grid.MainView = this.gridView1;
     this.grid.Name = "grid";
     this.grid.Size = new System.Drawing.Size(867, 749);
     this.grid.TabIndex = 0;
     this.grid.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView1});
     //
     // gridView1
     //
     this.gridView1.GridControl = this.grid;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsBehavior.AllowAddRows = DevExpress.Utils.DefaultBoolean.False;
     this.gridView1.OptionsBehavior.AllowDeleteRows = DevExpress.Utils.DefaultBoolean.False;
     this.gridView1.OptionsBehavior.AllowIncrementalSearch = true;
     this.gridView1.OptionsBehavior.Editable = false;
     this.gridView1.OptionsBehavior.ReadOnly = true;
     //
     // ListFormPanel
     //
     this.ListFormPanel.Controls.Add(this.SolPanel);
     this.ListFormPanel.Dock = System.Windows.Forms.DockStyle.Left;
     this.ListFormPanel.Location = new System.Drawing.Point(0, 0);
     this.ListFormPanel.Name = "ListFormPanel";
     this.ListFormPanel.Size = new System.Drawing.Size(149, 749);
     this.ListFormPanel.TabIndex = 8;
     //
     // SolPanel
     //
     this.SolPanel.Controls.Add(this.SolMenutaskPane);
     this.SolPanel.Dock = System.Windows.Forms.DockStyle.Left;
     this.SolPanel.Location = new System.Drawing.Point(0, 0);
     this.SolPanel.Name = "SolPanel";
     this.SolPanel.Size = new System.Drawing.Size(147, 749);
     this.SolPanel.TabIndex = 0;
     //
     // SolMenutaskPane
     //
     this.SolMenutaskPane.AutoScrollMargin = new System.Drawing.Size(12, 12);
     this.SolMenutaskPane.Dock = System.Windows.Forms.DockStyle.Left;
     this.SolMenutaskPane.Expandos.AddRange(new XPExplorerBar.Expando[] {
     this.Islemler});
     this.SolMenutaskPane.Location = new System.Drawing.Point(0, 0);
     this.SolMenutaskPane.Name = "SolMenutaskPane";
     this.SolMenutaskPane.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.SolMenutaskPane.Size = new System.Drawing.Size(147, 749);
     this.SolMenutaskPane.TabIndex = 0;
     //
     // Islemler
     //
     this.Islemler.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.Islemler.Animate = true;
     this.Islemler.CustomHeaderSettings.TitleFont = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
     this.Islemler.ExpandedHeight = 260;
     this.Islemler.Font = new System.Drawing.Font("Tahoma", 8.25F);
     this.Islemler.Items.AddRange(new System.Windows.Forms.Control[] {
     this.Incele,
     this.Duzenle,
     this.Yazdir,
     this.Kapat,
     this.Yardim,
     this.KayitBilgileri,
     this.Tazele,
     this.PasifTask,
     this.YeniKayit,
     this.Aktiftask});
     this.Islemler.Location = new System.Drawing.Point(12, 12);
     this.Islemler.Name = "Islemler";
     this.Islemler.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Islemler.Size = new System.Drawing.Size(123, 260);
     this.Islemler.SpecialGroup = true;
     this.Islemler.TabIndex = 0;
     this.Islemler.Text = "İşlemler";
     //
     // Incele
     //
     this.Incele.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.Incele.BackColor = System.Drawing.Color.Transparent;
     this.Incele.Image = null;
     this.Incele.Location = new System.Drawing.Point(4, 37);
     this.Incele.Name = "Incele";
     this.Incele.Size = new System.Drawing.Size(111, 16);
     this.Incele.TabIndex = 0;
     this.Incele.Tag = "View";
     this.Incele.Text = "İncele ( Ctrl+Enter )";
     this.Incele.TextAlign = System.Drawing.ContentAlignment.TopLeft;
     this.Incele.UseVisualStyleBackColor = false;
     this.Incele.Click += new System.EventHandler(this.Incele_Click);
     //
     // Duzenle
     //
     this.Duzenle.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.Duzenle.BackColor = System.Drawing.Color.Transparent;
     this.Duzenle.Image = null;
     this.Duzenle.Location = new System.Drawing.Point(4, 79);
     this.Duzenle.Name = "Duzenle";
     this.Duzenle.Size = new System.Drawing.Size(97, 16);
     this.Duzenle.TabIndex = 2;
     this.Duzenle.Tag = "Edit";
     this.Duzenle.Text = "Düzenle ( F4 )";
     this.Duzenle.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.Duzenle.UseVisualStyleBackColor = false;
     this.Duzenle.Click += new System.EventHandler(this.Duzenle_Click);
     //
     // Yazdir
     //
     this.Yazdir.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.Yazdir.BackColor = System.Drawing.Color.Transparent;
     this.Yazdir.Image = null;
     this.Yazdir.Location = new System.Drawing.Point(4, 99);
     this.Yazdir.Name = "Yazdir";
     this.Yazdir.Size = new System.Drawing.Size(97, 16);
     this.Yazdir.TabIndex = 3;
     this.Yazdir.Tag = "Print";
     this.Yazdir.Text = "Yazdır ( Ctrl+P )";
     this.Yazdir.TextAlign = System.Drawing.ContentAlignment.TopLeft;
     this.Yazdir.UseVisualStyleBackColor = false;
     //
     // Kapat
     //
     this.Kapat.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.Kapat.BackColor = System.Drawing.Color.Transparent;
     this.Kapat.Image = null;
     this.Kapat.Location = new System.Drawing.Point(4, 119);
     this.Kapat.Name = "Kapat";
     this.Kapat.Size = new System.Drawing.Size(97, 16);
     this.Kapat.TabIndex = 4;
     this.Kapat.Text = "Kapat (Shift+Esc)";
     this.Kapat.TextAlign = System.Drawing.ContentAlignment.TopLeft;
     this.Kapat.UseVisualStyleBackColor = false;
     this.Kapat.Click += new System.EventHandler(this.Kapat_Click);
     //
     // Yardim
     //
     this.Yardim.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.Yardim.BackColor = System.Drawing.Color.Transparent;
     this.Yardim.Image = null;
     this.Yardim.Location = new System.Drawing.Point(4, 139);
     this.Yardim.Name = "Yardim";
     this.Yardim.Size = new System.Drawing.Size(97, 16);
     this.Yardim.TabIndex = 5;
     this.Yardim.Text = "Yardım ( F1 )";
     this.Yardim.TextAlign = System.Drawing.ContentAlignment.TopLeft;
     this.Yardim.UseVisualStyleBackColor = false;
     //
     // KayitBilgileri
     //
     this.KayitBilgileri.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.KayitBilgileri.BackColor = System.Drawing.Color.Transparent;
     this.KayitBilgileri.Image = null;
     this.KayitBilgileri.Location = new System.Drawing.Point(4, 183);
     this.KayitBilgileri.Name = "KayitBilgileri";
     this.KayitBilgileri.Size = new System.Drawing.Size(97, 16);
     this.KayitBilgileri.TabIndex = 6;
     this.KayitBilgileri.Tag = "RecordInformation";
     this.KayitBilgileri.Text = "Kayıt Bilgileri";
     this.KayitBilgileri.TextAlign = System.Drawing.ContentAlignment.TopLeft;
     this.KayitBilgileri.UseVisualStyleBackColor = false;
     //
     // Tazele
     //
     this.Tazele.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.Tazele.BackColor = System.Drawing.Color.Transparent;
     this.Tazele.Image = null;
     this.Tazele.Location = new System.Drawing.Point(4, 161);
     this.Tazele.Name = "Tazele";
     this.Tazele.Size = new System.Drawing.Size(97, 16);
     this.Tazele.TabIndex = 7;
     this.Tazele.Tag = "Refresh";
     this.Tazele.Text = "Tazele ( F5 )";
     this.Tazele.TextAlign = System.Drawing.ContentAlignment.TopLeft;
     this.Tazele.UseVisualStyleBackColor = false;
     this.Tazele.Click += new System.EventHandler(this.Tazele_Click);
     //
     // PasifTask
     //
     this.PasifTask.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.PasifTask.BackColor = System.Drawing.Color.Transparent;
     this.PasifTask.Image = null;
     this.PasifTask.Location = new System.Drawing.Point(4, 205);
     this.PasifTask.Name = "PasifTask";
     this.PasifTask.Size = new System.Drawing.Size(97, 16);
     this.PasifTask.TabIndex = 8;
     this.PasifTask.Tag = "Pasif";
     this.PasifTask.Text = "Pasif ";
     this.PasifTask.TextAlign = System.Drawing.ContentAlignment.TopLeft;
     this.PasifTask.UseVisualStyleBackColor = false;
     this.PasifTask.Click += new System.EventHandler(this.PasifTask_Click);
     //
     // YeniKayit
     //
     this.YeniKayit.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.YeniKayit.BackColor = System.Drawing.Color.Transparent;
     this.YeniKayit.Image = null;
     this.YeniKayit.Location = new System.Drawing.Point(4, 59);
     this.YeniKayit.Name = "YeniKayit";
     this.YeniKayit.Size = new System.Drawing.Size(97, 16);
     this.YeniKayit.TabIndex = 1;
     this.YeniKayit.Tag = "New";
     this.YeniKayit.Text = "Yeni Kayıt ( Ins )";
     this.YeniKayit.TextAlign = System.Drawing.ContentAlignment.TopLeft;
     this.YeniKayit.UseVisualStyleBackColor = false;
     this.YeniKayit.Click += new System.EventHandler(this.YeniKayit_Click);
     //
     // Aktiftask
     //
     this.Aktiftask.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.Aktiftask.BackColor = System.Drawing.Color.Transparent;
     this.Aktiftask.Image = null;
     this.Aktiftask.Location = new System.Drawing.Point(4, 205);
     this.Aktiftask.Name = "Aktiftask";
     this.Aktiftask.Size = new System.Drawing.Size(97, 16);
     this.Aktiftask.TabIndex = 9;
     this.Aktiftask.Tag = "aktif";
     this.Aktiftask.Text = "Aktif";
     this.Aktiftask.TextAlign = System.Drawing.ContentAlignment.TopLeft;
     this.Aktiftask.UseVisualStyleBackColor = false;
     this.Aktiftask.Click += new System.EventHandler(this.Aktiftask_Click);
     //
     // frmListForm
     //
     this.ClientSize = new System.Drawing.Size(1016, 749);
     this.Controls.Add(this.Gridpanel);
     this.Controls.Add(this.ListFormPanel);
     this.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.KeyPreview = true;
     this.Name = "frmListForm";
     this.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.ShowIcon = false;
     this.Load += new System.EventHandler(this.frmListForm_Load);
     this.Gridpanel.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grid)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     this.ListFormPanel.ResumeLayout(false);
     this.SolPanel.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.SolMenutaskPane)).EndInit();
     this.SolMenutaskPane.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.Islemler)).EndInit();
     this.Islemler.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #7
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmMain));
     this.tskTasks = new XPExplorerBar.TaskPane();
     this.expHostTasks = new XPExplorerBar.Expando();
     this.tsiManageBannedHosts = new XPExplorerBar.TaskItem();
     this.imgIcons = new System.Windows.Forms.ImageList(this.components);
     this.tsiAddUrlToCrawl = new XPExplorerBar.TaskItem();
     this.expStatisticsTasks = new XPExplorerBar.Expando();
     this.tsiUserStatistics = new XPExplorerBar.TaskItem();
     this.tsiServerStatistics = new XPExplorerBar.TaskItem();
     this.expVersioningTasks = new XPExplorerBar.Expando();
     this.tsiAddClientUpdate = new XPExplorerBar.TaskItem();
     this.tsiManageServerList = new XPExplorerBar.TaskItem();
     this.mnuMain = new System.Windows.Forms.MainMenu(this.components);
     this.mnuExit = new System.Windows.Forms.MenuItem();
     this.mnuWindows = new System.Windows.Forms.MenuItem();
     this.mnuHelp = new System.Windows.Forms.MenuItem();
     this.mnuHelpAbout = new System.Windows.Forms.MenuItem();
     ((System.ComponentModel.ISupportInitialize)(this.tskTasks)).BeginInit();
     this.tskTasks.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.expHostTasks)).BeginInit();
     this.expHostTasks.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.expStatisticsTasks)).BeginInit();
     this.expStatisticsTasks.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.expVersioningTasks)).BeginInit();
     this.expVersioningTasks.SuspendLayout();
     this.SuspendLayout();
     //
     // tskTasks
     //
     this.tskTasks.AutoScroll = true;
     this.tskTasks.AutoScrollMargin = new System.Drawing.Size(12, 12);
     this.tskTasks.CustomSettings.GradientEndColor = System.Drawing.Color.SlateGray;
     this.tskTasks.CustomSettings.Watermark = ((System.Drawing.Image)(resources.GetObject("resource.Watermark")));
     this.tskTasks.Dock = System.Windows.Forms.DockStyle.Left;
     this.tskTasks.Expandos.AddRange(new XPExplorerBar.Expando[] {
     this.expHostTasks,
     this.expStatisticsTasks,
     this.expVersioningTasks});
     this.tskTasks.Location = new System.Drawing.Point(0, 0);
     this.tskTasks.Name = "tskTasks";
     this.tskTasks.Size = new System.Drawing.Size(200, 405);
     this.tskTasks.TabIndex = 1;
     this.tskTasks.Text = "Task Pane";
     //
     // expHostTasks
     //
     this.expHostTasks.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.expHostTasks.Animate = true;
     this.expHostTasks.Font = new System.Drawing.Font("Tahoma", 8.25F);
     this.expHostTasks.Items.AddRange(new System.Windows.Forms.Control[] {
     this.tsiManageBannedHosts,
     this.tsiAddUrlToCrawl});
     this.expHostTasks.Location = new System.Drawing.Point(12, 12);
     this.expHostTasks.Name = "expHostTasks";
     this.expHostTasks.Size = new System.Drawing.Size(176, 100);
     this.expHostTasks.TabIndex = 0;
     this.expHostTasks.Text = "Hosts Tasks";
     this.expHostTasks.TitleImage = ((System.Drawing.Image)(resources.GetObject("expHostTasks.TitleImage")));
     //
     // tsiManageBannedHosts
     //
     this.tsiManageBannedHosts.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.tsiManageBannedHosts.BackColor = System.Drawing.Color.Transparent;
     this.tsiManageBannedHosts.Image = ((System.Drawing.Image)(resources.GetObject("tsiManageBannedHosts.Image")));
     this.tsiManageBannedHosts.ImageIndex = 0;
     this.tsiManageBannedHosts.ImageList = this.imgIcons;
     this.tsiManageBannedHosts.Location = new System.Drawing.Point(8, 48);
     this.tsiManageBannedHosts.Name = "tsiManageBannedHosts";
     this.tsiManageBannedHosts.Size = new System.Drawing.Size(150, 16);
     this.tsiManageBannedHosts.TabIndex = 0;
     this.tsiManageBannedHosts.Text = "Manage Banned Hosts";
     this.tsiManageBannedHosts.TextAlign = System.Drawing.ContentAlignment.TopLeft;
     this.tsiManageBannedHosts.UseVisualStyleBackColor = false;
     this.tsiManageBannedHosts.Click += new System.EventHandler(this.tsiManageBannedHosts_Click);
     //
     // imgIcons
     //
     this.imgIcons.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imgIcons.ImageStream")));
     this.imgIcons.TransparentColor = System.Drawing.Color.Transparent;
     this.imgIcons.Images.SetKeyName(0, "");
     this.imgIcons.Images.SetKeyName(1, "");
     this.imgIcons.Images.SetKeyName(2, "");
     this.imgIcons.Images.SetKeyName(3, "");
     this.imgIcons.Images.SetKeyName(4, "");
     this.imgIcons.Images.SetKeyName(5, "");
     this.imgIcons.Images.SetKeyName(6, "");
     this.imgIcons.Images.SetKeyName(7, "");
     //
     // tsiAddUrlToCrawl
     //
     this.tsiAddUrlToCrawl.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.tsiAddUrlToCrawl.BackColor = System.Drawing.Color.Transparent;
     this.tsiAddUrlToCrawl.Image = ((System.Drawing.Image)(resources.GetObject("tsiAddUrlToCrawl.Image")));
     this.tsiAddUrlToCrawl.ImageIndex = 1;
     this.tsiAddUrlToCrawl.ImageList = this.imgIcons;
     this.tsiAddUrlToCrawl.Location = new System.Drawing.Point(8, 72);
     this.tsiAddUrlToCrawl.Name = "tsiAddUrlToCrawl";
     this.tsiAddUrlToCrawl.Size = new System.Drawing.Size(150, 16);
     this.tsiAddUrlToCrawl.TabIndex = 1;
     this.tsiAddUrlToCrawl.Text = "Add a new Url to crawl";
     this.tsiAddUrlToCrawl.TextAlign = System.Drawing.ContentAlignment.TopLeft;
     this.tsiAddUrlToCrawl.UseVisualStyleBackColor = false;
     this.tsiAddUrlToCrawl.Click += new System.EventHandler(this.tsiAddUrlToCrawl_Click);
     //
     // expStatisticsTasks
     //
     this.expStatisticsTasks.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.expStatisticsTasks.Animate = true;
     this.expStatisticsTasks.Font = new System.Drawing.Font("Tahoma", 8.25F);
     this.expStatisticsTasks.Items.AddRange(new System.Windows.Forms.Control[] {
     this.tsiUserStatistics,
     this.tsiServerStatistics});
     this.expStatisticsTasks.Location = new System.Drawing.Point(12, 124);
     this.expStatisticsTasks.Name = "expStatisticsTasks";
     this.expStatisticsTasks.Size = new System.Drawing.Size(176, 100);
     this.expStatisticsTasks.TabIndex = 1;
     this.expStatisticsTasks.Text = "Statistics Tasks";
     this.expStatisticsTasks.TitleImage = ((System.Drawing.Image)(resources.GetObject("expStatisticsTasks.TitleImage")));
     //
     // tsiUserStatistics
     //
     this.tsiUserStatistics.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.tsiUserStatistics.BackColor = System.Drawing.Color.Transparent;
     this.tsiUserStatistics.Image = ((System.Drawing.Image)(resources.GetObject("tsiUserStatistics.Image")));
     this.tsiUserStatistics.ImageIndex = 2;
     this.tsiUserStatistics.ImageList = this.imgIcons;
     this.tsiUserStatistics.Location = new System.Drawing.Point(8, 48);
     this.tsiUserStatistics.Name = "tsiUserStatistics";
     this.tsiUserStatistics.Size = new System.Drawing.Size(150, 16);
     this.tsiUserStatistics.TabIndex = 0;
     this.tsiUserStatistics.Text = "View User statistics";
     this.tsiUserStatistics.TextAlign = System.Drawing.ContentAlignment.TopLeft;
     this.tsiUserStatistics.UseVisualStyleBackColor = false;
     this.tsiUserStatistics.Click += new System.EventHandler(this.tsiUserStatistics_Click);
     //
     // tsiServerStatistics
     //
     this.tsiServerStatistics.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.tsiServerStatistics.BackColor = System.Drawing.Color.Transparent;
     this.tsiServerStatistics.Image = ((System.Drawing.Image)(resources.GetObject("tsiServerStatistics.Image")));
     this.tsiServerStatistics.ImageIndex = 3;
     this.tsiServerStatistics.ImageList = this.imgIcons;
     this.tsiServerStatistics.Location = new System.Drawing.Point(8, 72);
     this.tsiServerStatistics.Name = "tsiServerStatistics";
     this.tsiServerStatistics.Size = new System.Drawing.Size(150, 16);
     this.tsiServerStatistics.TabIndex = 1;
     this.tsiServerStatistics.Text = "View Server statistics";
     this.tsiServerStatistics.TextAlign = System.Drawing.ContentAlignment.TopLeft;
     this.tsiServerStatistics.UseVisualStyleBackColor = false;
     this.tsiServerStatistics.Click += new System.EventHandler(this.tsiServerStatistics_Click);
     //
     // expVersioningTasks
     //
     this.expVersioningTasks.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.expVersioningTasks.Animate = true;
     this.expVersioningTasks.Font = new System.Drawing.Font("Tahoma", 8.25F);
     this.expVersioningTasks.Items.AddRange(new System.Windows.Forms.Control[] {
     this.tsiAddClientUpdate,
     this.tsiManageServerList});
     this.expVersioningTasks.Location = new System.Drawing.Point(12, 236);
     this.expVersioningTasks.Name = "expVersioningTasks";
     this.expVersioningTasks.Size = new System.Drawing.Size(176, 100);
     this.expVersioningTasks.TabIndex = 2;
     this.expVersioningTasks.Text = "Versioning Tasks";
     this.expVersioningTasks.TitleImage = ((System.Drawing.Image)(resources.GetObject("expVersioningTasks.TitleImage")));
     //
     // tsiAddClientUpdate
     //
     this.tsiAddClientUpdate.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.tsiAddClientUpdate.BackColor = System.Drawing.Color.Transparent;
     this.tsiAddClientUpdate.Image = ((System.Drawing.Image)(resources.GetObject("tsiAddClientUpdate.Image")));
     this.tsiAddClientUpdate.ImageIndex = 5;
     this.tsiAddClientUpdate.ImageList = this.imgIcons;
     this.tsiAddClientUpdate.Location = new System.Drawing.Point(8, 48);
     this.tsiAddClientUpdate.Name = "tsiAddClientUpdate";
     this.tsiAddClientUpdate.Size = new System.Drawing.Size(150, 16);
     this.tsiAddClientUpdate.TabIndex = 1;
     this.tsiAddClientUpdate.Text = "Add a Client Update";
     this.tsiAddClientUpdate.TextAlign = System.Drawing.ContentAlignment.TopLeft;
     this.tsiAddClientUpdate.UseVisualStyleBackColor = false;
     this.tsiAddClientUpdate.Click += new System.EventHandler(this.tsiAddClientUpdate_Click);
     //
     // tsiManageServerList
     //
     this.tsiManageServerList.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.tsiManageServerList.BackColor = System.Drawing.Color.Transparent;
     this.tsiManageServerList.Image = ((System.Drawing.Image)(resources.GetObject("tsiManageServerList.Image")));
     this.tsiManageServerList.ImageIndex = 7;
     this.tsiManageServerList.ImageList = this.imgIcons;
     this.tsiManageServerList.Location = new System.Drawing.Point(8, 72);
     this.tsiManageServerList.Name = "tsiManageServerList";
     this.tsiManageServerList.Size = new System.Drawing.Size(150, 16);
     this.tsiManageServerList.TabIndex = 2;
     this.tsiManageServerList.Text = "Manage Server List";
     this.tsiManageServerList.TextAlign = System.Drawing.ContentAlignment.TopLeft;
     this.tsiManageServerList.UseVisualStyleBackColor = false;
     this.tsiManageServerList.Click += new System.EventHandler(this.tsiManageServerList_Click);
     //
     // mnuMain
     //
     this.mnuMain.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
     this.mnuExit,
     this.mnuWindows,
     this.mnuHelp});
     //
     // mnuExit
     //
     this.mnuExit.Index = 0;
     this.mnuExit.Text = "Exit";
     this.mnuExit.Click += new System.EventHandler(this.mnuExit_Click);
     //
     // mnuWindows
     //
     this.mnuWindows.Index = 1;
     this.mnuWindows.MdiList = true;
     this.mnuWindows.Text = "Windows";
     //
     // mnuHelp
     //
     this.mnuHelp.Index = 2;
     this.mnuHelp.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
     this.mnuHelpAbout});
     this.mnuHelp.Text = "Help";
     //
     // mnuHelpAbout
     //
     this.mnuHelpAbout.Index = 0;
     this.mnuHelpAbout.Text = "About";
     this.mnuHelpAbout.Click += new System.EventHandler(this.mnuHelpAbout_Click);
     //
     // frmMain
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(736, 405);
     this.Controls.Add(this.tskTasks);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.IsMdiContainer = true;
     this.Menu = this.mnuMain;
     this.Name = "frmMain";
     this.Text = "CrawlWave Server Manager";
     this.Load += new System.EventHandler(this.frmMain_Load);
     ((System.ComponentModel.ISupportInitialize)(this.tskTasks)).EndInit();
     this.tskTasks.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.expHostTasks)).EndInit();
     this.expHostTasks.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.expStatisticsTasks)).EndInit();
     this.expStatisticsTasks.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.expVersioningTasks)).EndInit();
     this.expVersioningTasks.ResumeLayout(false);
     this.ResumeLayout(false);
 }