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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? main.cs

?? 個人日程管理系統(tǒng) 一款適合個人使用的管理系統(tǒng)
?? CS
?? 第 1 頁 / 共 2 頁
字號:
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using System.Data.SqlClient;
using smartSchedule.ScheduleMethod;

namespace smartSchedule
{
	/// <summary>
	/// Form1 的摘要說明。
	/// </summary>
	public class MainForm : System.Windows.Forms.Form
	{
		private System.Windows.Forms.TabPage tabPage_scheduleshow;
		private System.Windows.Forms.TabPage tabPage_config;
		private System.Windows.Forms.TabControl tabControl2;
		private System.Windows.Forms.TabPage tp_dayview;
		private System.Windows.Forms.TabPage tp_weekview;
		private System.Windows.Forms.TabPage tp_monthview;
		private System.Windows.Forms.TabPage tp_notdoneview;
		private System.Windows.Forms.TabControl tabControl1;
		private System.Windows.Forms.TabPage tp_thingsleft;
		private System.Windows.Forms.DataGrid dg_dayview;
		private SqlConnection myConn;
		/// <summary>
		/// 必需的設(shè)計器變量。
		/// </summary>
		private System.ComponentModel.Container components = null;
		private System.Windows.Forms.TabPage tp_addSchedule;
		private System.Windows.Forms.TextBox taskTitleBox;
		private System.Windows.Forms.TextBox taskDetailBox;
		private System.Windows.Forms.GroupBox scheduleGroup;
		private System.Windows.Forms.Label label1;
		private System.Windows.Forms.Label label2;
		private System.Windows.Forms.GroupBox groupBox2;
		private System.Windows.Forms.CheckBox notifyCheckBox;
		private System.Windows.Forms.ComboBox taskPriorityListbox;
		private System.Windows.Forms.ComboBox taskTypeListbox;
		private System.Windows.Forms.Label label7;
		private System.Windows.Forms.Label label6;
		private System.Windows.Forms.Label label5;
		private System.Windows.Forms.Label label4;
		private System.Windows.Forms.ComboBox notifyTimeSetupBox;
		private System.Windows.Forms.Label label3;
		private System.Windows.Forms.ComboBox periodSetupListBox;
		private System.Windows.Forms.DateTimePicker taskDateTimeSetupBox;
		private System.Windows.Forms.Button OK;
		private System.Windows.Forms.Button Cancel;
		private System.Windows.Forms.DataGrid dg_Remain;
		private System.Windows.Forms.Button ViewScheduleButton;
		private System.Windows.Forms.DateTimePicker SelectDay;
		static string ConnString = "data source=localhost;User Id=ScheduleAgent;Password=password;packet size=4096;database=SmartSchedule";

		public MainForm()
		{
			//
			// Windows 窗體設(shè)計器支持所必需的
			//
			InitializeComponent();

			//
			// TODO: 在 InitializeComponent 調(diào)用后添加任何構(gòu)造函數(shù)代碼
			//
		}

		/// <summary>
		/// 清理所有正在使用的資源。
		/// </summary>
		protected override void Dispose( bool disposing )
		{
			if( disposing )
			{
				if (components != null) 
				{
					components.Dispose();
				}
			}
			base.Dispose( disposing );
		}

		#region Windows 窗體設(shè)計器生成的代碼
		/// <summary>
		/// 設(shè)計器支持所需的方法 - 不要使用代碼編輯器修改
		/// 此方法的內(nèi)容。
		/// </summary>
		private void InitializeComponent()
		{
			this.tabControl1 = new System.Windows.Forms.TabControl();
			this.tabPage_scheduleshow = new System.Windows.Forms.TabPage();
			this.tabControl2 = new System.Windows.Forms.TabControl();
			this.tp_dayview = new System.Windows.Forms.TabPage();
			this.SelectDay = new System.Windows.Forms.DateTimePicker();
			this.dg_dayview = new System.Windows.Forms.DataGrid();
			this.ViewScheduleButton = new System.Windows.Forms.Button();
			this.tp_weekview = new System.Windows.Forms.TabPage();
			this.tp_monthview = new System.Windows.Forms.TabPage();
			this.tp_thingsleft = new System.Windows.Forms.TabPage();
			this.dg_Remain = new System.Windows.Forms.DataGrid();
			this.tabPage_config = new System.Windows.Forms.TabPage();
			this.tp_addSchedule = new System.Windows.Forms.TabPage();
			this.Cancel = new System.Windows.Forms.Button();
			this.groupBox2 = new System.Windows.Forms.GroupBox();
			this.periodSetupListBox = new System.Windows.Forms.ComboBox();
			this.label3 = new System.Windows.Forms.Label();
			this.notifyTimeSetupBox = new System.Windows.Forms.ComboBox();
			this.taskDateTimeSetupBox = new System.Windows.Forms.DateTimePicker();
			this.notifyCheckBox = new System.Windows.Forms.CheckBox();
			this.taskPriorityListbox = new System.Windows.Forms.ComboBox();
			this.taskTypeListbox = new System.Windows.Forms.ComboBox();
			this.label7 = new System.Windows.Forms.Label();
			this.label6 = new System.Windows.Forms.Label();
			this.label5 = new System.Windows.Forms.Label();
			this.label4 = new System.Windows.Forms.Label();
			this.scheduleGroup = new System.Windows.Forms.GroupBox();
			this.label2 = new System.Windows.Forms.Label();
			this.label1 = new System.Windows.Forms.Label();
			this.taskTitleBox = new System.Windows.Forms.TextBox();
			this.taskDetailBox = new System.Windows.Forms.TextBox();
			this.OK = new System.Windows.Forms.Button();
			this.tp_notdoneview = new System.Windows.Forms.TabPage();
			this.tabControl1.SuspendLayout();
			this.tabPage_scheduleshow.SuspendLayout();
			this.tabControl2.SuspendLayout();
			this.tp_dayview.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.dg_dayview)).BeginInit();
			this.tp_thingsleft.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.dg_Remain)).BeginInit();
			this.tp_addSchedule.SuspendLayout();
			this.groupBox2.SuspendLayout();
			this.scheduleGroup.SuspendLayout();
			this.SuspendLayout();
			// 
			// tabControl1
			// 
			this.tabControl1.Controls.AddRange(new System.Windows.Forms.Control[] {
																					  this.tabPage_scheduleshow,
																					  this.tp_thingsleft,
																					  this.tabPage_config,
																					  this.tp_addSchedule});
			this.tabControl1.Name = "tabControl1";
			this.tabControl1.SelectedIndex = 0;
			this.tabControl1.Size = new System.Drawing.Size(792, 544);
			this.tabControl1.TabIndex = 0;
			this.tabControl1.SelectedIndexChanged += new System.EventHandler(this.tabControl1_SelectedIndexChanged);
			// 
			// tabPage_scheduleshow
			// 
			this.tabPage_scheduleshow.Controls.AddRange(new System.Windows.Forms.Control[] {
																							   this.tabControl2});
			this.tabPage_scheduleshow.Location = new System.Drawing.Point(4, 21);
			this.tabPage_scheduleshow.Name = "tabPage_scheduleshow";
			this.tabPage_scheduleshow.Size = new System.Drawing.Size(784, 519);
			this.tabPage_scheduleshow.TabIndex = 0;
			this.tabPage_scheduleshow.Text = "日程表";
			// 
			// tabControl2
			// 
			this.tabControl2.Alignment = System.Windows.Forms.TabAlignment.Right;
			this.tabControl2.CausesValidation = false;
			this.tabControl2.Controls.AddRange(new System.Windows.Forms.Control[] {
																					  this.tp_dayview,
																					  this.tp_weekview,
																					  this.tp_monthview});
			this.tabControl2.Dock = System.Windows.Forms.DockStyle.Top;
			this.tabControl2.Multiline = true;
			this.tabControl2.Name = "tabControl2";
			this.tabControl2.SelectedIndex = 0;
			this.tabControl2.Size = new System.Drawing.Size(784, 528);
			this.tabControl2.TabIndex = 1;
			// 
			// tp_dayview
			// 
			this.tp_dayview.BackColor = System.Drawing.Color.LightGray;
			this.tp_dayview.Controls.AddRange(new System.Windows.Forms.Control[] {
																					 this.SelectDay,
																					 this.dg_dayview,
																					 this.ViewScheduleButton});
			this.tp_dayview.Location = new System.Drawing.Point(4, 4);
			this.tp_dayview.Name = "tp_dayview";
			this.tp_dayview.Size = new System.Drawing.Size(758, 520);
			this.tp_dayview.TabIndex = 0;
			this.tp_dayview.Text = "日視圖";
			// 
			// SelectDay
			// 
			this.SelectDay.Location = new System.Drawing.Point(440, 488);
			this.SelectDay.Name = "SelectDay";
			this.SelectDay.TabIndex = 2;
			// 
			// dg_dayview
			// 
			this.dg_dayview.BackColor = System.Drawing.Color.LightGray;
			this.dg_dayview.BackgroundColor = System.Drawing.Color.LightGray;
			this.dg_dayview.CaptionBackColor = System.Drawing.SystemColors.HotTrack;
			this.dg_dayview.CaptionVisible = false;
			this.dg_dayview.DataMember = "";
			this.dg_dayview.HeaderBackColor = System.Drawing.Color.DarkBlue;
			this.dg_dayview.HeaderFont = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
			this.dg_dayview.HeaderForeColor = System.Drawing.SystemColors.ActiveCaptionText;
			this.dg_dayview.Name = "dg_dayview";
			this.dg_dayview.ParentRowsVisible = false;
			this.dg_dayview.PreferredColumnWidth = 95;
			this.dg_dayview.ReadOnly = true;
			this.dg_dayview.Size = new System.Drawing.Size(773, 480);
			this.dg_dayview.TabIndex = 0;
			// 
			// ViewScheduleButton
			// 
			this.ViewScheduleButton.Location = new System.Drawing.Point(664, 488);
			this.ViewScheduleButton.Name = "ViewScheduleButton";
			this.ViewScheduleButton.TabIndex = 1;
			this.ViewScheduleButton.Text = "查看";
			this.ViewScheduleButton.Click += new System.EventHandler(this.ViewScheduleButton_Click);
			// 
			// tp_weekview
			// 
			this.tp_weekview.Location = new System.Drawing.Point(4, 4);
			this.tp_weekview.Name = "tp_weekview";
			this.tp_weekview.Size = new System.Drawing.Size(758, 520);
			this.tp_weekview.TabIndex = 1;
			this.tp_weekview.Text = "周視圖";
			// 
			// tp_monthview
			// 
			this.tp_monthview.Location = new System.Drawing.Point(4, 4);
			this.tp_monthview.Name = "tp_monthview";
			this.tp_monthview.Size = new System.Drawing.Size(758, 520);
			this.tp_monthview.TabIndex = 2;
			this.tp_monthview.Text = "月視圖";
			// 
			// tp_thingsleft
			// 
			this.tp_thingsleft.Controls.AddRange(new System.Windows.Forms.Control[] {
																						this.dg_Remain});
			this.tp_thingsleft.Location = new System.Drawing.Point(4, 21);
			this.tp_thingsleft.Name = "tp_thingsleft";
			this.tp_thingsleft.Size = new System.Drawing.Size(784, 519);
			this.tp_thingsleft.TabIndex = 2;
			this.tp_thingsleft.Text = "未完成事項";
			// 
			// dg_Remain
			// 
			this.dg_Remain.BackColor = System.Drawing.Color.LightGray;
			this.dg_Remain.BackgroundColor = System.Drawing.Color.LightGray;
			this.dg_Remain.CaptionBackColor = System.Drawing.SystemColors.HotTrack;
			this.dg_Remain.CaptionVisible = false;
			this.dg_Remain.DataMember = "";
			this.dg_Remain.HeaderBackColor = System.Drawing.Color.DarkBlue;
			this.dg_Remain.HeaderFont = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
			this.dg_Remain.HeaderForeColor = System.Drawing.SystemColors.ActiveCaptionText;
			this.dg_Remain.Name = "dg_Remain";
			this.dg_Remain.ParentRowsVisible = false;
			this.dg_Remain.PreferredColumnWidth = 95;
			this.dg_Remain.ReadOnly = true;
			this.dg_Remain.RowHeadersVisible = false;
			this.dg_Remain.Size = new System.Drawing.Size(784, 529);
			this.dg_Remain.TabIndex = 1;
			// 
			// tabPage_config
			// 
			this.tabPage_config.Location = new System.Drawing.Point(4, 21);
			this.tabPage_config.Name = "tabPage_config";
			this.tabPage_config.Size = new System.Drawing.Size(784, 519);
			this.tabPage_config.TabIndex = 1;
			this.tabPage_config.Text = "系統(tǒng)設(shè)置";
			// 
			// tp_addSchedule
			// 
			this.tp_addSchedule.Controls.AddRange(new System.Windows.Forms.Control[] {
																						 this.Cancel,
																						 this.groupBox2,
																						 this.scheduleGroup,
																						 this.OK});
			this.tp_addSchedule.Location = new System.Drawing.Point(4, 21);
			this.tp_addSchedule.Name = "tp_addSchedule";
			this.tp_addSchedule.Size = new System.Drawing.Size(784, 519);
			this.tp_addSchedule.TabIndex = 3;
			this.tp_addSchedule.Text = "添加日程";
			// 
			// Cancel
			// 
			this.Cancel.Location = new System.Drawing.Point(584, 384);
			this.Cancel.Name = "Cancel";
			this.Cancel.TabIndex = 11;
			this.Cancel.Text = "取消";
			this.Cancel.Click += new System.EventHandler(this.Cancel_Click);
			// 
			// groupBox2
			// 
			this.groupBox2.Controls.AddRange(new System.Windows.Forms.Control[] {
																					this.periodSetupListBox,
																					this.label3,
																					this.notifyTimeSetupBox,
																					this.taskDateTimeSetupBox,
																					this.notifyCheckBox,
																					this.taskPriorityListbox,
																					this.taskTypeListbox,
																					this.label7,
																					this.label6,
																					this.label5,
																					this.label4});
			this.groupBox2.Location = new System.Drawing.Point(24, 240);
			this.groupBox2.Name = "groupBox2";
			this.groupBox2.Size = new System.Drawing.Size(744, 128);
			this.groupBox2.TabIndex = 10;
			this.groupBox2.TabStop = false;
			// 
			// periodSetupListBox
			// 
			this.periodSetupListBox.Items.AddRange(new object[] {
																	"無重復",
																	"每天",
																	"每周",
																	"每月",
																	"每年",
																	"所有工作日",
																	"所有休息日"});
			this.periodSetupListBox.Location = new System.Drawing.Point(384, 49);
			this.periodSetupListBox.Name = "periodSetupListBox";
			this.periodSetupListBox.Size = new System.Drawing.Size(152, 20);
			this.periodSetupListBox.TabIndex = 33;
			this.periodSetupListBox.Text = "無重復";
			this.periodSetupListBox.Visible = false;
			// 
			// label3
			// 
			this.label3.Location = new System.Drawing.Point(336, 53);
			this.label3.Name = "label3";
			this.label3.Size = new System.Drawing.Size(40, 16);
			this.label3.TabIndex = 32;
			this.label3.Text = "重復";
			this.label3.Visible = false;
			// 
			// notifyTimeSetupBox
			// 
			this.notifyTimeSetupBox.Items.AddRange(new object[] {
																	"準時提醒",
																	"提前15分鐘",
																	"提前30分鐘",
																	"提前45分鐘",
																	"提前1小時",
																	"提前2小時",
																	"提前6小時",
																	"提前12小時",
																	"提前1天",
																	"提前1周",
																	"提前1月"});
			this.notifyTimeSetupBox.Location = new System.Drawing.Point(56, 96);
			this.notifyTimeSetupBox.Name = "notifyTimeSetupBox";
			this.notifyTimeSetupBox.Size = new System.Drawing.Size(152, 20);
			this.notifyTimeSetupBox.TabIndex = 31;
			this.notifyTimeSetupBox.Text = "準時提醒";
			// 
			// taskDateTimeSetupBox
			// 
			this.taskDateTimeSetupBox.CalendarFont = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
			this.taskDateTimeSetupBox.CalendarTitleBackColor = System.Drawing.SystemColors.Desktop;
			this.taskDateTimeSetupBox.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
			this.taskDateTimeSetupBox.Location = new System.Drawing.Point(56, 48);
			this.taskDateTimeSetupBox.Name = "taskDateTimeSetupBox";
			this.taskDateTimeSetupBox.Size = new System.Drawing.Size(248, 21);
			this.taskDateTimeSetupBox.TabIndex = 27;
			// 
			// notifyCheckBox
			// 
			this.notifyCheckBox.Checked = true;
			this.notifyCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
			this.notifyCheckBox.Location = new System.Drawing.Point(56, 72);
			this.notifyCheckBox.Name = "notifyCheckBox";
			this.notifyCheckBox.Size = new System.Drawing.Size(152, 24);
			this.notifyCheckBox.TabIndex = 29;
			this.notifyCheckBox.Text = "需要提示";
			this.notifyCheckBox.Click += new System.EventHandler(this.notifyCheckBox_Click);
			// 
			// taskPriorityListbox
			// 
			this.taskPriorityListbox.BackColor = System.Drawing.SystemColors.HighlightText;
			this.taskPriorityListbox.Location = new System.Drawing.Point(384, 16);
			this.taskPriorityListbox.Name = "taskPriorityListbox";
			this.taskPriorityListbox.Size = new System.Drawing.Size(152, 20);
			this.taskPriorityListbox.TabIndex = 26;
			// 
			// taskTypeListbox
			// 
			this.taskTypeListbox.BackColor = System.Drawing.SystemColors.HighlightText;
			this.taskTypeListbox.Location = new System.Drawing.Point(56, 16);
			this.taskTypeListbox.Name = "taskTypeListbox";
			this.taskTypeListbox.Size = new System.Drawing.Size(152, 20);
			this.taskTypeListbox.TabIndex = 25;
			// 
			// label7
			// 
			this.label7.Location = new System.Drawing.Point(8, 80);
			this.label7.Name = "label7";

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲一区成人在线| 久久久久久一级片| 国产精品亚洲视频| 亚洲图片欧美一区| 国产精品成人在线观看| 欧美v国产在线一区二区三区| 国产一区三区三区| 日韩电影一区二区三区四区| 亚洲国产精品精华液网站| 欧美三区在线观看| 成人高清视频在线| 九九精品视频在线看| 亚洲成人av中文| 亚洲日本va在线观看| 中文一区在线播放| 久久综合色一综合色88| 日韩免费福利电影在线观看| 欧美日韩国产片| 91成人看片片| 欧美在线观看禁18| 不卡一区二区三区四区| 经典三级视频一区| 日韩国产精品久久久久久亚洲| 国产精品精品国产色婷婷| 欧美日韩高清在线| 国产福利电影一区二区三区| 亚洲天堂福利av| 国产精品高潮久久久久无| 久久久久久久久久久久久夜| 日韩欧美色电影| 日本韩国欧美三级| 国产成人综合网| 99视频热这里只有精品免费| 成人av免费在线播放| 丁香激情综合五月| 不卡的av在线播放| 一本一道久久a久久精品综合蜜臀 一本一道综合狠狠老 | 国产成人午夜99999| 性感美女极品91精品| 精品少妇一区二区三区日产乱码| 911国产精品| 日韩欧美亚洲一区二区| 日韩欧美激情一区| 国产天堂亚洲国产碰碰| 国产精品高清亚洲| 一区二区国产盗摄色噜噜| 亚洲综合丁香婷婷六月香| 日韩av不卡在线观看| 麻豆国产91在线播放| 成人一级视频在线观看| 91高清视频免费看| 欧美精品123区| 久久嫩草精品久久久精品| 国产精品欧美一区二区三区| 丝袜亚洲另类欧美| 国产精品白丝在线| 亚洲二区在线视频| 国产一区二区三区日韩| 91精品国产综合久久精品app| 国产精品一线二线三线精华| 久久午夜羞羞影院免费观看| 色综合中文字幕| 欧美体内she精视频| 久久精品一区二区| 午夜精品一区在线观看| 成人avav影音| 欧美电影免费观看高清完整版在线观看 | 本田岬高潮一区二区三区| 在线观看区一区二| 亚洲区小说区图片区qvod| 午夜精品久久一牛影视| 成人av免费网站| 久久久久久久免费视频了| 美女视频网站久久| 欧美理论电影在线| 夜夜亚洲天天久久| 91网址在线看| 亚洲色图19p| av午夜一区麻豆| 亚洲欧美综合色| yourporn久久国产精品| 精品国产一区二区精华| 日日嗨av一区二区三区四区| 精品国产乱码久久久久久1区2区| 精品欧美一区二区久久| 久久久av毛片精品| 国产精品资源网| 国产三级一区二区| 成人一区二区视频| 亚洲欧美日韩电影| 欧美日韩一区二区三区在线看| 亚洲乱码国产乱码精品精可以看| 色综合久久久久久久久| 亚洲午夜一区二区三区| 97aⅴ精品视频一二三区| 亚洲精选一二三| 69p69国产精品| 国产一区激情在线| 亚洲色图丝袜美腿| 欧美日韩高清一区二区不卡| 天天射综合影视| 91免费看`日韩一区二区| 欧美日韩国产大片| 国产大陆a不卡| 一区二区三区毛片| 日韩欧美123| 色综合咪咪久久| 激情欧美日韩一区二区| 亚洲欧美日韩一区| 亚洲精品在线观看网站| 色综合天天狠狠| 国产成人在线色| 日韩精品电影在线| 日韩午夜激情av| 成人视屏免费看| 老司机精品视频在线| 亚洲免费av高清| 欧美精品一区二区三区蜜桃 | 国产成人精品aa毛片| 午夜精品一区在线观看| 日本一区二区三区国色天香 | 一本色道久久加勒比精品| 亚洲精品成a人| 日本一区二区电影| 欧美精品一二三四| av中文一区二区三区| 男人的j进女人的j一区| 国产精品第四页| 亚洲婷婷综合色高清在线| 亚洲精品在线免费观看视频| 欧美一卡在线观看| 欧美日韩精品一区二区三区四区| 91在线视频官网| 成人国产在线观看| 丁香婷婷综合激情五月色| 风流少妇一区二区| 国产精品18久久久久久久久久久久 | 精品电影一区二区| 日韩一级免费一区| 91精品国产品国语在线不卡| 欧美电影一区二区| 91精品国产综合久久久久久久久久| 欧美三片在线视频观看| 欧美视频完全免费看| 欧美一区二区久久| 精品免费国产二区三区| 久久久亚洲精品石原莉奈| 日本一区二区三区四区在线视频| 亚洲国产精品成人综合色在线婷婷| 久久精品视频免费| 亚洲人成人一区二区在线观看| 亚洲伊人伊色伊影伊综合网| 亚洲国产成人va在线观看天堂| 国产精品一级在线| 老司机午夜精品99久久| 免费观看久久久4p| 成人午夜视频网站| 欧美日韩免费高清一区色橹橹| 日韩一级片在线播放| 国产精品美女久久久久高潮| 亚洲精品欧美二区三区中文字幕| 蜜桃91丨九色丨蝌蚪91桃色| 国产河南妇女毛片精品久久久| 91女人视频在线观看| 日韩欧美一级二级三级久久久| 中日韩av电影| 免费观看久久久4p| 色综合亚洲欧洲| 中文字幕乱码久久午夜不卡 | 欧美日韩aaaaa| 亚洲国产电影在线观看| 一区二区三区加勒比av| 欧美bbbbb| av电影天堂一区二区在线观看| 欧美日韩精品一区二区天天拍小说| 18涩涩午夜精品.www| 日韩国产欧美三级| 欧美日韩不卡视频| 一区二区三区四区蜜桃| 成人在线一区二区三区| 精品福利二区三区| 琪琪一区二区三区| 欧美日韩一区二区三区四区 | 国产亚洲精久久久久久| 欧美a级理论片| www.亚洲人| 成人欧美一区二区三区白人| 国产成都精品91一区二区三| 久久网这里都是精品| 麻豆国产精品一区二区三区 | 成人免费看视频| 国产精品免费aⅴ片在线观看| 国产一区二区三区香蕉| 欧美成人高清电影在线| 国产精品资源网| 国产精品久久久久一区二区三区共| 成人免费高清在线| 亚洲欧美日韩国产中文在线| 色屁屁一区二区| 免费一区二区视频|