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

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

?? eventinternetpostform.cs

?? 取得GSM基站信息的程序NiceTrack以及源代碼
?? CS
字號:
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;

using NiceTracker.Events;

namespace NiceTracker
{
	/// <summary>
	/// Summary description for EventFlashBacklightForm.
	/// </summary>
	public class EventInternetPostForm : System.Windows.Forms.Form, IEventConfigForm
	{
		private EventInternetPost configEvent = null;
		private System.Windows.Forms.Label labelDescription;
		private System.Windows.Forms.TextBox textBoxDescription;
		private System.Windows.Forms.Label labelTrigger;
		private Microsoft.WindowsCE.Forms.InputPanel inputPanel1;
		private System.Windows.Forms.MainMenu mainMenu1;
		private System.Windows.Forms.Button buttonCells;
		private System.Windows.Forms.Label labelMode;
		private System.Windows.Forms.Button buttonAreas;
		private System.Windows.Forms.Button buttonTestEvent;
		private System.Windows.Forms.TextBox textBoxURL;
		private System.Windows.Forms.Label labelNoteText;
		private System.Windows.Forms.ComboBox comboBoxTrigger;
		private System.Windows.Forms.ComboBox comboBoxTriggerMode;
		private System.Windows.Forms.Label labelTitle;
	
		public EventInternetPostForm()
		{
			//
			// Required for Windows Form Designer support
			//
			InitializeComponent();

			buttonTestEvent.Visible = false;
		}

		public EventInternetPostForm( EventInternetPost evt )
		{
			//
			// Required for Windows Form Designer support
			//
			InitializeComponent();

			configEvent = evt;	
		
			buttonTestEvent.Visible = true;

		}

		/// <summary>
		/// Clean up any resources being used.
		/// </summary>
		protected override void Dispose( bool disposing )
		{
			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()
		{
			System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(EventInternetPostForm));
			this.labelTitle = new System.Windows.Forms.Label();
			this.labelDescription = new System.Windows.Forms.Label();
			this.textBoxDescription = new System.Windows.Forms.TextBox();
			this.labelTrigger = new System.Windows.Forms.Label();
			this.inputPanel1 = new Microsoft.WindowsCE.Forms.InputPanel();
			this.mainMenu1 = new System.Windows.Forms.MainMenu();
			this.buttonCells = new System.Windows.Forms.Button();
			this.labelMode = new System.Windows.Forms.Label();
			this.buttonAreas = new System.Windows.Forms.Button();
			this.buttonTestEvent = new System.Windows.Forms.Button();
			this.textBoxURL = new System.Windows.Forms.TextBox();
			this.labelNoteText = new System.Windows.Forms.Label();
			this.comboBoxTrigger = new System.Windows.Forms.ComboBox();
			this.comboBoxTriggerMode = new System.Windows.Forms.ComboBox();
			// 
			// labelTitle
			// 
			this.labelTitle.Location = new System.Drawing.Point(8, 80);
			this.labelTitle.Size = new System.Drawing.Size(56, 16);
			this.labelTitle.Text = "URL:";
			// 
			// labelDescription
			// 
			this.labelDescription.Location = new System.Drawing.Point(8, 8);
			this.labelDescription.Size = new System.Drawing.Size(72, 20);
			this.labelDescription.Text = "Description:";
			// 
			// textBoxDescription
			// 
			this.textBoxDescription.Location = new System.Drawing.Point(80, 8);
			this.textBoxDescription.Size = new System.Drawing.Size(152, 20);
			this.textBoxDescription.Text = "";
			this.textBoxDescription.LostFocus += new System.EventHandler(this.textBoxDescription_LostFocus);
			this.textBoxDescription.GotFocus += new System.EventHandler(this.textBoxDescription_GotFocus);
			// 
			// labelTrigger
			// 
			this.labelTrigger.Location = new System.Drawing.Point(8, 32);
			this.labelTrigger.Size = new System.Drawing.Size(56, 20);
			this.labelTrigger.Text = "Trigger:";
			// 
			// buttonCells
			// 
			this.buttonCells.Location = new System.Drawing.Point(168, 240);
			this.buttonCells.Size = new System.Drawing.Size(64, 20);
			this.buttonCells.Text = "Cells...";
			this.buttonCells.Click += new System.EventHandler(this.buttonCells_Click);
			// 
			// labelMode
			// 
			this.labelMode.Location = new System.Drawing.Point(8, 56);
			this.labelMode.Size = new System.Drawing.Size(64, 20);
			this.labelMode.Text = "Fire event:";
			// 
			// buttonAreas
			// 
			this.buttonAreas.Location = new System.Drawing.Point(88, 240);
			this.buttonAreas.Size = new System.Drawing.Size(64, 20);
			this.buttonAreas.Text = "Areas...";
			this.buttonAreas.Click += new System.EventHandler(this.buttonAreas_Click);
			// 
			// buttonTestEvent
			// 
			this.buttonTestEvent.Location = new System.Drawing.Point(8, 240);
			this.buttonTestEvent.Size = new System.Drawing.Size(64, 20);
			this.buttonTestEvent.Text = "Test";
			this.buttonTestEvent.Click += new System.EventHandler(this.buttonTestEvent_Click);
			// 
			// textBoxURL
			// 
			this.textBoxURL.Location = new System.Drawing.Point(80, 80);
			this.textBoxURL.Multiline = true;
			this.textBoxURL.Size = new System.Drawing.Size(152, 72);
			this.textBoxURL.Text = "";
			// 
			// labelNoteText
			// 
			this.labelNoteText.Font = new System.Drawing.Font("Microsoft Sans Serif", 7F, System.Drawing.FontStyle.Regular);
			this.labelNoteText.Location = new System.Drawing.Point(16, 160);
			this.labelNoteText.Size = new System.Drawing.Size(208, 80);
			this.labelNoteText.Text = "Use the following placeholders in your URL:\n\n^AREAID^  ^AREADESC^  ^CELLID^  ^CEL" +
				"LDESC^  ^DATE^  ^TIME^  ^IMEI^\n\nThey will be replaced with real values when the " +
				"event fires";
			// 
			// comboBoxTrigger
			// 
			this.comboBoxTrigger.Location = new System.Drawing.Point(80, 32);
			this.comboBoxTrigger.Size = new System.Drawing.Size(152, 21);
			// 
			// comboBoxTriggerMode
			// 
			this.comboBoxTriggerMode.Location = new System.Drawing.Point(80, 56);
			this.comboBoxTriggerMode.Size = new System.Drawing.Size(152, 21);
			// 
			// EventInternetPostForm
			// 
			this.ClientSize = new System.Drawing.Size(240, 272);
			this.Controls.Add(this.comboBoxTriggerMode);
			this.Controls.Add(this.comboBoxTrigger);
			this.Controls.Add(this.labelNoteText);
			this.Controls.Add(this.textBoxURL);
			this.Controls.Add(this.buttonTestEvent);
			this.Controls.Add(this.buttonAreas);
			this.Controls.Add(this.labelMode);
			this.Controls.Add(this.buttonCells);
			this.Controls.Add(this.labelTrigger);
			this.Controls.Add(this.textBoxDescription);
			this.Controls.Add(this.labelDescription);
			this.Controls.Add(this.labelTitle);
			this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
			this.Menu = this.mainMenu1;
			this.Text = "Internet Post";
			this.Load += new System.EventHandler(this.EventInternetPostForm_Load);

		}
		#endregion

		private void buttonOK_Click(object sender, System.EventArgs e)
		{					
			this.DialogResult = DialogResult.OK;

			this.Close();
		}

		private void textBoxDescription_GotFocus(object sender, System.EventArgs e)
		{
			inputPanel1.Enabled = true;
		}

		public EventInternetPost ConfiguredEvent
		{
			get
			{
				return configEvent;
			}
		}

		private void textBoxDescription_LostFocus(object sender, EventArgs e)
		{
			inputPanel1.Enabled = false;
		}

		private void EventInternetPostForm_Load(object sender, System.EventArgs e)
		{			
			textBoxURL.Text = configEvent.URL;
						
			EventConfigBase.PopulateTriggerType( comboBoxTrigger );
			EventConfigBase.PopulateTriggerModeType( comboBoxTriggerMode );

			EventConfigBase.Adapt( configEvent, this );

			Application.DoEvents();
		}

		private void buttonCells_Click(object sender, System.EventArgs e)
		{
			CellChooserForm ccf = new CellChooserForm( configEvent );
			if ( ccf.ShowDialog() == DialogResult.OK )
			{
				configEvent.ClearCells();

				foreach ( GSMCell gsmCell in ccf.SelectedCells )
				{
					configEvent.AddCell( gsmCell );
				}
			}
		}

		private void buttonAreas_Click(object sender, System.EventArgs e)
		{
			AreaChooserForm acf = new AreaChooserForm( configEvent );
			if ( acf.ShowDialog() == DialogResult.OK )
			{
				configEvent.ClearAreas();

				foreach ( GSMCell gsmCell in acf.SelectedAreas )
				{
					configEvent.AddArea( gsmCell );
				}
			}
		}

		public void MakeChanges( )
		{			
			configEvent.URL = textBoxURL.Text;

			EventConfigBase.Adapt( this, configEvent );
		}

		private void buttonTestEvent_Click(object sender, System.EventArgs e)
		{
			if ( configEvent != null )
			{
				MakeChanges();
				configEvent.Action();
			}
		}

		public string Description
		{
			get
			{
				return textBoxDescription.Text;
			}
			set
			{
				textBoxDescription.Text = value;
			}
		}

		public int Trigger
		{
			get
			{
				return comboBoxTrigger.SelectedIndex;
			}
			set
			{
				comboBoxTrigger.SelectedIndex = value;
			}
		}

		public int TriggerMode
		{
			get
			{
				return comboBoxTriggerMode.SelectedIndex;
			}
			set
			{
				comboBoxTriggerMode.SelectedIndex = value;
			}
		}
	}
}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产一区二区三区在线看麻豆| 婷婷综合久久一区二区三区| 日韩一区二区三区精品视频| 在线观看免费成人| 欧美中文字幕一二三区视频| 在线观看一区二区视频| 一本大道av一区二区在线播放 | 日本高清不卡视频| 97aⅴ精品视频一二三区| 色香蕉久久蜜桃| 欧美亚洲日本一区| 欧美日韩视频在线第一区 | 午夜欧美视频在线观看| 日韩精品乱码免费| 99视频精品全部免费在线| 国产乱码精品一区二区三区五月婷| 狠狠色狠狠色综合| 成人va在线观看| 在线欧美一区二区| 日韩一区二区视频在线观看| 日韩女优av电影| 国产欧美精品日韩区二区麻豆天美| 国产欧美精品一区二区色综合朱莉| 国产精品成人免费在线| 亚洲综合在线五月| 美女视频一区二区| 成人av先锋影音| 制服丝袜中文字幕亚洲| 精品88久久久久88久久久| 欧美精品一区二区久久久| 国产精品美女www爽爽爽| 伊人色综合久久天天人手人婷| 午夜精品久久久久久久99樱桃| 国产在线精品国自产拍免费| 99re6这里只有精品视频在线观看 99re8在线精品视频免费播放 | 蜜桃视频在线观看一区| 波多野结衣一区二区三区| 欧美日韩国产免费| 欧美激情一区二区在线| 亚洲精品日韩专区silk| 麻豆精品久久久| 色噜噜狠狠色综合中国| 精品欧美久久久| 视频一区中文字幕国产| 播五月开心婷婷综合| 欧美一区二区三区日韩视频| 日本一区二区不卡视频| 老鸭窝一区二区久久精品| 色国产精品一区在线观看| 亚洲精品在线观看网站| 亚洲高清视频的网址| 成人激情电影免费在线观看| 日韩欧美国产不卡| 午夜精品成人在线视频| a4yy欧美一区二区三区| 久久天堂av综合合色蜜桃网| 日韩精品电影在线| 在线观看成人小视频| 亚洲国产电影在线观看| 国内精品在线播放| 欧美老女人第四色| 一区二区在线观看免费| 本田岬高潮一区二区三区| 欧美精品一区二区蜜臀亚洲| 日本不卡视频在线| 69成人精品免费视频| 亚洲国产成人av| 欧美午夜精品一区二区三区| 亚洲欧美国产三级| 99久久国产综合色|国产精品| wwwwxxxxx欧美| 韩国成人福利片在线播放| 欧美一区二区三区视频免费播放| 一区二区视频在线看| 色www精品视频在线观看| 中文字幕不卡一区| 成人禁用看黄a在线| 国产精品家庭影院| av男人天堂一区| 136国产福利精品导航| 99久久国产综合精品色伊| 亚洲欧美一区二区在线观看| 成人免费毛片片v| 亚洲国产高清aⅴ视频| 99精品一区二区| 亚洲黄色小说网站| 欧美三级电影在线看| 天天色天天爱天天射综合| 91精品国产色综合久久不卡蜜臀 | 亚洲午夜久久久久久久久电影院| 97se亚洲国产综合在线| 亚洲综合精品久久| 制服.丝袜.亚洲.另类.中文| 美腿丝袜亚洲综合| 久久久久99精品国产片| av在线一区二区三区| 亚洲免费观看高清完整| 欧美日韩小视频| 久久精品国产99国产精品| 久久综合久久99| 99国产欧美另类久久久精品| 亚洲成av人片在线观看| 精品久久人人做人人爽| 成人免费毛片片v| 五月综合激情婷婷六月色窝| 精品国产成人在线影院 | 免费观看日韩av| 国产精品久久久久久久久图文区| 91福利在线播放| 精品亚洲porn| 一区二区三区中文字幕电影 | 亚洲国产中文字幕| 精品国产麻豆免费人成网站| 不卡在线视频中文字幕| 婷婷国产在线综合| 国产校园另类小说区| 欧美亚洲国产怡红院影院| 极品少妇xxxx精品少妇| 亚洲精品一卡二卡| 久久蜜臀精品av| 欧美丰满高潮xxxx喷水动漫| 成人深夜在线观看| 午夜精品在线看| 国产精品久久久久久福利一牛影视| 欧美自拍偷拍午夜视频| 国产一区二区在线观看视频| 亚洲精品欧美专区| 国产精品视频麻豆| 日韩欧美中文一区| 欧美系列亚洲系列| 99re成人精品视频| 成人av网在线| 国产成人免费在线视频| 美女脱光内衣内裤视频久久影院| 中文字幕一区av| 久久久www成人免费无遮挡大片| 欧美视频完全免费看| av色综合久久天堂av综合| 国产成人亚洲综合色影视| 日韩黄色片在线观看| 樱桃视频在线观看一区| 国产精品天天摸av网| 久久综合给合久久狠狠狠97色69| 欧美巨大另类极品videosbest | 在线看国产一区二区| 国产在线精品一区在线观看麻豆| 丁香网亚洲国际| 麻豆国产精品777777在线| 91精品一区二区三区久久久久久 | 国产成人精品综合在线观看 | www精品美女久久久tv| 国产女人18毛片水真多成人如厕 | 日韩亚洲欧美高清| 欧美国产在线观看| 亚洲自拍偷拍综合| 国产一区激情在线| 在线看不卡av| 久久婷婷综合激情| 亚洲国产欧美另类丝袜| 国产一区二区三区免费播放| 91老师片黄在线观看| 欧美精品一区二区在线播放 | 国产精品久久久久aaaa樱花 | 精品成人在线观看| 一区二区三区四区乱视频| 国产在线播精品第三| 欧美日韩dvd在线观看| 久久精品无码一区二区三区| 亚洲v中文字幕| eeuss鲁片一区二区三区在线观看| 欧美精品一卡两卡| 一区二区在线观看视频| 国产成人精品三级| 欧美电影精品一区二区| 午夜精品久久久久久久久久| 99视频精品在线| 久久伊人中文字幕| 日本欧美一区二区三区| 欧美亚洲另类激情小说| 亚洲欧美一区二区在线观看| 国产一区二区0| 欧美一级二级在线观看| 亚洲福利视频三区| 欧亚洲嫩模精品一区三区| 亚洲国产高清在线观看视频| 美脚の诱脚舐め脚责91| 欧美午夜精品久久久久久超碰 | 精品sm在线观看| 青娱乐精品视频| 欧美日本在线一区| 亚洲最新在线观看| 色综合久久综合| 中文字幕永久在线不卡| 成人黄色av网站在线| 久久久久久亚洲综合影院红桃| 日本成人在线一区| 日韩欧美综合一区| 美腿丝袜一区二区三区| 日韩限制级电影在线观看| 日韩av成人高清|