示例#1
0
        public void GetSkinTemplates_WithMobileOnlyTrue_DoesNotReturnSkinThatDoesNotSupportMobile()
        {
            //arrange
            var virtualFile = new Mock<VirtualFile>("~/skins/skin1/skin.config");
            Stream stream =
                @"<?xml version=""1.0""?>
    <SkinTemplates xmlns:xsd=""http://www.w3.org/2001/XMLSchema"" xmlns:xsi=""http://www.w3.org/2001/XMLSchema-instance"">
        <SkinTemplate Name=""Skinny"" MobileSupported=""None"">
          <Styles>
            <Style href=""~/skins/_System/commonstyle.css"" />
          </Styles>
        </SkinTemplate>
    </SkinTemplates>"
                    .ToStream();
            virtualFile.Setup(vf => vf.Open()).Returns(stream);

            var directories = new List<VirtualDirectory>();
            var skinDir = new Mock<VirtualDirectory>("~/skins/skin1");
            skinDir.Setup(d => d.Name).Returns("Skin1");
            directories.Add(skinDir.Object);
            var skinsDir = new Mock<VirtualDirectory>("~/skins");
            skinsDir.Setup(s => s.Directories).Returns(directories);
            var vpp = new Mock<VirtualPathProvider>();
            vpp.Setup(v => v.GetDirectory("~/skins")).Returns(skinsDir.Object);
            vpp.Setup(v => v.FileExists("~/skins/Skin1/skin.config")).Returns(true);
            vpp.Setup(v => v.GetFile("~/skins/Skin1/skin.config")).Returns(virtualFile.Object);
            var skins = new SkinEngine(vpp.Object);

            //act
            IDictionary<string, SkinTemplate> skinTemplates = skins.GetSkinTemplates(mobileOnly: true);

            //assert
            Assert.AreEqual(0, skinTemplates.Count);
        }
示例#2
0
        public void GetSkinTemplates_WithFolders_ReturnsSkinPerFolder()
        {
            //arrange
            var directories = new List <VirtualDirectory>();

            for (int i = 0; i < 3; i++)
            {
                var skinDir = new Mock <VirtualDirectory>("~/skins/skin" + i);
                skinDir.Setup(d => d.Name).Returns("Skin" + i);
                directories.Add(skinDir.Object);
            }
            var skinsDir = new Mock <VirtualDirectory>("~/skins");

            skinsDir.Setup(s => s.Directories).Returns(directories);
            var vpp = new Mock <VirtualPathProvider>();

            vpp.Setup(v => v.GetDirectory("~/skins")).Returns(skinsDir.Object);
            var skins = new SkinEngine(vpp.Object);

            //act
            IDictionary <string, SkinTemplate> skinTemplates = skins.GetSkinTemplates(false /* mobile */);

            //assert
            Assert.AreEqual(3, skinTemplates.Count);
            Assert.AreEqual("Skin0", skinTemplates.Values.First().Name);
            Assert.AreEqual("Skin0", skinTemplates.Values.First().TemplateFolder);
        }
示例#3
0
        public void StyleSheetElementCollectionRendererRendersPlainCssLinkElementsWithNoneMergeMode(string subFolder,
                                                                                                    string
                                                                                                    applicationPath,
                                                                                                    string
                                                                                                    expectedPrintCssPath,
                                                                                                    string
                                                                                                    expectedDefaultCssPath)
        {
            UnitTestHelper.SetHttpContextWithBlogRequest("localhost", subFolder, applicationPath);
            var pathProvider = new Mock <VirtualPathProvider>();

            pathProvider.SetupSkins();
            var    skinEngine    = new SkinEngine(pathProvider.Object);
            var    renderer      = new StyleSheetElementCollectionRenderer(skinEngine);
            string styleElements = renderer.RenderStyleElementCollection("RedBook-Red.css");

            string printCss =
                string.Format(@"<link media=""print"" type=""text/css"" rel=""stylesheet"" href=""{0}"" />",
                              expectedPrintCssPath);

            Assert.IsTrue(styleElements.Contains(printCss, StringComparison.OrdinalIgnoreCase),
                          "Expected the printcss to be there.");

            string defaultCss = string.Format(@"<link type=""text/css"" rel=""stylesheet"" href=""{0}"" />",
                                              expectedDefaultCssPath);

            Assert.IsTrue(styleElements.Contains(defaultCss, StringComparison.OrdinalIgnoreCase),
                          "Expected the default css to be there.");
        }
示例#4
0
        public void CanGetMergeModeAttribute()
        {
            var pathProvider = new Mock <VirtualPathProvider>();

            pathProvider.SetupSkins();
            var skinEngine = new SkinEngine(pathProvider.Object);
            IDictionary <string, SkinTemplate> templates = skinEngine.GetSkinTemplates(false /* mobile */);

            SkinTemplate templateWithMergedFirstMergeMode = templates["Semagogy"];

            Assert.AreEqual(StyleMergeMode.MergedFirst, templateWithMergedFirstMergeMode.StyleMergeMode,
                            "MergeMode should be MergedFirst.");

            SkinTemplate templateWithMergedAfterMergeMode = templates["RedBook-Green.css"];

            Assert.AreEqual(StyleMergeMode.MergedAfter, templateWithMergedAfterMergeMode.StyleMergeMode,
                            "MergeMode should be MergedAfter.");

            SkinTemplate templateWithNoneMergeMode = templates["RedBook-Red.css"];

            Assert.AreEqual(StyleMergeMode.None, templateWithNoneMergeMode.StyleMergeMode, "MergeMode should be None.");

            Assert.AreNotEqual(StyleMergeMode.MergedAfter, templateWithNoneMergeMode.StyleMergeMode,
                               "MergeMode should not be MergedAfter.");

            SkinTemplate templateWithoutMergeMode = templates["RedBook-Blue.css"];

            Assert.AreEqual(StyleMergeMode.None, templateWithoutMergeMode.StyleMergeMode, "MergeMode should be None.");
        }
示例#5
0
        public void StyleSheetElementCollectionRendererRendersLinkElementsInRightOrder(string skinKey,
                                                                                       bool expectedFirst)
        {
            UnitTestHelper.SetHttpContextWithBlogRequest("localhost", "blog", string.Empty);
            var pathProvider = new Mock <VirtualPathProvider>();

            pathProvider.SetupSkins();
            var skinEngine = new SkinEngine(pathProvider.Object);

            var renderer = new StyleSheetElementCollectionRenderer(skinEngine);

            string       styleElements = renderer.RenderStyleElementCollection(skinKey);
            SkinTemplate template      = skinEngine.GetSkinTemplates(false)[skinKey];

            styleElements = styleElements.Trim('\r', '\n');
            string mergedCss = @"<link type=""text/css"" rel=""stylesheet"" href=""/Skins/" + template.TemplateFolder +
                               "/css.axd?name=" + skinKey + @""" />";

            if (expectedFirst)
            {
                Assert.IsTrue(styleElements.StartsWith(mergedCss, StringComparison.OrdinalIgnoreCase),
                              "Merged CSS is not in first position");
            }
            else
            {
                Assert.IsTrue(styleElements.EndsWith(mergedCss, StringComparison.OrdinalIgnoreCase),
                              "Merged CSS is not in last position");
            }
        }
示例#6
0
        public void GetSkinTemplates_WithSpecialFolders_IgnoresSpecialFolders()
        {
            //arrange
            var directories = new List <VirtualDirectory>();
            var nonSkinDir  = new Mock <VirtualDirectory>("~/skins/_system");

            nonSkinDir.Setup(d => d.Name).Returns("_system");
            directories.Add(nonSkinDir.Object);
            var skinDir = new Mock <VirtualDirectory>("~/skins/skin1");

            skinDir.Setup(d => d.Name).Returns("Skin1");
            directories.Add(skinDir.Object);
            var skinsDir = new Mock <VirtualDirectory>("~/skins");

            skinsDir.Setup(s => s.Directories).Returns(directories);
            var vpp = new Mock <VirtualPathProvider>();

            vpp.Setup(v => v.GetDirectory("~/skins")).Returns(skinsDir.Object);
            var skins = new SkinEngine(vpp.Object);

            //act
            IDictionary <string, SkinTemplate> skinTemplates = skins.GetSkinTemplates(false /* mobile */);

            //assert
            Assert.AreEqual(1, skinTemplates.Count);
            Assert.AreEqual("Skin1", skinTemplates.Values.First().Name);
        }
示例#7
0
        public ActionResult Install(string id)
        {
            if (String.IsNullOrEmpty(id))
            {
                throw new ArgumentNullException("id");
            }
            var projectManager = GetProjectManager();
            var packages       = projectManager.SourceRepository.FindPackagesById(id).OrderByDescending(p => p.Version);

            if (packages == null)
            {
                throw new InvalidOperationException("Package does not exist");
            }
            var package = packages.FirstOrDefault();

            if (package == null)
            {
                throw new InvalidOperationException("Package does not exist");
            }
            projectManager.InstallPackage(package);

            // Get the skin.
            var skinEngine             = new SkinEngine();
            var skinsWithoutMobileOnly = skinEngine.GetSkinTemplatesGroupedByFolder(mobileOnly: false);

            var packageViewModel = new PackageViewModel(package, skinsWithoutMobileOnly, GetSkinIconImage, mobileOnly: false);

            if (Request.IsAjaxRequest())
            {
                return(Json(packageViewModel, JsonRequestBehavior.AllowGet));
            }

            return(View(package));
        }
示例#8
0
 public FrmLoader()
 {
     InitializeComponent();
     skin          = new SkinEngine();
     skin.SkinFile = Application.StartupPath + @"\Assets\Skins\Calmness.ssk";
     CheckForIllegalCrossThreadCalls = false;
 }
示例#9
0
        public Image GetIcon(string id)
        {
            if (!Icons.ContainsKey(id))
            {
                Icons.Add(id, null);
            }

            if (Icons[id] == null)
            {
                var img = SkinEngine.GetDefaultIcon(id);
                using (var mstr = new System.IO.MemoryStream())
                {
                    img.Save(mstr, System.Drawing.Imaging.ImageFormat.Png);
                    Icons[id] = mstr.ToArray();
                }
                return(img);
            }
            else
            {
                using (var sr = new System.IO.MemoryStream(Icons[id]))
                {
                    return(Image.FromStream(sr));
                }
            }
        }
示例#10
0
        private void Form1_Load(object sender, EventArgs e)
        {
            Sunisoft.IrisSkin.SkinEngine skin = new SkinEngine((Component)this);
            skin.SkinFile = Application.StartupPath + "\\DeepGreen.ssk";
            #region ~loadExtend
            extend_Form = new ExtendForm();
            this.dockPanel1.ShowDocumentIcon = true;
            extend_Form.Show(this.dockPanel1, WeifenLuo.WinFormsUI.Docking.DockState.DockBottom);
            for (int i = 0; i < 50; i++)
            {
                extend_Form.extend_units[i].button.Click         += extend_Form_button_Click;
                extend_Form.extend_units[i].textBox1.TextChanged += Extend_TextChangedHandle;
            }
            LoadConfig();
            #endregion
            midForm = new MidForm();
            midForm.button_ReScan.Click += button_ReScan_Click;
            midForm.button_Send.Click   += button_Send_Click;
            midForm.checkBox_autosend.CheckedChanged += midForm_AutoSendcheckedChange;
            midForm.Show(this.dockPanel1, WeifenLuo.WinFormsUI.Docking.DockState.Document);

            this.AcceptButton = midForm.button_Send;
            ReScan();
            N_EventCenter.EventCenter.GetInstance().AddObserver(EventName.Update_com_status, I_UpdateStatus);
        }
示例#11
0
        public void UpdateSkin()
        {
            bool flag = string.IsNullOrEmpty(this.Theme) || this.Theme == "None";

            if (flag)
            {
                bool flag2 = this._skin != null;
                if (flag2)
                {
                    this._skin.SkinAllForm  = false;
                    this._skin.SkinFormOnly = true;
                    this._skin.SkinFile     = "";
                }
            }
            else
            {
                string path  = Path.Combine(SystemHelper.GetAssemblesDirectory(), "Resources", "skins");
                bool   flag3 = this._skin == null;
                if (flag3)
                {
                    this._skin = new SkinEngine();
                }
                this._skin.SkinAllForm  = false;
                this._skin.SkinFormOnly = true;
                string skinFile = Path.Combine(path, this.Theme + ".ssk");
                this._skin.SkinFile = skinFile;
            }
        }
示例#12
0
 private void btnapply_Click(object sender, EventArgs e)
 {
     SkinEngine.LoadedSkin.AppIcons = Icons;
     SkinEngine.SaveSkin();
     SkinEngine.LoadSkin();
     Infobox.Show("Icons applied!", "The new icons have been applied to ShiftOS successfully!");
 }
示例#13
0
        public frmMain()
        {
            InitializeComponent();
            SkinEngine skin = new SkinEngine();

            skin.SkinFile = Application.StartupPath + @"\MP10.ssk";
        }
示例#14
0
        public FormFirst()
        {
            InitializeComponent();

            this.skin          = new SkinEngine(this);
            this.skin.SkinFile = "motion.ssk";
        }
示例#15
0
 /// <summary>
 /// 设置程序主题
 /// </summary>
 /// <param name="skin">SkinEngine</param>
 /// <param name="buffer">byte数组</param>
 public static void SetupTheme(SkinEngine skin, byte[] buffer)
 {
     using (MemoryStream memoryStream = new MemoryStream(buffer))
     {
         skin.SkinStream = memoryStream;
     }
 }
示例#16
0
文件: SkinForm.cs 项目: xtinker/MyGit
        public SkinForm(SkinEngine skin)
        {
            InitializeComponent();
            this.skin = skin;
            skinName  = skin.SkinFile.Substring(skin.SkinFile.LastIndexOf('\\') + 1).Split('.').First();
            skinFile  = skin.SkinFile;

            treeView1.ExpandAll();
        }
示例#17
0
 public bool InitSkins(SkinEngine skinEngine)
 {
     //skins.Add("普通", "office2007");
     skins.Add("浅蓝", "WaveColor2");
     skins.Add("祖母绿", "WaveColor1");
     skins.Add("深蓝", "wave");
     skinEngine.SkinFile = strPath + "" + skins["浅蓝"] + ".ssk";
     return(true);
 }
示例#18
0
        private void CreateButtonRegion()
        {
            SkinEngine.UseNameSpace = this.GetType().Namespace.Replace(".Buttons", "");
            // Use default Magenta, instead of TopLeft(0,0) pixel color
            SkinEngine.UseTransparencyColorTopLeft = true; // false;
            // Create the button region
            Button btn = ((Button)this);

            SkinEngine.CreateButtonRegion(btn);
        }
示例#19
0
        private void InitStyle()
        {
            SkinEngine skinEngine = new SkinEngine();
            string     path       = AppDomain.CurrentDomain.BaseDirectory + "Skins\\Silver.ssk";

            skinEngine.SkinFile = path;
            LogHelper.Log.Info(path);
            skinEngine.Active      = true;
            skinEngine.SkinAllForm = true;
        }
示例#20
0
        public Form1()
        {
            InitializeComponent();

            this.InitialInfo();
            this.EnableComponent(true);

            this.skin          = new SkinEngine(this);
            this.skin.SkinFile = "Wave.ssk";
        }
示例#21
0
 private static void Main()
 {
     var skinEngine = new SkinEngine
     {
         SkinFile = Application.StartupPath + Path.DirectorySeparatorChar + "Skin" + Path.DirectorySeparatorChar +  "skin.ssk"
     };
     Application.EnableVisualStyles();
     Application.SetCompatibleTextRenderingDefault(false);
     Application.Run(new MainForm());
 }
示例#22
0
 public void btnidlebrowse_Click(object s, EventArgs a)
 {
     AppearanceManager.SetupDialog(new FileDialog(new[] { ".png", ".gif", ".jpg", ".bmp", ".pic" }, FileOpenerStyle.Open, new Action <string>((file) =>
     {
         ImageAsBinary = Utils.ReadAllBytes(file);
         System.IO.File.WriteAllBytes("temp_bin.bmp", ImageAsBinary);
         Image = SkinEngine.ImageFromBinary(ImageAsBinary);
         Setup();
     })));
 }
示例#23
0
        private static void Main()
        {
            var skinEngine = new SkinEngine
            {
                SkinFile = Application.StartupPath + Path.DirectorySeparatorChar + "Skin" + Path.DirectorySeparatorChar + "skin.ssk"
            };

            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new MainForm());
        }
示例#24
0
        public Frm_MainForm()
        {
            InitializeComponent();
            userBll = new SystemUserBLL();
            ((ToolStripMenuItem)menuStrip1.Items[0]).DropDownItems.CopyTo(t1, 0);
            ((ToolStripMenuItem)menuStrip1.Items[1]).DropDownItems.CopyTo(t2, 0);
            ((ToolStripMenuItem)menuStrip1.Items[2]).DropDownItems.CopyTo(t3, 0);
            ((ToolStripMenuItem)menuStrip1.Items[3]).DropDownItems.CopyTo(t4, 0);

            //加载窗体皮肤
            skinEngine = new SkinEngine();
        }
示例#25
0
        private IEnumerable <PackageViewModel> GetPackagesFromSkinTemplates(bool mobileOnly)
        {
            var packages = NuGetService.LocalRepository.GetPackages();

            var skinEngine = new SkinEngine();
            var skins      = skinEngine.GetSkinTemplatesGroupedByFolder(mobileOnly: mobileOnly);


            return(from p in packages
                   where skins.ContainsKey(p.Id)
                   select new PackageViewModel(p, skins, GetSkinIconImage, mobileOnly));
        }
        public void ScriptsWithNoneScriptMergeModeAreNotMerged()
        {
            var pathProvider = new Mock <VirtualPathProvider>();

            pathProvider.SetupSkins();
            var skinEngine = new SkinEngine(pathProvider.Object);
            IDictionary <string, SkinTemplate> templates = skinEngine.GetSkinTemplates(false /* mobile */);
            SkinTemplate template    = templates["Semagogy"];
            bool         canBeMerged = ScriptElementCollectionRenderer.CanScriptsBeMerged(template);

            Assert.IsFalse(canBeMerged, "Skins with ScriptMergeMode=\"DontMerge\" should not be mergeable.");
        }
        public void ScriptsWithParametricSrcAreNotMerged()
        {
            var pathProvider = new Mock <VirtualPathProvider>();

            pathProvider.SetupSkins();
            var skinEngine = new SkinEngine(pathProvider.Object);
            IDictionary <string, SkinTemplate> templates = skinEngine.GetSkinTemplates(false /* mobile */);
            SkinTemplate template    = templates["Piyo"];
            bool         canBeMerged = ScriptElementCollectionRenderer.CanScriptsBeMerged(template);

            Assert.IsFalse(canBeMerged, "Skins with scripts that have query string parameters should not be mergeable.");
        }
示例#28
0
 public FormMain()
 {
     InitializeComponent();
     lan       = Ini.GetItemValue("lan");
     imgPath   = Ini.GetItemValue("img");
     videoPath = Ini.GetItemValue("video");
     if (lan == "en")
     {
         SetLan(true);
     }
     this.skin          = new SkinEngine(this);
     this.skin.SkinFile = "Wave.ssk";
 }
        private void InitializeSkinEngine()
        {
            SkinEngine = new SkinEngine(this);

            try
            {
                SkinEngine.ApplySkin(GeneralOptions.Skin);
            }
            catch (Exception ex)
            {
                SkinEngine.ApplySkin(Constants.Skins.Default);
            }
        }
示例#30
0
 private void btnapply_Click(object sender, EventArgs e)
 {
     //Apply the skin.
     Utils.WriteAllText(Paths.GetPath("skin.json"), JsonConvert.SerializeObject(LoadedSkin));
     SkinEngine.LoadSkin();
     CodepointValue = CodepointValue / 4;
     Infobox.Show("{SHIFTER_SKIN_APPLIED}", "{YOU_HAVE_EARNED} " + CodepointValue.ToString() + " {CODEPOINTS}.");
     ShiftOS.Engine.Shiftorium.Silent   = true;
     SaveSystem.CurrentSave.Codepoints += CodepointValue;
     SaveSystem.SaveGame();
     ShiftOS.Engine.Shiftorium.Silent = false;
     CodepointValue = 0;
 }
示例#31
0
        protected void OnSaveSkinClicked()
        {
            Blog         blog         = SubtextContext.Blog;
            var          skinEngine   = new SkinEngine();
            SkinTemplate skinTemplate =
                skinEngine.GetSkinTemplates(false /* mobile */).ItemOrNull(Request.Form["SkinKey"]);

            blog.Skin.TemplateFolder = skinTemplate.TemplateFolder;
            blog.Skin.SkinStyleSheet = skinTemplate.StyleSheet;
            Repository.UpdateConfigData(blog);

            BindLocalUI();
        }
示例#32
0
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CrawlerForm));
     this.contextMenuSettings = new System.Windows.Forms.ContextMenu();
     this.menuItemSettingsFileMatches = new System.Windows.Forms.MenuItem();
     this.menuItemSettingsOutput = new System.Windows.Forms.MenuItem();
     this.menuItemSettingsConnections = new System.Windows.Forms.MenuItem();
     this.menuItemSettingsAdvanced = new System.Windows.Forms.MenuItem();
     this.imageList2 = new System.Windows.Forms.ImageList(this.components);
     this.statusBar = new System.Windows.Forms.StatusBar();
     this.statusBarPanelInfo = new System.Windows.Forms.StatusBarPanel();
     this.statusBarPanelURLs = new System.Windows.Forms.StatusBarPanel();
     this.statusBarPanelFiles = new System.Windows.Forms.StatusBarPanel();
     this.statusBarPanelByteCount = new System.Windows.Forms.StatusBarPanel();
     this.statusBarPanelErrors = new System.Windows.Forms.StatusBarPanel();
     this.statusBarPanelCPU = new System.Windows.Forms.StatusBarPanel();
     this.statusBarPanelMem = new System.Windows.Forms.StatusBarPanel();
     this.contextMenuBrowse = new System.Windows.Forms.ContextMenu();
     this.menuItemBrowseHttp = new System.Windows.Forms.MenuItem();
     this.menuItemHttp = new System.Windows.Forms.MenuItem();
     this.menuItem5 = new System.Windows.Forms.MenuItem();
     this.imageList4 = new System.Windows.Forms.ImageList(this.components);
     this.tabControlRightView = new System.Windows.Forms.TabControl();
     this.tabPageThreads = new System.Windows.Forms.TabPage();
     this.listViewThreads = new System.Windows.Forms.ListView();
     this.columnHeaderTHreadID = new System.Windows.Forms.ColumnHeader();
     this.columnHeaderThreadDepth = new System.Windows.Forms.ColumnHeader();
     this.columnHeaderThreadAction = new System.Windows.Forms.ColumnHeader();
     this.columnHeaderThreadURL = new System.Windows.Forms.ColumnHeader();
     this.columnHeaderThreadBytes = new System.Windows.Forms.ColumnHeader();
     this.columnHeaderThreadPersentage = new System.Windows.Forms.ColumnHeader();
     this.imageList3 = new System.Windows.Forms.ImageList(this.components);
     this.tabPageRequests = new System.Windows.Forms.TabPage();
     this.splitContainer2 = new System.Windows.Forms.SplitContainer();
     this.listView1 = new System.Windows.Forms.ListView();
     this.columnHeader5 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader6 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader7 = new System.Windows.Forms.ColumnHeader();
     this.listViewRequests = new System.Windows.Forms.ListView();
     this.columnHeader2 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader3 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader4 = new System.Windows.Forms.ColumnHeader();
     this.webBrowser1 = new System.Windows.Forms.WebBrowser();
     this.tabPageErrors = new System.Windows.Forms.TabPage();
     this.textBoxErrorDescription = new System.Windows.Forms.TextBox();
     this.splitter3 = new System.Windows.Forms.Splitter();
     this.listViewErrors = new System.Windows.Forms.ListView();
     this.columnHeaderErrorID = new System.Windows.Forms.ColumnHeader();
     this.columnHeaderDate = new System.Windows.Forms.ColumnHeader();
     this.columnHeaderErrorItem = new System.Windows.Forms.ColumnHeader();
     this.columnHeaderErrorDescription = new System.Windows.Forms.ColumnHeader();
     this.contextMenuNavigate = new System.Windows.Forms.ContextMenu();
     this.menuItemCut = new System.Windows.Forms.MenuItem();
     this.menuItemCopy = new System.Windows.Forms.MenuItem();
     this.menuItemPaste = new System.Windows.Forms.MenuItem();
     this.menuItemDelete = new System.Windows.Forms.MenuItem();
     this.toolBarButton4 = new System.Windows.Forms.ToolBarButton();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.timerMem = new System.Windows.Forms.Timer(this.components);
     this.imageListPercentage = new System.Windows.Forms.ImageList(this.components);
     this.timerConnectionInfo = new System.Windows.Forms.Timer(this.components);
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.tabControl1 = new System.Windows.Forms.TabControl();
     this.tabPage1 = new System.Windows.Forms.TabPage();
     this.treeView1 = new System.Windows.Forms.TreeView();
     this.webtongbu = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.toolStripMenuItem5 = new System.Windows.Forms.ToolStripMenuItem();
     this.添加项目则规ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem4 = new System.Windows.Forms.ToolStripSeparator();
     this.开始抓取所有分类ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.imageList5 = new System.Windows.Forms.ImageList(this.components);
     this.tabPage2 = new System.Windows.Forms.TabPage();
     this.checkBox2 = new System.Windows.Forms.CheckBox();
     this.dateTimePicker1 = new System.Windows.Forms.DateTimePicker();
     this.dateTimePicker3 = new System.Windows.Forms.DateTimePicker();
     this.button10 = new System.Windows.Forms.Button();
     this.dateTimePicker2 = new System.Windows.Forms.DateTimePicker();
     this.label19 = new System.Windows.Forms.Label();
     this.button9 = new System.Windows.Forms.Button();
     this.label18 = new System.Windows.Forms.Label();
     this.label17 = new System.Windows.Forms.Label();
     this.comboBox2 = new System.Windows.Forms.ComboBox();
     this.label16 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.button8 = new System.Windows.Forms.Button();
     this.checkBox1 = new System.Windows.Forms.CheckBox();
     this.label5 = new System.Windows.Forms.Label();
     this.comboBox1 = new System.Windows.Forms.ComboBox();
     this.label4 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.tabPage5 = new System.Windows.Forms.TabPage();
     this.textBox13 = new System.Windows.Forms.TextBox();
     this.label21 = new System.Windows.Forms.Label();
     this.textBox4 = new System.Windows.Forms.TextBox();
     this.textBox3 = new System.Windows.Forms.TextBox();
     this.textBox2 = new System.Windows.Forms.TextBox();
     this.textBox1 = new System.Windows.Forms.TextBox();
     this.label26 = new System.Windows.Forms.Label();
     this.label24 = new System.Windows.Forms.Label();
     this.label22 = new System.Windows.Forms.Label();
     this.label20 = new System.Windows.Forms.Label();
     this.tabControl2 = new System.Windows.Forms.TabControl();
     this.tabPage3 = new System.Windows.Forms.TabPage();
     this.button7 = new System.Windows.Forms.Button();
     this.button2 = new System.Windows.Forms.Button();
     this.label1 = new System.Windows.Forms.Label();
     this.button1 = new System.Windows.Forms.Button();
     this.seva_webindex = new System.Windows.Forms.TextBox();
     this.comboBoxWeb = new System.Windows.Forms.ComboBox();
     this.zidinyicalss = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.添加子节点ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.添加根节点ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator();
     this.修改项目规则ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.删除项目规则ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripSeparator();
     this.menuStrip1 = new System.Windows.Forms.MenuStrip();
     this.系统ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.最小化程序ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.退出系统ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.系统设定OptionsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.设置SettingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem3 = new System.Windows.Forms.ToolStripSeparator();
     this.mIMETypesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.输出OutputToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.连接ConnectionsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.advancedToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.风格皮肤ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem8 = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem9 = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem10 = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem11 = new System.Windows.Forms.ToolStripMenuItem();
     this.风格五ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.风格六ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.风格七ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem7 = new System.Windows.Forms.ToolStripSeparator();
     this.原始经典ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.skinEngine1 = new Sunisoft.IrisSkin.SkinEngine(((System.ComponentModel.Component)(this)));
     this.tabPage9 = new System.Windows.Forms.TabPage();
     this.tabPage10 = new System.Windows.Forms.TabPage();
     this.tabPage11 = new System.Windows.Forms.TabPage();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.textBox5 = new System.Windows.Forms.TextBox();
     this.label6 = new System.Windows.Forms.Label();
     this.button3 = new System.Windows.Forms.Button();
     this.textBox6 = new System.Windows.Forms.TextBox();
     this.textBox7 = new System.Windows.Forms.TextBox();
     this.label7 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.linkLabel8 = new System.Windows.Forms.LinkLabel();
     this.linkLabel9 = new System.Windows.Forms.LinkLabel();
     this.linkLabel10 = new System.Windows.Forms.LinkLabel();
     this.linkLabel11 = new System.Windows.Forms.LinkLabel();
     this.linkLabel12 = new System.Windows.Forms.LinkLabel();
     this.linkLabel13 = new System.Windows.Forms.LinkLabel();
     this.linkLabel14 = new System.Windows.Forms.LinkLabel();
     this.label9 = new System.Windows.Forms.Label();
     this.textBox8 = new System.Windows.Forms.TextBox();
     this.label10 = new System.Windows.Forms.Label();
     this.button4 = new System.Windows.Forms.Button();
     this.tabPage12 = new System.Windows.Forms.TabPage();
     this.tabPage13 = new System.Windows.Forms.TabPage();
     this.tabPage14 = new System.Windows.Forms.TabPage();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.textBox9 = new System.Windows.Forms.TextBox();
     this.label11 = new System.Windows.Forms.Label();
     this.button5 = new System.Windows.Forms.Button();
     this.textBox10 = new System.Windows.Forms.TextBox();
     this.textBox11 = new System.Windows.Forms.TextBox();
     this.label12 = new System.Windows.Forms.Label();
     this.label13 = new System.Windows.Forms.Label();
     this.linkLabel15 = new System.Windows.Forms.LinkLabel();
     this.linkLabel16 = new System.Windows.Forms.LinkLabel();
     this.linkLabel17 = new System.Windows.Forms.LinkLabel();
     this.linkLabel18 = new System.Windows.Forms.LinkLabel();
     this.linkLabel19 = new System.Windows.Forms.LinkLabel();
     this.linkLabel20 = new System.Windows.Forms.LinkLabel();
     this.linkLabel21 = new System.Windows.Forms.LinkLabel();
     this.label14 = new System.Windows.Forms.Label();
     this.textBox12 = new System.Windows.Forms.TextBox();
     this.label15 = new System.Windows.Forms.Label();
     this.button6 = new System.Windows.Forms.Button();
     this.toolBarButton3 = new System.Windows.Forms.ToolBarButton();
     this.toolBarButtonSettings = new System.Windows.Forms.ToolBarButton();
     this.toolBarButton2 = new System.Windows.Forms.ToolBarButton();
     this.toolBarButtonDeleteAll = new System.Windows.Forms.ToolBarButton();
     this.toolBarButtonStop = new System.Windows.Forms.ToolBarButton();
     this.toolBarButtonPause = new System.Windows.Forms.ToolBarButton();
     this.toolBarButtonContinue = new System.Windows.Forms.ToolBarButton();
     this.toolBarMain = new System.Windows.Forms.ToolBar();
     this.toolBarButton1 = new System.Windows.Forms.ToolBarButton();
     this.toolBarButton5 = new System.Windows.Forms.ToolBarButton();
     this.toolBarButton6 = new System.Windows.Forms.ToolBarButton();
     this.webindex = new System.Windows.Forms.FolderBrowserDialog();
     this.timer1 = new System.Windows.Forms.Timer(this.components);
     this.timer2 = new System.Windows.Forms.Timer(this.components);
     this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components);
     this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.最小化程序ToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.最大化ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.退出系统ToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.toolBarButton7 = new System.Windows.Forms.ToolBarButton();
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanelInfo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanelURLs)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanelFiles)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanelByteCount)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanelErrors)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanelCPU)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanelMem)).BeginInit();
     this.tabControlRightView.SuspendLayout();
     this.tabPageThreads.SuspendLayout();
     this.tabPageRequests.SuspendLayout();
     this.splitContainer2.Panel1.SuspendLayout();
     this.splitContainer2.Panel2.SuspendLayout();
     this.splitContainer2.SuspendLayout();
     this.tabPageErrors.SuspendLayout();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.tabControl1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.webtongbu.SuspendLayout();
     this.tabPage2.SuspendLayout();
     this.tabPage5.SuspendLayout();
     this.tabControl2.SuspendLayout();
     this.tabPage3.SuspendLayout();
     this.zidinyicalss.SuspendLayout();
     this.menuStrip1.SuspendLayout();
     this.tabPage11.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.tabPage14.SuspendLayout();
     this.groupBox3.SuspendLayout();
     this.contextMenuStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // contextMenuSettings
     //
     this.contextMenuSettings.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
     this.menuItemSettingsFileMatches,
     this.menuItemSettingsOutput,
     this.menuItemSettingsConnections,
     this.menuItemSettingsAdvanced});
     //
     // menuItemSettingsFileMatches
     //
     this.menuItemSettingsFileMatches.Index = 0;
     this.menuItemSettingsFileMatches.Text = "&MIME类型...";
     this.menuItemSettingsFileMatches.Click += new System.EventHandler(this.menuItemSettingsFileMatches_Click);
     //
     // menuItemSettingsOutput
     //
     this.menuItemSettingsOutput.Index = 1;
     this.menuItemSettingsOutput.Text = "&输出...";
     this.menuItemSettingsOutput.Click += new System.EventHandler(this.menuItemSettingsOutput_Click);
     //
     // menuItemSettingsConnections
     //
     this.menuItemSettingsConnections.Index = 2;
     this.menuItemSettingsConnections.Text = "&连接...";
     this.menuItemSettingsConnections.Click += new System.EventHandler(this.menuItemSettingsConnections_Click);
     //
     // menuItemSettingsAdvanced
     //
     this.menuItemSettingsAdvanced.Index = 3;
     this.menuItemSettingsAdvanced.Text = "&排除...";
     this.menuItemSettingsAdvanced.Click += new System.EventHandler(this.menuItemSettingsAdvanced_Click);
     //
     // imageList2
     //
     this.imageList2.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList2.ImageStream")));
     this.imageList2.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList2.Images.SetKeyName(0, "");
     this.imageList2.Images.SetKeyName(1, "");
     this.imageList2.Images.SetKeyName(2, "");
     this.imageList2.Images.SetKeyName(3, "");
     this.imageList2.Images.SetKeyName(4, "");
     this.imageList2.Images.SetKeyName(5, "Applications AFP Client - 复制.ico");
     this.imageList2.Images.SetKeyName(6, "cuteftp01.ico");
     this.imageList2.Images.SetKeyName(7, "GOVERM~1.ICO");
     this.imageList2.Images.SetKeyName(8, "Misci.ico");
     this.imageList2.Images.SetKeyName(9, "My Favourites [F].ico");
     //
     // statusBar
     //
     this.statusBar.Location = new System.Drawing.Point(0, 540);
     this.statusBar.Name = "statusBar";
     this.statusBar.Panels.AddRange(new System.Windows.Forms.StatusBarPanel[] {
     this.statusBarPanelInfo,
     this.statusBarPanelURLs,
     this.statusBarPanelFiles,
     this.statusBarPanelByteCount,
     this.statusBarPanelErrors,
     this.statusBarPanelCPU,
     this.statusBarPanelMem});
     this.statusBar.ShowPanels = true;
     this.statusBar.Size = new System.Drawing.Size(926, 24);
     this.statusBar.TabIndex = 1;
     this.statusBar.Text = "Ready";
     //
     // statusBarPanelInfo
     //
     this.statusBarPanelInfo.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Spring;
     this.statusBarPanelInfo.Name = "statusBarPanelInfo";
     this.statusBarPanelInfo.ToolTipText = "View total parsed uris";
     this.statusBarPanelInfo.Width = 639;
     //
     // statusBarPanelURLs
     //
     this.statusBarPanelURLs.Alignment = System.Windows.Forms.HorizontalAlignment.Right;
     this.statusBarPanelURLs.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
     this.statusBarPanelURLs.Name = "statusBarPanelURLs";
     this.statusBarPanelURLs.ToolTipText = "View unique hits count";
     this.statusBarPanelURLs.Width = 10;
     //
     // statusBarPanelFiles
     //
     this.statusBarPanelFiles.Alignment = System.Windows.Forms.HorizontalAlignment.Right;
     this.statusBarPanelFiles.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
     this.statusBarPanelFiles.Name = "statusBarPanelFiles";
     this.statusBarPanelFiles.ToolTipText = "View total hits count";
     this.statusBarPanelFiles.Width = 10;
     //
     // statusBarPanelByteCount
     //
     this.statusBarPanelByteCount.Alignment = System.Windows.Forms.HorizontalAlignment.Right;
     this.statusBarPanelByteCount.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
     this.statusBarPanelByteCount.Name = "statusBarPanelByteCount";
     this.statusBarPanelByteCount.ToolTipText = "View total bytes of parsed items";
     this.statusBarPanelByteCount.Width = 10;
     //
     // statusBarPanelErrors
     //
     this.statusBarPanelErrors.Alignment = System.Windows.Forms.HorizontalAlignment.Right;
     this.statusBarPanelErrors.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
     this.statusBarPanelErrors.Icon = ((System.Drawing.Icon)(resources.GetObject("statusBarPanelErrors.Icon")));
     this.statusBarPanelErrors.Name = "statusBarPanelErrors";
     this.statusBarPanelErrors.ToolTipText = "View errors count";
     this.statusBarPanelErrors.Width = 31;
     //
     // statusBarPanelCPU
     //
     this.statusBarPanelCPU.Icon = ((System.Drawing.Icon)(resources.GetObject("statusBarPanelCPU.Icon")));
     this.statusBarPanelCPU.Name = "statusBarPanelCPU";
     this.statusBarPanelCPU.ToolTipText = "CPU usage";
     this.statusBarPanelCPU.Width = 110;
     //
     // statusBarPanelMem
     //
     this.statusBarPanelMem.Name = "statusBarPanelMem";
     this.statusBarPanelMem.ToolTipText = "Available memory";
     //
     // contextMenuBrowse
     //
     this.contextMenuBrowse.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
     this.menuItemBrowseHttp});
     //
     // menuItemBrowseHttp
     //
     this.menuItemBrowseHttp.Index = 0;
     this.menuItemBrowseHttp.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
     this.menuItemHttp,
     this.menuItem5});
     this.menuItemBrowseHttp.Text = "&Http(s)";
     //
     // menuItemHttp
     //
     this.menuItemHttp.Index = 0;
     this.menuItemHttp.Text = "&http://";
     this.menuItemHttp.Click += new System.EventHandler(this.menuItemHttp_Click);
     //
     // menuItem5
     //
     this.menuItem5.Index = 1;
     this.menuItem5.Text = "-";
     //
     // imageList4
     //
     this.imageList4.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList4.ImageStream")));
     this.imageList4.TransparentColor = System.Drawing.Color.Teal;
     this.imageList4.Images.SetKeyName(0, "");
     //
     // tabControlRightView
     //
     this.tabControlRightView.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.tabControlRightView.Controls.Add(this.tabPageThreads);
     this.tabControlRightView.Controls.Add(this.tabPageRequests);
     this.tabControlRightView.Controls.Add(this.tabPageErrors);
     this.tabControlRightView.Font = new System.Drawing.Font("SimSun", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tabControlRightView.ImageList = this.imageList3;
     this.tabControlRightView.Location = new System.Drawing.Point(4, 33);
     this.tabControlRightView.Name = "tabControlRightView";
     this.tabControlRightView.SelectedIndex = 0;
     this.tabControlRightView.ShowToolTips = true;
     this.tabControlRightView.Size = new System.Drawing.Size(715, 407);
     this.tabControlRightView.TabIndex = 7;
     this.tabControlRightView.Tag = "Main Tab";
     this.tabControlRightView.SelectedIndexChanged += new System.EventHandler(this.tabControlRightView_SelectedIndexChanged);
     //
     // tabPageThreads
     //
     this.tabPageThreads.Controls.Add(this.listViewThreads);
     this.tabPageThreads.ImageIndex = 6;
     this.tabPageThreads.Location = new System.Drawing.Point(4, 25);
     this.tabPageThreads.Name = "tabPageThreads";
     this.tabPageThreads.Size = new System.Drawing.Size(707, 378);
     this.tabPageThreads.TabIndex = 3;
     this.tabPageThreads.Text = "线程";
     this.tabPageThreads.ToolTipText = "View working threads status";
     this.tabPageThreads.UseVisualStyleBackColor = true;
     //
     // listViewThreads
     //
     this.listViewThreads.BackColor = System.Drawing.Color.WhiteSmoke;
     this.listViewThreads.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeaderTHreadID,
     this.columnHeaderThreadDepth,
     this.columnHeaderThreadAction,
     this.columnHeaderThreadURL,
     this.columnHeaderThreadBytes,
     this.columnHeaderThreadPersentage});
     this.listViewThreads.Dock = System.Windows.Forms.DockStyle.Fill;
     this.listViewThreads.Font = new System.Drawing.Font("SimSun", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.listViewThreads.FullRowSelect = true;
     this.listViewThreads.GridLines = true;
     this.listViewThreads.HideSelection = false;
     this.listViewThreads.Location = new System.Drawing.Point(0, 0);
     this.listViewThreads.MultiSelect = false;
     this.listViewThreads.Name = "listViewThreads";
     this.listViewThreads.Size = new System.Drawing.Size(707, 378);
     this.listViewThreads.SmallImageList = this.imageList3;
     this.listViewThreads.TabIndex = 0;
     this.listViewThreads.UseCompatibleStateImageBehavior = false;
     this.listViewThreads.View = System.Windows.Forms.View.Details;
     this.listViewThreads.SelectedIndexChanged += new System.EventHandler(this.listViewThreads_SelectedIndexChanged);
     //
     // columnHeaderTHreadID
     //
     this.columnHeaderTHreadID.Text = "ID";
     this.columnHeaderTHreadID.Width = 40;
     //
     // columnHeaderThreadDepth
     //
     this.columnHeaderThreadDepth.Text = "深度";
     this.columnHeaderThreadDepth.Width = 57;
     //
     // columnHeaderThreadAction
     //
     this.columnHeaderThreadAction.Text = "状态";
     this.columnHeaderThreadAction.Width = 108;
     //
     // columnHeaderThreadURL
     //
     this.columnHeaderThreadURL.Text = "UrL";
     this.columnHeaderThreadURL.Width = 387;
     //
     // columnHeaderThreadBytes
     //
     this.columnHeaderThreadBytes.Text = "字节";
     this.columnHeaderThreadBytes.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.columnHeaderThreadBytes.Width = 70;
     //
     // columnHeaderThreadPersentage
     //
     this.columnHeaderThreadPersentage.Text = "%";
     this.columnHeaderThreadPersentage.Width = 40;
     //
     // imageList3
     //
     this.imageList3.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList3.ImageStream")));
     this.imageList3.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList3.Images.SetKeyName(0, "");
     this.imageList3.Images.SetKeyName(1, "");
     this.imageList3.Images.SetKeyName(2, "");
     this.imageList3.Images.SetKeyName(3, "");
     this.imageList3.Images.SetKeyName(4, "");
     this.imageList3.Images.SetKeyName(5, "");
     this.imageList3.Images.SetKeyName(6, "");
     this.imageList3.Images.SetKeyName(7, "");
     this.imageList3.Images.SetKeyName(8, "");
     //
     // tabPageRequests
     //
     this.tabPageRequests.Controls.Add(this.splitContainer2);
     this.tabPageRequests.ImageIndex = 8;
     this.tabPageRequests.Location = new System.Drawing.Point(4, 25);
     this.tabPageRequests.Name = "tabPageRequests";
     this.tabPageRequests.Size = new System.Drawing.Size(707, 378);
     this.tabPageRequests.TabIndex = 5;
     this.tabPageRequests.Text = "处理列队";
     this.tabPageRequests.UseVisualStyleBackColor = true;
     //
     // splitContainer2
     //
     this.splitContainer2.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.splitContainer2.Location = new System.Drawing.Point(3, 8);
     this.splitContainer2.Name = "splitContainer2";
     this.splitContainer2.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer2.Panel1
     //
     this.splitContainer2.Panel1.Controls.Add(this.listView1);
     this.splitContainer2.Panel1.Controls.Add(this.listViewRequests);
     //
     // splitContainer2.Panel2
     //
     this.splitContainer2.Panel2.Controls.Add(this.webBrowser1);
     this.splitContainer2.Size = new System.Drawing.Size(701, 367);
     this.splitContainer2.SplitterDistance = 181;
     this.splitContainer2.TabIndex = 6;
     //
     // listView1
     //
     this.listView1.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.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader5,
     this.columnHeader6,
     this.columnHeader7});
     this.listView1.FullRowSelect = true;
     this.listView1.GridLines = true;
     this.listView1.Location = new System.Drawing.Point(8, 3);
     this.listView1.Name = "listView1";
     this.listView1.Size = new System.Drawing.Size(699, 111);
     this.listView1.TabIndex = 5;
     this.listView1.UseCompatibleStateImageBehavior = false;
     this.listView1.View = System.Windows.Forms.View.Details;
     //
     // columnHeader5
     //
     this.columnHeader5.Text = "时间";
     this.columnHeader5.Width = 122;
     //
     // columnHeader6
     //
     this.columnHeader6.Text = "标题";
     this.columnHeader6.Width = 351;
     //
     // columnHeader7
     //
     this.columnHeader7.Text = "处理状态";
     this.columnHeader7.Width = 179;
     //
     // listViewRequests
     //
     this.listViewRequests.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.listViewRequests.BackColor = System.Drawing.Color.WhiteSmoke;
     this.listViewRequests.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader2,
     this.columnHeader3,
     this.columnHeader1,
     this.columnHeader4});
     this.listViewRequests.Font = new System.Drawing.Font("SimSun", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.listViewRequests.FullRowSelect = true;
     this.listViewRequests.GridLines = true;
     this.listViewRequests.HideSelection = false;
     this.listViewRequests.Location = new System.Drawing.Point(8, 120);
     this.listViewRequests.MultiSelect = false;
     this.listViewRequests.Name = "listViewRequests";
     this.listViewRequests.Size = new System.Drawing.Size(687, 74);
     this.listViewRequests.TabIndex = 4;
     this.listViewRequests.UseCompatibleStateImageBehavior = false;
     this.listViewRequests.View = System.Windows.Forms.View.Details;
     //
     // columnHeader2
     //
     this.columnHeader2.Text = "时间";
     this.columnHeader2.Width = 126;
     //
     // columnHeader3
     //
     this.columnHeader3.Text = "标题";
     this.columnHeader3.Width = 351;
     //
     // columnHeader1
     //
     this.columnHeader1.DisplayIndex = 3;
     this.columnHeader1.Text = "入库状态";
     this.columnHeader1.Width = 188;
     //
     // columnHeader4
     //
     this.columnHeader4.DisplayIndex = 2;
     this.columnHeader4.Text = "Description";
     this.columnHeader4.Width = 0;
     //
     // webBrowser1
     //
     this.webBrowser1.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.webBrowser1.Location = new System.Drawing.Point(-5, 3);
     this.webBrowser1.MinimumSize = new System.Drawing.Size(20, 20);
     this.webBrowser1.Name = "webBrowser1";
     this.webBrowser1.Size = new System.Drawing.Size(707, 176);
     this.webBrowser1.TabIndex = 6;
     //
     // tabPageErrors
     //
     this.tabPageErrors.Controls.Add(this.textBoxErrorDescription);
     this.tabPageErrors.Controls.Add(this.splitter3);
     this.tabPageErrors.Controls.Add(this.listViewErrors);
     this.tabPageErrors.ImageIndex = 7;
     this.tabPageErrors.Location = new System.Drawing.Point(4, 25);
     this.tabPageErrors.Name = "tabPageErrors";
     this.tabPageErrors.Size = new System.Drawing.Size(707, 378);
     this.tabPageErrors.TabIndex = 4;
     this.tabPageErrors.Text = "错误";
     this.tabPageErrors.ToolTipText = "View reported errors";
     this.tabPageErrors.UseVisualStyleBackColor = true;
     //
     // textBoxErrorDescription
     //
     this.textBoxErrorDescription.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.textBoxErrorDescription.BackColor = System.Drawing.Color.WhiteSmoke;
     this.textBoxErrorDescription.Location = new System.Drawing.Point(0, 292);
     this.textBoxErrorDescription.Multiline = true;
     this.textBoxErrorDescription.Name = "textBoxErrorDescription";
     this.textBoxErrorDescription.ScrollBars = System.Windows.Forms.ScrollBars.Both;
     this.textBoxErrorDescription.Size = new System.Drawing.Size(707, 88);
     this.textBoxErrorDescription.TabIndex = 2;
     this.textBoxErrorDescription.WordWrap = false;
     //
     // splitter3
     //
     this.splitter3.Dock = System.Windows.Forms.DockStyle.Top;
     this.splitter3.Location = new System.Drawing.Point(0, 286);
     this.splitter3.Name = "splitter3";
     this.splitter3.Size = new System.Drawing.Size(707, 3);
     this.splitter3.TabIndex = 1;
     this.splitter3.TabStop = false;
     //
     // listViewErrors
     //
     this.listViewErrors.BackColor = System.Drawing.Color.WhiteSmoke;
     this.listViewErrors.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeaderErrorID,
     this.columnHeaderDate,
     this.columnHeaderErrorItem,
     this.columnHeaderErrorDescription});
     this.listViewErrors.Dock = System.Windows.Forms.DockStyle.Top;
     this.listViewErrors.FullRowSelect = true;
     this.listViewErrors.GridLines = true;
     this.listViewErrors.HideSelection = false;
     this.listViewErrors.Location = new System.Drawing.Point(0, 0);
     this.listViewErrors.MultiSelect = false;
     this.listViewErrors.Name = "listViewErrors";
     this.listViewErrors.Size = new System.Drawing.Size(707, 286);
     this.listViewErrors.TabIndex = 0;
     this.listViewErrors.UseCompatibleStateImageBehavior = false;
     this.listViewErrors.View = System.Windows.Forms.View.Details;
     this.listViewErrors.SelectedIndexChanged += new System.EventHandler(this.listViewErrors_SelectedIndexChanged);
     //
     // columnHeaderErrorID
     //
     this.columnHeaderErrorID.Text = "ID";
     //
     // columnHeaderDate
     //
     this.columnHeaderDate.Text = "时间";
     this.columnHeaderDate.Width = 160;
     //
     // columnHeaderErrorItem
     //
     this.columnHeaderErrorItem.Text = "错误";
     this.columnHeaderErrorItem.Width = 343;
     //
     // columnHeaderErrorDescription
     //
     this.columnHeaderErrorDescription.Text = "Description";
     this.columnHeaderErrorDescription.Width = 0;
     //
     // contextMenuNavigate
     //
     this.contextMenuNavigate.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
     this.menuItemCut,
     this.menuItemCopy,
     this.menuItemPaste,
     this.menuItemDelete});
     //
     // menuItemCut
     //
     this.menuItemCut.Index = 0;
     this.menuItemCut.Text = "Cu&t";
     this.menuItemCut.Click += new System.EventHandler(this.menuItemCut_Click);
     //
     // menuItemCopy
     //
     this.menuItemCopy.Index = 1;
     this.menuItemCopy.Text = "&Copy";
     this.menuItemCopy.Click += new System.EventHandler(this.menuItemCopy_Click);
     //
     // menuItemPaste
     //
     this.menuItemPaste.Index = 2;
     this.menuItemPaste.Text = "&Paste";
     this.menuItemPaste.Click += new System.EventHandler(this.menuItemPaste_Click);
     //
     // menuItemDelete
     //
     this.menuItemDelete.Index = 3;
     this.menuItemDelete.Text = "&Delete";
     this.menuItemDelete.Click += new System.EventHandler(this.menuItemDelete_Click);
     //
     // toolBarButton4
     //
     this.toolBarButton4.Name = "toolBarButton4";
     this.toolBarButton4.Text = "Go";
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Teal;
     this.imageList1.Images.SetKeyName(0, "");
     //
     // imageListPercentage
     //
     this.imageListPercentage.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageListPercentage.ImageStream")));
     this.imageListPercentage.TransparentColor = System.Drawing.Color.Transparent;
     this.imageListPercentage.Images.SetKeyName(0, "");
     this.imageListPercentage.Images.SetKeyName(1, "");
     this.imageListPercentage.Images.SetKeyName(2, "");
     this.imageListPercentage.Images.SetKeyName(3, "");
     this.imageListPercentage.Images.SetKeyName(4, "");
     this.imageListPercentage.Images.SetKeyName(5, "");
     this.imageListPercentage.Images.SetKeyName(6, "");
     this.imageListPercentage.Images.SetKeyName(7, "");
     this.imageListPercentage.Images.SetKeyName(8, "");
     this.imageListPercentage.Images.SetKeyName(9, "");
     this.imageListPercentage.Images.SetKeyName(10, "");
     //
     // timerConnectionInfo
     //
     this.timerConnectionInfo.Enabled = true;
     this.timerConnectionInfo.Interval = 15000;
     this.timerConnectionInfo.Tick += new System.EventHandler(this.timerConnectionInfo_Tick);
     //
     // splitContainer1
     //
     this.splitContainer1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.splitContainer1.BackColor = System.Drawing.SystemColors.ActiveBorder;
     this.splitContainer1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("splitContainer1.BackgroundImage")));
     this.splitContainer1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.splitContainer1.Location = new System.Drawing.Point(0, 60);
     this.splitContainer1.Name = "splitContainer1";
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.tabControl1);
     this.splitContainer1.Panel1MinSize = 150;
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.tabControl2);
     this.splitContainer1.Size = new System.Drawing.Size(926, 474);
     this.splitContainer1.SplitterDistance = 193;
     this.splitContainer1.TabIndex = 12;
     //
     // tabControl1
     //
     this.tabControl1.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.tabControl1.Controls.Add(this.tabPage1);
     this.tabControl1.Controls.Add(this.tabPage2);
     this.tabControl1.Controls.Add(this.tabPage5);
     this.tabControl1.Location = new System.Drawing.Point(3, 3);
     this.tabControl1.Multiline = true;
     this.tabControl1.Name = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size = new System.Drawing.Size(183, 464);
     this.tabControl1.TabIndex = 1;
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.treeView1);
     this.tabPage1.Location = new System.Drawing.Point(4, 21);
     this.tabPage1.Name = "tabPage1";
     this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage1.Size = new System.Drawing.Size(175, 439);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text = "数据源";
     this.tabPage1.UseVisualStyleBackColor = true;
     //
     // treeView1
     //
     this.treeView1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.treeView1.ContextMenuStrip = this.webtongbu;
     this.treeView1.ImageIndex = 1;
     this.treeView1.ImageList = this.imageList5;
     this.treeView1.Location = new System.Drawing.Point(-4, 3);
     this.treeView1.Name = "treeView1";
     this.treeView1.SelectedImageIndex = 0;
     this.treeView1.Size = new System.Drawing.Size(181, 433);
     this.treeView1.TabIndex = 0;
     this.treeView1.AfterCheck += new System.Windows.Forms.TreeViewEventHandler(this.treeView1_AfterCheck);
     this.treeView1.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeView1_AfterSelect);
     //
     // webtongbu
     //
     this.webtongbu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripMenuItem5,
     this.添加项目则规ToolStripMenuItem,
     this.toolStripMenuItem4,
     this.开始抓取所有分类ToolStripMenuItem});
     this.webtongbu.Name = "webtongbu";
     this.webtongbu.Size = new System.Drawing.Size(185, 76);
     //
     // toolStripMenuItem5
     //
     this.toolStripMenuItem5.Image = ((System.Drawing.Image)(resources.GetObject("toolStripMenuItem5.Image")));
     this.toolStripMenuItem5.Name = "toolStripMenuItem5";
     this.toolStripMenuItem5.Size = new System.Drawing.Size(184, 22);
     this.toolStripMenuItem5.Text = "开始抓取任务";
     this.toolStripMenuItem5.Click += new System.EventHandler(this.toolStripMenuItem5_Click);
     //
     // 添加项目则规ToolStripMenuItem
     //
     this.添加项目则规ToolStripMenuItem.Name = "添加项目则规ToolStripMenuItem";
     this.添加项目则规ToolStripMenuItem.Size = new System.Drawing.Size(184, 22);
     this.添加项目则规ToolStripMenuItem.Text = "[添加/管理]网址则规";
     this.添加项目则规ToolStripMenuItem.Click += new System.EventHandler(this.添加项目则规ToolStripMenuItem_Click);
     //
     // toolStripMenuItem4
     //
     this.toolStripMenuItem4.Name = "toolStripMenuItem4";
     this.toolStripMenuItem4.Size = new System.Drawing.Size(181, 6);
     //
     // 开始抓取所有分类ToolStripMenuItem
     //
     this.开始抓取所有分类ToolStripMenuItem.Name = "开始抓取所有分类ToolStripMenuItem";
     this.开始抓取所有分类ToolStripMenuItem.Size = new System.Drawing.Size(184, 22);
     this.开始抓取所有分类ToolStripMenuItem.Text = "开始抓取所有分类";
     this.开始抓取所有分类ToolStripMenuItem.Click += new System.EventHandler(this.开始抓取所有分类ToolStripMenuItem_Click);
     //
     // imageList5
     //
     this.imageList5.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList5.ImageStream")));
     this.imageList5.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList5.Images.SetKeyName(0, "READ ME.ico");
     this.imageList5.Images.SetKeyName(1, "BMWDicons.ico");
     //
     // tabPage2
     //
     this.tabPage2.Controls.Add(this.checkBox2);
     this.tabPage2.Controls.Add(this.dateTimePicker1);
     this.tabPage2.Controls.Add(this.dateTimePicker3);
     this.tabPage2.Controls.Add(this.button10);
     this.tabPage2.Controls.Add(this.dateTimePicker2);
     this.tabPage2.Controls.Add(this.label19);
     this.tabPage2.Controls.Add(this.button9);
     this.tabPage2.Controls.Add(this.label18);
     this.tabPage2.Controls.Add(this.label17);
     this.tabPage2.Controls.Add(this.comboBox2);
     this.tabPage2.Controls.Add(this.label16);
     this.tabPage2.Controls.Add(this.label3);
     this.tabPage2.Controls.Add(this.button8);
     this.tabPage2.Controls.Add(this.checkBox1);
     this.tabPage2.Controls.Add(this.label5);
     this.tabPage2.Controls.Add(this.comboBox1);
     this.tabPage2.Controls.Add(this.label4);
     this.tabPage2.Controls.Add(this.label2);
     this.tabPage2.Location = new System.Drawing.Point(4, 21);
     this.tabPage2.Name = "tabPage2";
     this.tabPage2.Size = new System.Drawing.Size(175, 439);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text = "定时任务";
     this.tabPage2.UseVisualStyleBackColor = true;
     //
     // checkBox2
     //
     this.checkBox2.AutoSize = true;
     this.checkBox2.Location = new System.Drawing.Point(12, 263);
     this.checkBox2.Name = "checkBox2";
     this.checkBox2.Size = new System.Drawing.Size(132, 16);
     this.checkBox2.TabIndex = 20;
     this.checkBox2.Text = "系统启动时加载程序";
     this.checkBox2.UseVisualStyleBackColor = true;
     this.checkBox2.CheckedChanged += new System.EventHandler(this.checkBox2_CheckedChanged);
     //
     // dateTimePicker1
     //
     this.dateTimePicker1.Location = new System.Drawing.Point(13, 344);
     this.dateTimePicker1.Name = "dateTimePicker1";
     this.dateTimePicker1.Size = new System.Drawing.Size(156, 21);
     this.dateTimePicker1.TabIndex = 19;
     this.dateTimePicker1.Visible = false;
     //
     // dateTimePicker3
     //
     this.dateTimePicker3.Location = new System.Drawing.Point(13, 399);
     this.dateTimePicker3.Name = "dateTimePicker3";
     this.dateTimePicker3.Size = new System.Drawing.Size(156, 21);
     this.dateTimePicker3.TabIndex = 18;
     this.dateTimePicker3.Visible = false;
     //
     // button10
     //
     this.button10.Location = new System.Drawing.Point(11, 306);
     this.button10.Name = "button10";
     this.button10.Size = new System.Drawing.Size(144, 23);
     this.button10.TabIndex = 17;
     this.button10.Text = "还原到上一次正常配置";
     this.button10.UseVisualStyleBackColor = true;
     this.button10.Visible = false;
     this.button10.Click += new System.EventHandler(this.button10_Click);
     //
     // dateTimePicker2
     //
     this.dateTimePicker2.Location = new System.Drawing.Point(11, 371);
     this.dateTimePicker2.Name = "dateTimePicker2";
     this.dateTimePicker2.Size = new System.Drawing.Size(158, 21);
     this.dateTimePicker2.TabIndex = 16;
     this.dateTimePicker2.Visible = false;
     //
     // label19
     //
     this.label19.AutoSize = true;
     this.label19.Font = new System.Drawing.Font("SimSun", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label19.ForeColor = System.Drawing.Color.Blue;
     this.label19.Location = new System.Drawing.Point(5, 33);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(71, 16);
     this.label19.TabIndex = 15;
     this.label19.Text = "label19";
     //
     // button9
     //
     this.button9.Location = new System.Drawing.Point(9, 234);
     this.button9.Name = "button9";
     this.button9.Size = new System.Drawing.Size(144, 23);
     this.button9.TabIndex = 14;
     this.button9.Text = "跳过下次执行时间";
     this.button9.UseVisualStyleBackColor = true;
     this.button9.Click += new System.EventHandler(this.button9_Click);
     //
     // label18
     //
     this.label18.AutoSize = true;
     this.label18.Font = new System.Drawing.Font("SimSun", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label18.ForeColor = System.Drawing.Color.Blue;
     this.label18.Location = new System.Drawing.Point(5, 203);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(59, 16);
     this.label18.TabIndex = 13;
     this.label18.Text = "待配置";
     //
     // label17
     //
     this.label17.AutoSize = true;
     this.label17.Location = new System.Drawing.Point(7, 176);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(83, 12);
     this.label17.TabIndex = 12;
     this.label17.Text = "下次任务时间:";
     //
     // comboBox2
     //
     this.comboBox2.FormattingEnabled = true;
     this.comboBox2.Items.AddRange(new object[] {
     "1",
     "2",
     "3",
     "4",
     "5",
     "6",
     "7",
     "8",
     "9",
     "10",
     "11",
     "12",
     "13",
     "14",
     "15",
     "16",
     "17",
     "18",
     "19",
     "20",
     "21",
     "22",
     "23",
     "24"});
     this.comboBox2.Location = new System.Drawing.Point(27, 102);
     this.comboBox2.Name = "comboBox2";
     this.comboBox2.Size = new System.Drawing.Size(46, 20);
     this.comboBox2.TabIndex = 11;
     this.comboBox2.Text = "23";
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.Location = new System.Drawing.Point(80, 72);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(17, 12);
     this.label16.TabIndex = 10;
     this.label16.Text = "天";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(7, 105);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(17, 12);
     this.label3.TabIndex = 9;
     this.label3.Text = "第";
     //
     // button8
     //
     this.button8.Location = new System.Drawing.Point(82, 136);
     this.button8.Name = "button8";
     this.button8.Size = new System.Drawing.Size(66, 23);
     this.button8.TabIndex = 8;
     this.button8.Text = "保存配置";
     this.button8.UseVisualStyleBackColor = true;
     this.button8.Click += new System.EventHandler(this.button8_Click);
     //
     // checkBox1
     //
     this.checkBox1.AutoSize = true;
     this.checkBox1.Location = new System.Drawing.Point(9, 140);
     this.checkBox1.Name = "checkBox1";
     this.checkBox1.Size = new System.Drawing.Size(72, 16);
     this.checkBox1.TabIndex = 7;
     this.checkBox1.Text = "启用监控";
     this.checkBox1.UseVisualStyleBackColor = true;
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(80, 109);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(65, 12);
     this.label5.TabIndex = 4;
     this.label5.Text = "时执行任务";
     //
     // comboBox1
     //
     this.comboBox1.FormattingEnabled = true;
     this.comboBox1.Items.AddRange(new object[] {
     "7",
     "15",
     "30"});
     this.comboBox1.Location = new System.Drawing.Point(27, 68);
     this.comboBox1.Name = "comboBox1";
     this.comboBox1.Size = new System.Drawing.Size(46, 20);
     this.comboBox1.TabIndex = 3;
     this.comboBox1.Text = "7";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(7, 72);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(17, 12);
     this.label4.TabIndex = 2;
     this.label4.Text = "每";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(7, 11);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(59, 12);
     this.label2.TabIndex = 0;
     this.label2.Text = "当前时间:";
     //
     // tabPage5
     //
     this.tabPage5.Controls.Add(this.textBox13);
     this.tabPage5.Controls.Add(this.label21);
     this.tabPage5.Controls.Add(this.textBox4);
     this.tabPage5.Controls.Add(this.textBox3);
     this.tabPage5.Controls.Add(this.textBox2);
     this.tabPage5.Controls.Add(this.textBox1);
     this.tabPage5.Controls.Add(this.label26);
     this.tabPage5.Controls.Add(this.label24);
     this.tabPage5.Controls.Add(this.label22);
     this.tabPage5.Controls.Add(this.label20);
     this.tabPage5.Location = new System.Drawing.Point(4, 21);
     this.tabPage5.Name = "tabPage5";
     this.tabPage5.Size = new System.Drawing.Size(175, 439);
     this.tabPage5.TabIndex = 2;
     this.tabPage5.Text = "报告";
     this.tabPage5.UseVisualStyleBackColor = true;
     //
     // textBox13
     //
     this.textBox13.Location = new System.Drawing.Point(73, 159);
     this.textBox13.Name = "textBox13";
     this.textBox13.Size = new System.Drawing.Size(99, 21);
     this.textBox13.TabIndex = 22;
     this.textBox13.Text = "1";
     //
     // label21
     //
     this.label21.AutoSize = true;
     this.label21.Location = new System.Drawing.Point(8, 137);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(125, 12);
     this.label21.TabIndex = 21;
     this.label21.Text = "我想从第?个开始引索:";
     //
     // textBox4
     //
     this.textBox4.Location = new System.Drawing.Point(73, 94);
     this.textBox4.Name = "textBox4";
     this.textBox4.Size = new System.Drawing.Size(99, 21);
     this.textBox4.TabIndex = 20;
     //
     // textBox3
     //
     this.textBox3.Location = new System.Drawing.Point(73, 63);
     this.textBox3.Name = "textBox3";
     this.textBox3.Size = new System.Drawing.Size(99, 21);
     this.textBox3.TabIndex = 19;
     //
     // textBox2
     //
     this.textBox2.Enabled = false;
     this.textBox2.Location = new System.Drawing.Point(73, 32);
     this.textBox2.Name = "textBox2";
     this.textBox2.Size = new System.Drawing.Size(99, 21);
     this.textBox2.TabIndex = 18;
     //
     // textBox1
     //
     this.textBox1.Enabled = false;
     this.textBox1.Location = new System.Drawing.Point(73, 5);
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new System.Drawing.Size(99, 21);
     this.textBox1.TabIndex = 17;
     //
     // label26
     //
     this.label26.AutoSize = true;
     this.label26.Location = new System.Drawing.Point(32, 97);
     this.label26.Name = "label26";
     this.label26.Size = new System.Drawing.Size(35, 12);
     this.label26.TabIndex = 16;
     this.label26.Text = "网址:";
     //
     // label24
     //
     this.label24.AutoSize = true;
     this.label24.Location = new System.Drawing.Point(8, 66);
     this.label24.Name = "label24";
     this.label24.Size = new System.Drawing.Size(59, 12);
     this.label24.TabIndex = 15;
     this.label24.Text = "网址名称:";
     //
     // label22
     //
     this.label22.AutoSize = true;
     this.label22.Location = new System.Drawing.Point(8, 38);
     this.label22.Name = "label22";
     this.label22.Size = new System.Drawing.Size(59, 12);
     this.label22.TabIndex = 14;
     this.label22.Text = "正在引索:";
     //
     // label20
     //
     this.label20.AutoSize = true;
     this.label20.Location = new System.Drawing.Point(8, 9);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(59, 12);
     this.label20.TabIndex = 13;
     this.label20.Text = "共要引索:";
     //
     // tabControl2
     //
     this.tabControl2.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.tabControl2.Controls.Add(this.tabPage3);
     this.tabControl2.Location = new System.Drawing.Point(0, 3);
     this.tabControl2.Name = "tabControl2";
     this.tabControl2.SelectedIndex = 0;
     this.tabControl2.Size = new System.Drawing.Size(727, 464);
     this.tabControl2.TabIndex = 11;
     //
     // tabPage3
     //
     this.tabPage3.Controls.Add(this.button7);
     this.tabPage3.Controls.Add(this.button2);
     this.tabPage3.Controls.Add(this.label1);
     this.tabPage3.Controls.Add(this.button1);
     this.tabPage3.Controls.Add(this.seva_webindex);
     this.tabPage3.Controls.Add(this.tabControlRightView);
     this.tabPage3.Controls.Add(this.comboBoxWeb);
     this.tabPage3.Location = new System.Drawing.Point(4, 21);
     this.tabPage3.Name = "tabPage3";
     this.tabPage3.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage3.Size = new System.Drawing.Size(719, 439);
     this.tabPage3.TabIndex = 0;
     this.tabPage3.Text = "采集-挖掘";
     this.tabPage3.UseVisualStyleBackColor = true;
     //
     // button7
     //
     this.button7.Enabled = false;
     this.button7.Location = new System.Drawing.Point(474, 6);
     this.button7.Name = "button7";
     this.button7.Size = new System.Drawing.Size(20, 23);
     this.button7.TabIndex = 14;
     this.button7.Text = "button7";
     this.button7.UseVisualStyleBackColor = true;
     this.button7.Visible = false;
     this.button7.Click += new System.EventHandler(this.button7_Click_1);
     //
     // button2
     //
     this.button2.Location = new System.Drawing.Point(393, 6);
     this.button2.Name = "button2";
     this.button2.Size = new System.Drawing.Size(75, 23);
     this.button2.TabIndex = 13;
     this.button2.Text = "合并引索";
     this.button2.UseVisualStyleBackColor = true;
     this.button2.Visible = false;
     this.button2.Click += new System.EventHandler(this.button2_Click);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(6, 11);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(107, 12);
     this.label1.TabIndex = 12;
     this.label1.Text = "指定引索保存目录:";
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(350, 6);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(32, 23);
     this.button1.TabIndex = 11;
     this.button1.Text = "...";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // seva_webindex
     //
     this.seva_webindex.Enabled = false;
     this.seva_webindex.Location = new System.Drawing.Point(117, 6);
     this.seva_webindex.Name = "seva_webindex";
     this.seva_webindex.Size = new System.Drawing.Size(227, 21);
     this.seva_webindex.TabIndex = 10;
     //
     // comboBoxWeb
     //
     this.comboBoxWeb.AllowDrop = true;
     this.comboBoxWeb.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.comboBoxWeb.BackColor = System.Drawing.Color.WhiteSmoke;
     this.comboBoxWeb.ContextMenu = this.contextMenuNavigate;
     this.comboBoxWeb.Enabled = false;
     this.comboBoxWeb.ItemHeight = 12;
     this.comboBoxWeb.Location = new System.Drawing.Point(474, 6);
     this.comboBoxWeb.MaxDropDownItems = 20;
     this.comboBoxWeb.Name = "comboBoxWeb";
     this.comboBoxWeb.Size = new System.Drawing.Size(237, 20);
     this.comboBoxWeb.TabIndex = 9;
     this.comboBoxWeb.Tag = "Settings";
     this.comboBoxWeb.Text = "http://";
     this.comboBoxWeb.KeyDown += new System.Windows.Forms.KeyEventHandler(this.comboBoxWeb_KeyDown);
     //
     // zidinyicalss
     //
     this.zidinyicalss.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.添加子节点ToolStripMenuItem,
     this.添加根节点ToolStripMenuItem,
     this.toolStripMenuItem1,
     this.修改项目规则ToolStripMenuItem,
     this.删除项目规则ToolStripMenuItem,
     this.toolStripMenuItem2});
     this.zidinyicalss.Name = "contextMenuStrip1";
     this.zidinyicalss.Size = new System.Drawing.Size(143, 104);
     //
     // 添加子节点ToolStripMenuItem
     //
     this.添加子节点ToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("添加子节点ToolStripMenuItem.Image")));
     this.添加子节点ToolStripMenuItem.Name = "添加子节点ToolStripMenuItem";
     this.添加子节点ToolStripMenuItem.Size = new System.Drawing.Size(142, 22);
     this.添加子节点ToolStripMenuItem.Text = "添加项目则规";
     this.添加子节点ToolStripMenuItem.Click += new System.EventHandler(this.添加子节点ToolStripMenuItem_Click);
     //
     // 添加根节点ToolStripMenuItem
     //
     this.添加根节点ToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("添加根节点ToolStripMenuItem.Image")));
     this.添加根节点ToolStripMenuItem.Name = "添加根节点ToolStripMenuItem";
     this.添加根节点ToolStripMenuItem.Size = new System.Drawing.Size(142, 22);
     this.添加根节点ToolStripMenuItem.Text = "添加新频道";
     this.添加根节点ToolStripMenuItem.Click += new System.EventHandler(this.添加根节点ToolStripMenuItem_Click);
     //
     // toolStripMenuItem1
     //
     this.toolStripMenuItem1.Name = "toolStripMenuItem1";
     this.toolStripMenuItem1.Size = new System.Drawing.Size(139, 6);
     //
     // 修改项目规则ToolStripMenuItem
     //
     this.修改项目规则ToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("修改项目规则ToolStripMenuItem.Image")));
     this.修改项目规则ToolStripMenuItem.Name = "修改项目规则ToolStripMenuItem";
     this.修改项目规则ToolStripMenuItem.Size = new System.Drawing.Size(142, 22);
     this.修改项目规则ToolStripMenuItem.Text = "修改项目规则";
     //
     // 删除项目规则ToolStripMenuItem
     //
     this.删除项目规则ToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("删除项目规则ToolStripMenuItem.Image")));
     this.删除项目规则ToolStripMenuItem.Name = "删除项目规则ToolStripMenuItem";
     this.删除项目规则ToolStripMenuItem.Size = new System.Drawing.Size(142, 22);
     this.删除项目规则ToolStripMenuItem.Text = "删除项目规则";
     //
     // toolStripMenuItem2
     //
     this.toolStripMenuItem2.Name = "toolStripMenuItem2";
     this.toolStripMenuItem2.Size = new System.Drawing.Size(139, 6);
     //
     // menuStrip1
     //
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.系统ToolStripMenuItem,
     this.系统设定OptionsToolStripMenuItem,
     this.风格皮肤ToolStripMenuItem});
     this.menuStrip1.Location = new System.Drawing.Point(0, 0);
     this.menuStrip1.Name = "menuStrip1";
     this.menuStrip1.Size = new System.Drawing.Size(926, 24);
     this.menuStrip1.TabIndex = 13;
     this.menuStrip1.Text = "menuStrip1";
     //
     // 系统ToolStripMenuItem
     //
     this.系统ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.最小化程序ToolStripMenuItem,
     this.退出系统ToolStripMenuItem});
     this.系统ToolStripMenuItem.Name = "系统ToolStripMenuItem";
     this.系统ToolStripMenuItem.Size = new System.Drawing.Size(41, 20);
     this.系统ToolStripMenuItem.Text = "系统";
     //
     // 最小化程序ToolStripMenuItem
     //
     this.最小化程序ToolStripMenuItem.Name = "最小化程序ToolStripMenuItem";
     this.最小化程序ToolStripMenuItem.Size = new System.Drawing.Size(130, 22);
     this.最小化程序ToolStripMenuItem.Text = "隐藏到托盘";
     this.最小化程序ToolStripMenuItem.Click += new System.EventHandler(this.最小化程序ToolStripMenuItem_Click);
     //
     // 退出系统ToolStripMenuItem
     //
     this.退出系统ToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("退出系统ToolStripMenuItem.Image")));
     this.退出系统ToolStripMenuItem.Name = "退出系统ToolStripMenuItem";
     this.退出系统ToolStripMenuItem.Size = new System.Drawing.Size(130, 22);
     this.退出系统ToolStripMenuItem.Text = "退出 系统";
     this.退出系统ToolStripMenuItem.Click += new System.EventHandler(this.退出系统ToolStripMenuItem_Click);
     //
     // 系统设定OptionsToolStripMenuItem
     //
     this.系统设定OptionsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.设置SettingsToolStripMenuItem,
     this.toolStripMenuItem3,
     this.mIMETypesToolStripMenuItem,
     this.输出OutputToolStripMenuItem,
     this.连接ConnectionsToolStripMenuItem,
     this.advancedToolStripMenuItem});
     this.系统设定OptionsToolStripMenuItem.Name = "系统设定OptionsToolStripMenuItem";
     this.系统设定OptionsToolStripMenuItem.Size = new System.Drawing.Size(65, 20);
     this.系统设定OptionsToolStripMenuItem.Text = "系统设定";
     //
     // 设置SettingsToolStripMenuItem
     //
     this.设置SettingsToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("设置SettingsToolStripMenuItem.Image")));
     this.设置SettingsToolStripMenuItem.Name = "设置SettingsToolStripMenuItem";
     this.设置SettingsToolStripMenuItem.Size = new System.Drawing.Size(94, 22);
     this.设置SettingsToolStripMenuItem.Text = "设置";
     this.设置SettingsToolStripMenuItem.Click += new System.EventHandler(this.设置SettingsToolStripMenuItem_Click);
     //
     // toolStripMenuItem3
     //
     this.toolStripMenuItem3.Name = "toolStripMenuItem3";
     this.toolStripMenuItem3.Size = new System.Drawing.Size(91, 6);
     //
     // mIMETypesToolStripMenuItem
     //
     this.mIMETypesToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("mIMETypesToolStripMenuItem.Image")));
     this.mIMETypesToolStripMenuItem.Name = "mIMETypesToolStripMenuItem";
     this.mIMETypesToolStripMenuItem.Size = new System.Drawing.Size(94, 22);
     this.mIMETypesToolStripMenuItem.Text = "类型";
     this.mIMETypesToolStripMenuItem.Click += new System.EventHandler(this.mIMETypesToolStripMenuItem_Click);
     //
     // 输出OutputToolStripMenuItem
     //
     this.输出OutputToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("输出OutputToolStripMenuItem.Image")));
     this.输出OutputToolStripMenuItem.Name = "输出OutputToolStripMenuItem";
     this.输出OutputToolStripMenuItem.Size = new System.Drawing.Size(94, 22);
     this.输出OutputToolStripMenuItem.Text = "输出";
     this.输出OutputToolStripMenuItem.Click += new System.EventHandler(this.输出OutputToolStripMenuItem_Click);
     //
     // 连接ConnectionsToolStripMenuItem
     //
     this.连接ConnectionsToolStripMenuItem.Name = "连接ConnectionsToolStripMenuItem";
     this.连接ConnectionsToolStripMenuItem.Size = new System.Drawing.Size(94, 22);
     this.连接ConnectionsToolStripMenuItem.Text = "连接";
     this.连接ConnectionsToolStripMenuItem.Click += new System.EventHandler(this.连接ConnectionsToolStripMenuItem_Click);
     //
     // advancedToolStripMenuItem
     //
     this.advancedToolStripMenuItem.Name = "advancedToolStripMenuItem";
     this.advancedToolStripMenuItem.Size = new System.Drawing.Size(94, 22);
     this.advancedToolStripMenuItem.Text = "排除";
     this.advancedToolStripMenuItem.Click += new System.EventHandler(this.advancedToolStripMenuItem_Click);
     //
     // 风格皮肤ToolStripMenuItem
     //
     this.风格皮肤ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripMenuItem8,
     this.toolStripMenuItem9,
     this.toolStripMenuItem10,
     this.toolStripMenuItem11,
     this.风格五ToolStripMenuItem,
     this.风格六ToolStripMenuItem,
     this.风格七ToolStripMenuItem,
     this.toolStripMenuItem7,
     this.原始经典ToolStripMenuItem});
     this.风格皮肤ToolStripMenuItem.Name = "风格皮肤ToolStripMenuItem";
     this.风格皮肤ToolStripMenuItem.Size = new System.Drawing.Size(65, 20);
     this.风格皮肤ToolStripMenuItem.Text = "风格皮肤";
     //
     // toolStripMenuItem8
     //
     this.toolStripMenuItem8.Image = ((System.Drawing.Image)(resources.GetObject("toolStripMenuItem8.Image")));
     this.toolStripMenuItem8.Name = "toolStripMenuItem8";
     this.toolStripMenuItem8.Size = new System.Drawing.Size(118, 22);
     this.toolStripMenuItem8.Text = "风格(一)";
     this.toolStripMenuItem8.Click += new System.EventHandler(this.toolStripMenuItem8_Click);
     //
     // toolStripMenuItem9
     //
     this.toolStripMenuItem9.Image = ((System.Drawing.Image)(resources.GetObject("toolStripMenuItem9.Image")));
     this.toolStripMenuItem9.Name = "toolStripMenuItem9";
     this.toolStripMenuItem9.Size = new System.Drawing.Size(118, 22);
     this.toolStripMenuItem9.Text = "风格(二)";
     this.toolStripMenuItem9.Click += new System.EventHandler(this.toolStripMenuItem9_Click);
     //
     // toolStripMenuItem10
     //
     this.toolStripMenuItem10.Image = ((System.Drawing.Image)(resources.GetObject("toolStripMenuItem10.Image")));
     this.toolStripMenuItem10.Name = "toolStripMenuItem10";
     this.toolStripMenuItem10.Size = new System.Drawing.Size(118, 22);
     this.toolStripMenuItem10.Text = "风格(三)";
     this.toolStripMenuItem10.Click += new System.EventHandler(this.toolStripMenuItem10_Click);
     //
     // toolStripMenuItem11
     //
     this.toolStripMenuItem11.Image = ((System.Drawing.Image)(resources.GetObject("toolStripMenuItem11.Image")));
     this.toolStripMenuItem11.Name = "toolStripMenuItem11";
     this.toolStripMenuItem11.Size = new System.Drawing.Size(118, 22);
     this.toolStripMenuItem11.Text = "风格(四)";
     this.toolStripMenuItem11.Click += new System.EventHandler(this.toolStripMenuItem11_Click);
     //
     // 风格五ToolStripMenuItem
     //
     this.风格五ToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("风格五ToolStripMenuItem.Image")));
     this.风格五ToolStripMenuItem.Name = "风格五ToolStripMenuItem";
     this.风格五ToolStripMenuItem.Size = new System.Drawing.Size(118, 22);
     this.风格五ToolStripMenuItem.Text = "风格(五)";
     this.风格五ToolStripMenuItem.Click += new System.EventHandler(this.风格五ToolStripMenuItem_Click);
     //
     // 风格六ToolStripMenuItem
     //
     this.风格六ToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("风格六ToolStripMenuItem.Image")));
     this.风格六ToolStripMenuItem.Name = "风格六ToolStripMenuItem";
     this.风格六ToolStripMenuItem.Size = new System.Drawing.Size(118, 22);
     this.风格六ToolStripMenuItem.Text = "风格(六)";
     this.风格六ToolStripMenuItem.Click += new System.EventHandler(this.风格六ToolStripMenuItem_Click);
     //
     // 风格七ToolStripMenuItem
     //
     this.风格七ToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("风格七ToolStripMenuItem.Image")));
     this.风格七ToolStripMenuItem.Name = "风格七ToolStripMenuItem";
     this.风格七ToolStripMenuItem.Size = new System.Drawing.Size(118, 22);
     this.风格七ToolStripMenuItem.Text = "风格(七)";
     this.风格七ToolStripMenuItem.Click += new System.EventHandler(this.风格七ToolStripMenuItem_Click);
     //
     // toolStripMenuItem7
     //
     this.toolStripMenuItem7.Name = "toolStripMenuItem7";
     this.toolStripMenuItem7.Size = new System.Drawing.Size(115, 6);
     //
     // 原始经典ToolStripMenuItem
     //
     this.原始经典ToolStripMenuItem.Name = "原始经典ToolStripMenuItem";
     this.原始经典ToolStripMenuItem.Size = new System.Drawing.Size(118, 22);
     this.原始经典ToolStripMenuItem.Text = "原始经典";
     this.原始经典ToolStripMenuItem.Click += new System.EventHandler(this.原始经典ToolStripMenuItem_Click);
     //
     // skinEngine1
     //
     this.skinEngine1.SerialNumber = "";
     this.skinEngine1.SkinFile = null;
     //
     // tabPage9
     //
     this.tabPage9.Location = new System.Drawing.Point(4, 22);
     this.tabPage9.Name = "tabPage9";
     this.tabPage9.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage9.Size = new System.Drawing.Size(544, 520);
     this.tabPage9.TabIndex = 0;
     this.tabPage9.Text = "WEB登录";
     this.tabPage9.UseVisualStyleBackColor = true;
     //
     // tabPage10
     //
     this.tabPage10.Location = new System.Drawing.Point(4, 22);
     this.tabPage10.Name = "tabPage10";
     this.tabPage10.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage10.Size = new System.Drawing.Size(946, 520);
     this.tabPage10.TabIndex = 1;
     this.tabPage10.Text = "数据整理发布";
     this.tabPage10.UseVisualStyleBackColor = true;
     //
     // tabPage11
     //
     this.tabPage11.Controls.Add(this.groupBox2);
     this.tabPage11.Location = new System.Drawing.Point(4, 22);
     this.tabPage11.Name = "tabPage11";
     this.tabPage11.Size = new System.Drawing.Size(780, 514);
     this.tabPage11.TabIndex = 2;
     this.tabPage11.Text = "发布模块配置";
     this.tabPage11.UseVisualStyleBackColor = true;
     //
     // groupBox2
     //
     this.groupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox2.Controls.Add(this.textBox5);
     this.groupBox2.Controls.Add(this.label6);
     this.groupBox2.Controls.Add(this.button3);
     this.groupBox2.Controls.Add(this.textBox6);
     this.groupBox2.Controls.Add(this.textBox7);
     this.groupBox2.Controls.Add(this.label7);
     this.groupBox2.Controls.Add(this.label8);
     this.groupBox2.Controls.Add(this.linkLabel8);
     this.groupBox2.Controls.Add(this.linkLabel9);
     this.groupBox2.Controls.Add(this.linkLabel10);
     this.groupBox2.Controls.Add(this.linkLabel11);
     this.groupBox2.Controls.Add(this.linkLabel12);
     this.groupBox2.Controls.Add(this.linkLabel13);
     this.groupBox2.Controls.Add(this.linkLabel14);
     this.groupBox2.Controls.Add(this.label9);
     this.groupBox2.Controls.Add(this.textBox8);
     this.groupBox2.Controls.Add(this.label10);
     this.groupBox2.Controls.Add(this.button4);
     this.groupBox2.Location = new System.Drawing.Point(18, 41);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(595, 424);
     this.groupBox2.TabIndex = 0;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "WEB发布配置";
     //
     // textBox5
     //
     this.textBox5.Location = new System.Drawing.Point(90, 24);
     this.textBox5.Name = "textBox5";
     this.textBox5.Size = new System.Drawing.Size(280, 21);
     this.textBox5.TabIndex = 17;
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(18, 27);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(65, 12);
     this.label6.TabIndex = 16;
     this.label6.Text = "模块名称:";
     //
     // button3
     //
     this.button3.Location = new System.Drawing.Point(442, 347);
     this.button3.Name = "button3";
     this.button3.Size = new System.Drawing.Size(75, 23);
     this.button3.TabIndex = 15;
     this.button3.Text = "重 置";
     this.button3.UseVisualStyleBackColor = true;
     //
     // textBox6
     //
     this.textBox6.Location = new System.Drawing.Point(92, 270);
     this.textBox6.Multiline = true;
     this.textBox6.Name = "textBox6";
     this.textBox6.Size = new System.Drawing.Size(278, 55);
     this.textBox6.TabIndex = 14;
     this.textBox6.Text = "失败了.";
     //
     // textBox7
     //
     this.textBox7.Location = new System.Drawing.Point(91, 203);
     this.textBox7.Multiline = true;
     this.textBox7.Name = "textBox7";
     this.textBox7.Size = new System.Drawing.Size(279, 60);
     this.textBox7.TabIndex = 13;
     this.textBox7.Text = "恭喜发布成功.";
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(20, 273);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(65, 12);
     this.label7.TabIndex = 12;
     this.label7.Text = "失败标识:";
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Location = new System.Drawing.Point(20, 204);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(65, 12);
     this.label8.TabIndex = 11;
     this.label8.Text = "成功标识:";
     //
     // linkLabel8
     //
     this.linkLabel8.AutoSize = true;
     this.linkLabel8.Location = new System.Drawing.Point(416, 153);
     this.linkLabel8.Name = "linkLabel8";
     this.linkLabel8.Size = new System.Drawing.Size(77, 12);
     this.linkLabel8.TabIndex = 10;
     this.linkLabel8.TabStop = true;
     this.linkLabel8.Text = "六位随机字母";
     //
     // linkLabel9
     //
     this.linkLabel9.AutoSize = true;
     this.linkLabel9.Location = new System.Drawing.Point(324, 153);
     this.linkLabel9.Name = "linkLabel9";
     this.linkLabel9.Size = new System.Drawing.Size(77, 12);
     this.linkLabel9.TabIndex = 9;
     this.linkLabel9.TabStop = true;
     this.linkLabel9.Text = "六位随机数字";
     //
     // linkLabel10
     //
     this.linkLabel10.AutoSize = true;
     this.linkLabel10.Location = new System.Drawing.Point(272, 152);
     this.linkLabel10.Name = "linkLabel10";
     this.linkLabel10.Size = new System.Drawing.Size(29, 12);
     this.linkLabel10.TabIndex = 8;
     this.linkLabel10.TabStop = true;
     this.linkLabel10.Text = "来源";
     //
     // linkLabel11
     //
     this.linkLabel11.AutoSize = true;
     this.linkLabel11.Location = new System.Drawing.Point(224, 152);
     this.linkLabel11.Name = "linkLabel11";
     this.linkLabel11.Size = new System.Drawing.Size(29, 12);
     this.linkLabel11.TabIndex = 7;
     this.linkLabel11.TabStop = true;
     this.linkLabel11.Text = "作者";
     //
     // linkLabel12
     //
     this.linkLabel12.AutoSize = true;
     this.linkLabel12.Location = new System.Drawing.Point(179, 152);
     this.linkLabel12.Name = "linkLabel12";
     this.linkLabel12.Size = new System.Drawing.Size(29, 12);
     this.linkLabel12.TabIndex = 6;
     this.linkLabel12.TabStop = true;
     this.linkLabel12.Text = "内容";
     //
     // linkLabel13
     //
     this.linkLabel13.AutoSize = true;
     this.linkLabel13.Location = new System.Drawing.Point(134, 152);
     this.linkLabel13.Name = "linkLabel13";
     this.linkLabel13.Size = new System.Drawing.Size(29, 12);
     this.linkLabel13.TabIndex = 5;
     this.linkLabel13.TabStop = true;
     this.linkLabel13.Text = "导读";
     //
     // linkLabel14
     //
     this.linkLabel14.AutoSize = true;
     this.linkLabel14.Location = new System.Drawing.Point(89, 152);
     this.linkLabel14.Name = "linkLabel14";
     this.linkLabel14.Size = new System.Drawing.Size(29, 12);
     this.linkLabel14.TabIndex = 4;
     this.linkLabel14.TabStop = true;
     this.linkLabel14.Text = "标题";
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Location = new System.Drawing.Point(18, 153);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(65, 12);
     this.label9.TabIndex = 3;
     this.label9.Text = "发布参数:";
     //
     // textBox8
     //
     this.textBox8.Location = new System.Drawing.Point(91, 65);
     this.textBox8.Multiline = true;
     this.textBox8.Name = "textBox8";
     this.textBox8.Size = new System.Drawing.Size(602, 67);
     this.textBox8.TabIndex = 2;
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Location = new System.Drawing.Point(18, 65);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(65, 12);
     this.label10.TabIndex = 1;
     this.label10.Text = "发布地址:";
     //
     // button4
     //
     this.button4.Location = new System.Drawing.Point(549, 347);
     this.button4.Name = "button4";
     this.button4.Size = new System.Drawing.Size(75, 23);
     this.button4.TabIndex = 0;
     this.button4.Text = "确 定";
     this.button4.UseVisualStyleBackColor = true;
     //
     // tabPage12
     //
     this.tabPage12.Location = new System.Drawing.Point(4, 22);
     this.tabPage12.Name = "tabPage12";
     this.tabPage12.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage12.Size = new System.Drawing.Size(780, 514);
     this.tabPage12.TabIndex = 0;
     this.tabPage12.Text = "WEB登录";
     this.tabPage12.UseVisualStyleBackColor = true;
     //
     // tabPage13
     //
     this.tabPage13.Location = new System.Drawing.Point(4, 22);
     this.tabPage13.Name = "tabPage13";
     this.tabPage13.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage13.Size = new System.Drawing.Size(780, 514);
     this.tabPage13.TabIndex = 1;
     this.tabPage13.Text = "数据整理发布";
     this.tabPage13.UseVisualStyleBackColor = true;
     //
     // tabPage14
     //
     this.tabPage14.Controls.Add(this.groupBox3);
     this.tabPage14.Location = new System.Drawing.Point(4, 22);
     this.tabPage14.Name = "tabPage14";
     this.tabPage14.Size = new System.Drawing.Size(780, 514);
     this.tabPage14.TabIndex = 2;
     this.tabPage14.Text = "发布模块配置";
     this.tabPage14.UseVisualStyleBackColor = true;
     //
     // groupBox3
     //
     this.groupBox3.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.groupBox3.Controls.Add(this.textBox9);
     this.groupBox3.Controls.Add(this.label11);
     this.groupBox3.Controls.Add(this.button5);
     this.groupBox3.Controls.Add(this.textBox10);
     this.groupBox3.Controls.Add(this.textBox11);
     this.groupBox3.Controls.Add(this.label12);
     this.groupBox3.Controls.Add(this.label13);
     this.groupBox3.Controls.Add(this.linkLabel15);
     this.groupBox3.Controls.Add(this.linkLabel16);
     this.groupBox3.Controls.Add(this.linkLabel17);
     this.groupBox3.Controls.Add(this.linkLabel18);
     this.groupBox3.Controls.Add(this.linkLabel19);
     this.groupBox3.Controls.Add(this.linkLabel20);
     this.groupBox3.Controls.Add(this.linkLabel21);
     this.groupBox3.Controls.Add(this.label14);
     this.groupBox3.Controls.Add(this.textBox12);
     this.groupBox3.Controls.Add(this.label15);
     this.groupBox3.Controls.Add(this.button6);
     this.groupBox3.Location = new System.Drawing.Point(18, 41);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Size = new System.Drawing.Size(595, 424);
     this.groupBox3.TabIndex = 0;
     this.groupBox3.TabStop = false;
     this.groupBox3.Text = "WEB发布配置";
     //
     // textBox9
     //
     this.textBox9.Location = new System.Drawing.Point(90, 24);
     this.textBox9.Name = "textBox9";
     this.textBox9.Size = new System.Drawing.Size(280, 21);
     this.textBox9.TabIndex = 17;
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Location = new System.Drawing.Point(18, 27);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(65, 12);
     this.label11.TabIndex = 16;
     this.label11.Text = "模块名称:";
     //
     // button5
     //
     this.button5.Location = new System.Drawing.Point(442, 347);
     this.button5.Name = "button5";
     this.button5.Size = new System.Drawing.Size(75, 23);
     this.button5.TabIndex = 15;
     this.button5.Text = "重 置";
     this.button5.UseVisualStyleBackColor = true;
     //
     // textBox10
     //
     this.textBox10.Location = new System.Drawing.Point(92, 270);
     this.textBox10.Multiline = true;
     this.textBox10.Name = "textBox10";
     this.textBox10.Size = new System.Drawing.Size(278, 55);
     this.textBox10.TabIndex = 14;
     this.textBox10.Text = "失败了.";
     //
     // textBox11
     //
     this.textBox11.Location = new System.Drawing.Point(91, 203);
     this.textBox11.Multiline = true;
     this.textBox11.Name = "textBox11";
     this.textBox11.Size = new System.Drawing.Size(279, 60);
     this.textBox11.TabIndex = 13;
     this.textBox11.Text = "恭喜发布成功.";
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Location = new System.Drawing.Point(20, 273);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(65, 12);
     this.label12.TabIndex = 12;
     this.label12.Text = "失败标识:";
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Location = new System.Drawing.Point(20, 204);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(65, 12);
     this.label13.TabIndex = 11;
     this.label13.Text = "成功标识:";
     //
     // linkLabel15
     //
     this.linkLabel15.AutoSize = true;
     this.linkLabel15.Location = new System.Drawing.Point(416, 153);
     this.linkLabel15.Name = "linkLabel15";
     this.linkLabel15.Size = new System.Drawing.Size(77, 12);
     this.linkLabel15.TabIndex = 10;
     this.linkLabel15.TabStop = true;
     this.linkLabel15.Text = "六位随机字母";
     //
     // linkLabel16
     //
     this.linkLabel16.AutoSize = true;
     this.linkLabel16.Location = new System.Drawing.Point(324, 153);
     this.linkLabel16.Name = "linkLabel16";
     this.linkLabel16.Size = new System.Drawing.Size(77, 12);
     this.linkLabel16.TabIndex = 9;
     this.linkLabel16.TabStop = true;
     this.linkLabel16.Text = "六位随机数字";
     //
     // linkLabel17
     //
     this.linkLabel17.AutoSize = true;
     this.linkLabel17.Location = new System.Drawing.Point(272, 152);
     this.linkLabel17.Name = "linkLabel17";
     this.linkLabel17.Size = new System.Drawing.Size(29, 12);
     this.linkLabel17.TabIndex = 8;
     this.linkLabel17.TabStop = true;
     this.linkLabel17.Text = "来源";
     //
     // linkLabel18
     //
     this.linkLabel18.AutoSize = true;
     this.linkLabel18.Location = new System.Drawing.Point(224, 152);
     this.linkLabel18.Name = "linkLabel18";
     this.linkLabel18.Size = new System.Drawing.Size(29, 12);
     this.linkLabel18.TabIndex = 7;
     this.linkLabel18.TabStop = true;
     this.linkLabel18.Text = "作者";
     //
     // linkLabel19
     //
     this.linkLabel19.AutoSize = true;
     this.linkLabel19.Location = new System.Drawing.Point(179, 152);
     this.linkLabel19.Name = "linkLabel19";
     this.linkLabel19.Size = new System.Drawing.Size(29, 12);
     this.linkLabel19.TabIndex = 6;
     this.linkLabel19.TabStop = true;
     this.linkLabel19.Text = "内容";
     //
     // linkLabel20
     //
     this.linkLabel20.AutoSize = true;
     this.linkLabel20.Location = new System.Drawing.Point(134, 152);
     this.linkLabel20.Name = "linkLabel20";
     this.linkLabel20.Size = new System.Drawing.Size(29, 12);
     this.linkLabel20.TabIndex = 5;
     this.linkLabel20.TabStop = true;
     this.linkLabel20.Text = "导读";
     //
     // linkLabel21
     //
     this.linkLabel21.AutoSize = true;
     this.linkLabel21.Location = new System.Drawing.Point(89, 152);
     this.linkLabel21.Name = "linkLabel21";
     this.linkLabel21.Size = new System.Drawing.Size(29, 12);
     this.linkLabel21.TabIndex = 4;
     this.linkLabel21.TabStop = true;
     this.linkLabel21.Text = "标题";
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.Location = new System.Drawing.Point(18, 153);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(65, 12);
     this.label14.TabIndex = 3;
     this.label14.Text = "发布参数:";
     //
     // textBox12
     //
     this.textBox12.Location = new System.Drawing.Point(91, 65);
     this.textBox12.Multiline = true;
     this.textBox12.Name = "textBox12";
     this.textBox12.Size = new System.Drawing.Size(602, 67);
     this.textBox12.TabIndex = 2;
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.Location = new System.Drawing.Point(18, 65);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(65, 12);
     this.label15.TabIndex = 1;
     this.label15.Text = "发布地址:";
     //
     // button6
     //
     this.button6.Location = new System.Drawing.Point(549, 347);
     this.button6.Name = "button6";
     this.button6.Size = new System.Drawing.Size(75, 23);
     this.button6.TabIndex = 0;
     this.button6.Text = "确 定";
     this.button6.UseVisualStyleBackColor = true;
     //
     // toolBarButton3
     //
     this.toolBarButton3.Name = "toolBarButton3";
     this.toolBarButton3.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // toolBarButtonSettings
     //
     this.toolBarButtonSettings.DropDownMenu = this.contextMenuSettings;
     this.toolBarButtonSettings.ImageIndex = 4;
     this.toolBarButtonSettings.Name = "toolBarButtonSettings";
     this.toolBarButtonSettings.Style = System.Windows.Forms.ToolBarButtonStyle.DropDownButton;
     this.toolBarButtonSettings.Text = "系统设置";
     this.toolBarButtonSettings.ToolTipText = "Show settings form";
     //
     // toolBarButton2
     //
     this.toolBarButton2.Name = "toolBarButton2";
     this.toolBarButton2.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // toolBarButtonDeleteAll
     //
     this.toolBarButtonDeleteAll.ImageIndex = 3;
     this.toolBarButtonDeleteAll.Name = "toolBarButtonDeleteAll";
     this.toolBarButtonDeleteAll.Text = "清空日志";
     this.toolBarButtonDeleteAll.ToolTipText = "Delete all results";
     //
     // toolBarButtonStop
     //
     this.toolBarButtonStop.ImageIndex = 2;
     this.toolBarButtonStop.Name = "toolBarButtonStop";
     this.toolBarButtonStop.Text = "停止工作";
     this.toolBarButtonStop.ToolTipText = "Stop parsing process";
     //
     // toolBarButtonPause
     //
     this.toolBarButtonPause.Enabled = false;
     this.toolBarButtonPause.ImageIndex = 1;
     this.toolBarButtonPause.Name = "toolBarButtonPause";
     this.toolBarButtonPause.Text = "暂停抓取";
     this.toolBarButtonPause.ToolTipText = "Pause parsing process";
     this.toolBarButtonPause.Visible = false;
     //
     // toolBarButtonContinue
     //
     this.toolBarButtonContinue.Enabled = false;
     this.toolBarButtonContinue.ImageIndex = 0;
     this.toolBarButtonContinue.Name = "toolBarButtonContinue";
     this.toolBarButtonContinue.Text = "开始任务";
     this.toolBarButtonContinue.ToolTipText = "Coninue parsing process";
     this.toolBarButtonContinue.Visible = false;
     //
     // toolBarMain
     //
     this.toolBarMain.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.toolBarMain.Appearance = System.Windows.Forms.ToolBarAppearance.Flat;
     this.toolBarMain.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
     this.toolBarButtonContinue,
     this.toolBarButtonPause,
     this.toolBarButtonStop,
     this.toolBarButtonDeleteAll,
     this.toolBarButton2,
     this.toolBarButtonSettings,
     this.toolBarButton3,
     this.toolBarButton1,
     this.toolBarButton5,
     this.toolBarButton6,
     this.toolBarButton7});
     this.toolBarMain.ButtonSize = new System.Drawing.Size(30, 10);
     this.toolBarMain.Dock = System.Windows.Forms.DockStyle.None;
     this.toolBarMain.DropDownArrows = true;
     this.toolBarMain.ImageList = this.imageList2;
     this.toolBarMain.Location = new System.Drawing.Point(0, 26);
     this.toolBarMain.Name = "toolBarMain";
     this.toolBarMain.ShowToolTips = true;
     this.toolBarMain.Size = new System.Drawing.Size(927, 28);
     this.toolBarMain.TabIndex = 0;
     this.toolBarMain.TextAlign = System.Windows.Forms.ToolBarTextAlign.Right;
     this.toolBarMain.ButtonClick += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.toolBarMain_ButtonClick);
     //
     // toolBarButton1
     //
     this.toolBarButton1.ImageIndex = 8;
     this.toolBarButton1.Name = "toolBarButton1";
     this.toolBarButton1.Text = "分类管理";
     //
     // toolBarButton5
     //
     this.toolBarButton5.ImageIndex = 7;
     this.toolBarButton5.Name = "toolBarButton5";
     this.toolBarButton5.Text = "规则管理";
     //
     // toolBarButton6
     //
     this.toolBarButton6.ImageIndex = 5;
     this.toolBarButton6.Name = "toolBarButton6";
     this.toolBarButton6.Text = "多引擎合并";
     //
     // timer1
     //
     this.timer1.Interval = 10000;
     this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
     //
     // timer2
     //
     this.timer2.Interval = 1000;
     this.timer2.Tick += new System.EventHandler(this.timer2_Tick);
     //
     // notifyIcon1
     //
     this.notifyIcon1.ContextMenuStrip = this.contextMenuStrip1;
     this.notifyIcon1.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon1.Icon")));
     this.notifyIcon1.Text = "军长搜索";
     this.notifyIcon1.Visible = true;
     this.notifyIcon1.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.notifyIcon1_MouseDoubleClick);
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.最小化程序ToolStripMenuItem1,
     this.最大化ToolStripMenuItem,
     this.退出系统ToolStripMenuItem1});
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(131, 70);
     //
     // 最小化程序ToolStripMenuItem1
     //
     this.最小化程序ToolStripMenuItem1.Name = "最小化程序ToolStripMenuItem1";
     this.最小化程序ToolStripMenuItem1.Size = new System.Drawing.Size(130, 22);
     this.最小化程序ToolStripMenuItem1.Text = "隐藏到托盘";
     this.最小化程序ToolStripMenuItem1.Click += new System.EventHandler(this.最小化程序ToolStripMenuItem1_Click);
     //
     // 最大化ToolStripMenuItem
     //
     this.最大化ToolStripMenuItem.Name = "最大化ToolStripMenuItem";
     this.最大化ToolStripMenuItem.Size = new System.Drawing.Size(130, 22);
     this.最大化ToolStripMenuItem.Text = "还原到桌面";
     this.最大化ToolStripMenuItem.Click += new System.EventHandler(this.最大化ToolStripMenuItem_Click);
     //
     // 退出系统ToolStripMenuItem1
     //
     this.退出系统ToolStripMenuItem1.Name = "退出系统ToolStripMenuItem1";
     this.退出系统ToolStripMenuItem1.Size = new System.Drawing.Size(130, 22);
     this.退出系统ToolStripMenuItem1.Text = "退出 程序";
     this.退出系统ToolStripMenuItem1.Click += new System.EventHandler(this.退出系统ToolStripMenuItem1_Click);
     //
     // toolBarButton7
     //
     this.toolBarButton7.ImageIndex = 9;
     this.toolBarButton7.Name = "toolBarButton7";
     this.toolBarButton7.Text = "Xml设置";
     //
     // CrawlerForm
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
     this.ClientSize = new System.Drawing.Size(926, 564);
     this.Controls.Add(this.toolBarMain);
     this.Controls.Add(this.splitContainer1);
     this.Controls.Add(this.statusBar);
     this.Controls.Add(this.menuStrip1);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MainMenuStrip = this.menuStrip1;
     this.Name = "CrawlerForm";
     this.Text = "军长搜索 V 1.5";
     this.Load += new System.EventHandler(this.CrawlerForm_Load);
     this.SizeChanged += new System.EventHandler(this.CrawlerForm_SizeChanged);
     this.Closing += new System.ComponentModel.CancelEventHandler(this.CrawlerForm_Closing);
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.CrawlerForm_FormClosing);
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanelInfo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanelURLs)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanelFiles)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanelByteCount)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanelErrors)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanelCPU)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanelMem)).EndInit();
     this.tabControlRightView.ResumeLayout(false);
     this.tabPageThreads.ResumeLayout(false);
     this.tabPageRequests.ResumeLayout(false);
     this.splitContainer2.Panel1.ResumeLayout(false);
     this.splitContainer2.Panel2.ResumeLayout(false);
     this.splitContainer2.ResumeLayout(false);
     this.tabPageErrors.ResumeLayout(false);
     this.tabPageErrors.PerformLayout();
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     this.splitContainer1.ResumeLayout(false);
     this.tabControl1.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     this.webtongbu.ResumeLayout(false);
     this.tabPage2.ResumeLayout(false);
     this.tabPage2.PerformLayout();
     this.tabPage5.ResumeLayout(false);
     this.tabPage5.PerformLayout();
     this.tabControl2.ResumeLayout(false);
     this.tabPage3.ResumeLayout(false);
     this.tabPage3.PerformLayout();
     this.zidinyicalss.ResumeLayout(false);
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     this.tabPage11.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     this.tabPage14.ResumeLayout(false);
     this.groupBox3.ResumeLayout(false);
     this.groupBox3.PerformLayout();
     this.contextMenuStrip1.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
示例#33
0
 public bool SetRenderDelegate(SkinEngine.Players.RenderDlgt dlgt)
 {
   _renderDlgt = dlgt;
   return true;
 }