亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? iismainwindow.cs

?? 用ADSI操作IIS文件
?? CS
?? 第 1 頁 / 共 3 頁
字號:
// IIsAdmin.NET
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
// 
// This softwareis provided "AS IS" with no warranties of any kind.
// The entire risk arising out of the use or performance of the software
// and source code is with you.
//
// THIS NOTICE MAY NOT BE REMOVED FROM THIS FILE.

using System;
using System.Diagnostics;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;

namespace IIsAdmin
{
	/// <summary>
	/// Summary description for IIsMainWindow.
	/// </summary>
	public class IIsMainWindow : System.Windows.Forms.Form
	{
        private IIsAdministrator _iisAdministrator;

        private ListView _listView;
        private StatusBar _statusBar;
        private StatusBarPanel statusBarPanel3;
        private StatusBarPanel statusBarPanel4;
        private ColumnHeader columnHeader1;
        private ColumnHeader columnHeader2;
        private Button _buttonRefresh;
        private Button _buttonStart;
        private Button _buttonStop;
        private Button _buttonCreate;
        private Button _buttonDelete;
        private Button _buttonRestartIIS;
        private Button _buttonOpenIIS;
        private System.Windows.Forms.NotifyIcon _notifyIcon;
        private System.Windows.Forms.ContextMenu _contextMenuTray;
        private System.ComponentModel.IContainer components;

        /// <summary>
        /// Initializes a new instance of the IIsMainWindow class
        /// </summary>
		public IIsMainWindow(IIsAdministrator iisAdministrator)
		{
			this.InitializeComponent();

            this.Resize += new EventHandler(IIsMainWindow_Resize);

            _iisAdministrator = iisAdministrator;
            _iisAdministrator.WebSiteStarted += new IIsWebSiteEventHandler(this.WebSite_Started);
            _iisAdministrator.WebSiteStopped += new IIsWebSiteEventHandler(this.WebSite_Stopped);

            _listView.CheckBoxes = false;
            _listView.MultiSelect = false;
            _listView.ItemCheck += new ItemCheckEventHandler(this.ListView_ItemChecked);
            _listView.SelectedIndexChanged += new EventHandler(this.ListView_SelectedItemIndexChanged);
            _listView.DoubleClick += new EventHandler(ListView_DoubleClick);

            _buttonRefresh.Click += new EventHandler(this.ButtonRefresh_Clicked);
            _buttonStart.Click += new EventHandler(this.ButtonStart_Clicked);
            _buttonStop.Click += new EventHandler(this.ButtonStop_Clicked);
            _buttonCreate.Click += new EventHandler(this.ButtonCreate_Clicked);
            _buttonDelete.Click += new EventHandler(this.ButtonDelete_Clicked);
            _buttonRestartIIS.Click += new EventHandler(this.ButtonRestartIIs_Clicked);
            _buttonOpenIIS.Click += new EventHandler(this.ButtonOpenIIs_Clicked);            

            _contextMenuTray.Popup += new EventHandler(this.ContextMenuTray_Popup);

            ConfigureNotifyIcon(true);
		}

		/// <summary>
		/// Clean up any resources being used.
		/// </summary>
		protected override void Dispose( bool disposing )
		{
			if( disposing )
			{
				if(components != null)
				{
					components.Dispose();
				}
			}
			base.Dispose( disposing );
		}

		#region Windows Form Designer generated code
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(IIsMainWindow));
            this._listView = new System.Windows.Forms.ListView();
            this.columnHeader2 = new System.Windows.Forms.ColumnHeader();
            this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
            this._buttonRefresh = new System.Windows.Forms.Button();
            this._buttonStart = new System.Windows.Forms.Button();
            this._buttonStop = new System.Windows.Forms.Button();
            this._buttonCreate = new System.Windows.Forms.Button();
            this._buttonDelete = new System.Windows.Forms.Button();
            this._buttonRestartIIS = new System.Windows.Forms.Button();
            this._buttonOpenIIS = new System.Windows.Forms.Button();
            this._statusBar = new System.Windows.Forms.StatusBar();
            this.statusBarPanel3 = new System.Windows.Forms.StatusBarPanel();
            this.statusBarPanel4 = new System.Windows.Forms.StatusBarPanel();
            this._contextMenuTray = new System.Windows.Forms.ContextMenu();
            this._notifyIcon = new System.Windows.Forms.NotifyIcon(this.components);
            ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel4)).BeginInit();
            this.SuspendLayout();
            // 
            // _listView
            // 
            this._listView.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._listView.CheckBoxes = true;
            this._listView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.columnHeader2,
            this.columnHeader1});
            this._listView.FullRowSelect = true;
            this._listView.Location = new System.Drawing.Point(10, 9);
            this._listView.Name = "_listView";
            this._listView.Size = new System.Drawing.Size(279, 183);
            this._listView.TabIndex = 0;
            this._listView.UseCompatibleStateImageBehavior = false;
            this._listView.View = System.Windows.Forms.View.Details;
            // 
            // columnHeader2
            // 
            this.columnHeader2.Text = "Name";
            this.columnHeader2.Width = 180;
            // 
            // columnHeader1
            // 
            this.columnHeader1.Text = "Index";
            this.columnHeader1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            this.columnHeader1.Width = 47;
            // 
            // _buttonRefresh
            // 
            this._buttonRefresh.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this._buttonRefresh.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this._buttonRefresh.Location = new System.Drawing.Point(299, 9);
            this._buttonRefresh.Name = "_buttonRefresh";
            this._buttonRefresh.Size = new System.Drawing.Size(90, 24);
            this._buttonRefresh.TabIndex = 1;
            this._buttonRefresh.Text = "Refresh";
            // 
            // _buttonStart
            // 
            this._buttonStart.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this._buttonStart.Enabled = false;
            this._buttonStart.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this._buttonStart.Location = new System.Drawing.Point(299, 34);
            this._buttonStart.Name = "_buttonStart";
            this._buttonStart.Size = new System.Drawing.Size(90, 25);
            this._buttonStart.TabIndex = 2;
            this._buttonStart.Text = "Start";
            // 
            // _buttonStop
            // 
            this._buttonStop.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this._buttonStop.Enabled = false;
            this._buttonStop.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this._buttonStop.Location = new System.Drawing.Point(299, 60);
            this._buttonStop.Name = "_buttonStop";
            this._buttonStop.Size = new System.Drawing.Size(90, 25);
            this._buttonStop.TabIndex = 3;
            this._buttonStop.Text = "Stop";
            // 
            // _buttonCreate
            // 
            this._buttonCreate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this._buttonCreate.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this._buttonCreate.Location = new System.Drawing.Point(299, 86);
            this._buttonCreate.Name = "_buttonCreate";
            this._buttonCreate.Size = new System.Drawing.Size(90, 25);
            this._buttonCreate.TabIndex = 4;
            this._buttonCreate.Text = "Create";
            // 
            // _buttonDelete
            // 
            this._buttonDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this._buttonDelete.Enabled = false;
            this._buttonDelete.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this._buttonDelete.Location = new System.Drawing.Point(299, 112);
            this._buttonDelete.Name = "_buttonDelete";
            this._buttonDelete.Size = new System.Drawing.Size(90, 25);
            this._buttonDelete.TabIndex = 5;
            this._buttonDelete.Text = "Delete";
            // 
            // _buttonRestartIIS
            // 
            this._buttonRestartIIS.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this._buttonRestartIIS.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this._buttonRestartIIS.Location = new System.Drawing.Point(299, 138);
            this._buttonRestartIIS.Name = "_buttonRestartIIS";
            this._buttonRestartIIS.Size = new System.Drawing.Size(90, 25);
            this._buttonRestartIIS.TabIndex = 6;
            this._buttonRestartIIS.Text = "Restart IIS";
            // 
            // _buttonOpenIIS
            // 
            this._buttonOpenIIS.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this._buttonOpenIIS.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this._buttonOpenIIS.Location = new System.Drawing.Point(299, 164);
            this._buttonOpenIIS.Name = "_buttonOpenIIS";
            this._buttonOpenIIS.Size = new System.Drawing.Size(90, 24);
            this._buttonOpenIIS.TabIndex = 7;
            this._buttonOpenIIS.Text = "Open IIS";
            // 
            // _statusBar
            // 
            this._statusBar.Location = new System.Drawing.Point(0, 208);
            this._statusBar.Name = "_statusBar";
            this._statusBar.Panels.AddRange(new System.Windows.Forms.StatusBarPanel[] {
            this.statusBarPanel3,
            this.statusBarPanel4});
            this._statusBar.ShowPanels = true;
            this._statusBar.Size = new System.Drawing.Size(395, 23);
            this._statusBar.TabIndex = 8;
            // 
            // statusBarPanel3
            // 
            this.statusBarPanel3.Name = "statusBarPanel3";
            // 
            // statusBarPanel4
            // 
            this.statusBarPanel4.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Spring;
            this.statusBarPanel4.Name = "statusBarPanel4";
            this.statusBarPanel4.Width = 279;
            // 
            // _notifyIcon
            // 
            this._notifyIcon.Icon = ((System.Drawing.Icon)(resources.GetObject("_notifyIcon.Icon")));
            this._notifyIcon.Visible = true;
            // 
            // IIsMainWindow
            // 
            this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
            this.ClientSize = new System.Drawing.Size(395, 231);
            this.Controls.Add(this._buttonOpenIIS);
            this.Controls.Add(this._buttonRestartIIS);
            this.Controls.Add(this._buttonDelete);
            this.Controls.Add(this._buttonCreate);
            this.Controls.Add(this._buttonStop);
            this.Controls.Add(this._buttonStart);
            this.Controls.Add(this._buttonRefresh);
            this.Controls.Add(this._listView);
            this.Controls.Add(this._statusBar);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.MinimumSize = new System.Drawing.Size(403, 258);
            this.Name = "IIsMainWindow";
            this.Text = "IIsAdmin.NET 1.1";
            ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel4)).EndInit();

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久电影国产免费久久电影| 又紧又大又爽精品一区二区| 精品视频一区 二区 三区| 国产毛片一区二区| 日一区二区三区| 亚洲精品老司机| 一色桃子久久精品亚洲| 久久免费美女视频| 精品久久免费看| 日韩欧美aaaaaa| 制服丝袜国产精品| 欧美一区永久视频免费观看| 欧美性猛交xxxx乱大交退制版| 91精品国产综合久久久久久久| 一本一道久久a久久精品综合蜜臀| 亚洲精品成人在线| 国产婷婷色一区二区三区四区 | 亚州成人在线电影| 久久黄色级2电影| 亚洲少妇30p| 久久久不卡网国产精品一区| 欧美日韩一二三| 亚洲va欧美va人人爽| 亚洲欧美成人一区二区三区| 国产午夜精品一区二区三区嫩草| 91精品国产品国语在线不卡| 91精品国产综合久久久久| 91精品国产综合久久久久久久| 日韩欧美激情一区| 中文字幕精品综合| 亚洲美女区一区| 蜜臀av在线播放一区二区三区 | 日本免费在线视频不卡一不卡二| 理论片日本一区| 成人app软件下载大全免费| 在线视频亚洲一区| 精品捆绑美女sm三区| 国产精品福利av| 免费人成精品欧美精品| 成人三级在线视频| 在线观看av不卡| 国产拍欧美日韩视频二区| 亚洲最新在线观看| 久久精品国产一区二区三| av在线一区二区| 久久女同精品一区二区| 国产精品久久久久影院色老大| 免费成人av在线播放| 91丨porny丨最新| 精品久久国产字幕高潮| 亚洲综合色噜噜狠狠| 风间由美一区二区av101| 欧美一区午夜精品| 亚洲国产一区在线观看| 国产成人在线影院 | 狠狠狠色丁香婷婷综合激情| 色视频欧美一区二区三区| 亚洲黄一区二区三区| 国产精品18久久久久久久久| 欧美一区二区三区四区在线观看 | 欧美性大战久久| 亚洲欧美日韩电影| av电影一区二区| 中文字幕av资源一区| 国产不卡高清在线观看视频| 久久先锋影音av| 国产一区二区三区最好精华液| 日韩免费一区二区| 美女精品自拍一二三四| 欧美高清视频www夜色资源网| 亚洲精品免费看| 欧美午夜寂寞影院| 亚洲视频在线一区观看| 91一区在线观看| 亚洲综合丁香婷婷六月香| av一区二区三区黑人| 久久伊99综合婷婷久久伊| 国产美女主播视频一区| 欧美日韩一区二区在线观看| 亚洲一区二区美女| 91黄色免费网站| 日日夜夜精品视频免费| 亚洲精品一区二区三区精华液 | 国产成人精品亚洲777人妖| 国产网站一区二区| 欧美亚洲国产bt| 国模无码大尺度一区二区三区| 国产天堂亚洲国产碰碰| 欧美综合久久久| 精品一区二区三区影院在线午夜| 亚洲色图色小说| 欧美一区二区在线观看| 成人免费视频免费观看| 开心九九激情九九欧美日韩精美视频电影 | 亚洲精品欧美综合四区| 日韩视频免费直播| 91小宝寻花一区二区三区| 久久国产精品露脸对白| 亚洲国产精品综合小说图片区| 久久欧美一区二区| 欧美日韩在线播放三区| 97久久久精品综合88久久| 久久国产精品一区二区| 日韩和欧美一区二区| 亚洲一区二区免费视频| 亚洲黄网站在线观看| 亚洲免费在线视频一区 二区| 国产精品乱码久久久久久| 26uuu精品一区二区| 91精品免费在线观看| 欧美日韩一区三区四区| 欧美视频中文字幕| 91丝袜国产在线播放| av电影一区二区| 9久草视频在线视频精品| 国产v综合v亚洲欧| 成人理论电影网| 国产成人亚洲综合a∨婷婷| 国产在线播放一区三区四| 国产剧情在线观看一区二区| 国产高清久久久| 成人性色生活片| 欧洲精品中文字幕| 欧美日韩国产首页| 亚洲色图视频网站| 亚洲免费观看高清完整| 日韩高清在线不卡| 国产在线视视频有精品| 成人黄色电影在线| 91久久精品午夜一区二区| 欧美午夜在线一二页| 在线综合视频播放| 久久人人97超碰com| 国产精品国产馆在线真实露脸| 亚洲欧美日韩一区二区三区在线观看| 成人免费在线播放视频| 亚洲国产精品久久久久婷婷884| 久久成人18免费观看| 99re66热这里只有精品3直播 | 欧美日韩国产色站一区二区三区| 欧美大胆一级视频| 日韩理论在线观看| 日本不卡视频在线| 色综合久久久久久久久| 亚洲精品一区二区在线观看| 亚洲人成人一区二区在线观看 | 亚洲三级在线看| 精品一区二区av| 欧美日韩日日夜夜| 亚洲精品高清视频在线观看| 粉嫩在线一区二区三区视频| 91精品国产综合久久久久久久 | 欧美在线三级电影| 国产精品麻豆网站| 国产成人超碰人人澡人人澡| 91麻豆精品国产91久久久久久久久| 成人免费在线观看入口| 成人国产视频在线观看| 久久影院电视剧免费观看| 美美哒免费高清在线观看视频一区二区 | 亚洲aaa精品| 欧美视频在线播放| 亚洲日本在线视频观看| 99久久精品费精品国产一区二区| 国产欧美综合色| 成人精品国产福利| 欧美国产一区视频在线观看| 成人av电影免费在线播放| 久久亚洲综合色| 成人一二三区视频| 中文字幕欧美激情一区| 粉嫩一区二区三区性色av| 中文字幕 久热精品 视频在线| 丁香婷婷综合色啪| 亚洲视频网在线直播| 欧美中文字幕亚洲一区二区va在线 | 久久亚洲一区二区三区明星换脸| 久久电影网站中文字幕| 欧美经典三级视频一区二区三区| 国产成+人+日韩+欧美+亚洲| 亚洲色图.com| 精品美女在线观看| 91欧美一区二区| 日韩av中文字幕一区二区三区 | 国产精品色婷婷| 日本高清成人免费播放| 日韩国产一区二| 久久精品夜夜夜夜久久| 欧美自拍丝袜亚洲| 国产一区二区三区最好精华液| 亚洲人快播电影网| 精品久久人人做人人爽| 在线精品视频免费播放| 丁香六月久久综合狠狠色| 亚洲国产成人高清精品| 一区免费观看视频| 国产片一区二区三区| 欧美大度的电影原声| 欧美亚洲尤物久久| 91麻豆国产在线观看|