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

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

?? settingdialog.cs

?? 網(wǎng)絡(luò)應(yīng)用
?? CS
字號:
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;

namespace PaintClient
{
	/// <summary>
	/// SettingDialog 的摘要說明。
	/// </summary>
	public class SettingDialog : System.Windows.Forms.Form
	{
		private System.Windows.Forms.GroupBox groupBox1;
		private System.Windows.Forms.GroupBox groupBox2;
		private System.Windows.Forms.RadioButton radioButtonSingle;
		private System.Windows.Forms.RadioButton radioButtonDouble;
		private System.Windows.Forms.RadioButton radioButtonTriple;
		private System.Windows.Forms.RadioButton radioButtonBlack;
		private System.Windows.Forms.RadioButton radioButtonRed;
		private System.Windows.Forms.RadioButton radioButtonGreen;
		private System.Windows.Forms.Button buttonOK;
		private System.Windows.Forms.Button buttonCancel;
		/// <summary>
		/// 必需的設(shè)計器變量。
		/// </summary>
		private System.ComponentModel.Container components = null;
		//Add by myself
		private int penWidth=4;
		private Color penColor=Color.Black;

		public SettingDialog()
		{
			//
			// 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.groupBox1 = new System.Windows.Forms.GroupBox();
			this.radioButtonTriple = new System.Windows.Forms.RadioButton();
			this.radioButtonDouble = new System.Windows.Forms.RadioButton();
			this.radioButtonSingle = new System.Windows.Forms.RadioButton();
			this.groupBox2 = new System.Windows.Forms.GroupBox();
			this.radioButtonGreen = new System.Windows.Forms.RadioButton();
			this.radioButtonRed = new System.Windows.Forms.RadioButton();
			this.radioButtonBlack = new System.Windows.Forms.RadioButton();
			this.buttonOK = new System.Windows.Forms.Button();
			this.buttonCancel = new System.Windows.Forms.Button();
			this.groupBox1.SuspendLayout();
			this.groupBox2.SuspendLayout();
			this.SuspendLayout();
			// 
			// groupBox1
			// 
			this.groupBox1.Controls.Add(this.radioButtonTriple);
			this.groupBox1.Controls.Add(this.radioButtonDouble);
			this.groupBox1.Controls.Add(this.radioButtonSingle);
			this.groupBox1.Location = new System.Drawing.Point(16, 16);
			this.groupBox1.Name = "groupBox1";
			this.groupBox1.Size = new System.Drawing.Size(136, 160);
			this.groupBox1.TabIndex = 0;
			this.groupBox1.TabStop = false;
			this.groupBox1.Text = "筆寬";
			// 
			// radioButtonTriple
			// 
			this.radioButtonTriple.Location = new System.Drawing.Point(16, 120);
			this.radioButtonTriple.Name = "radioButtonTriple";
			this.radioButtonTriple.TabIndex = 4;
			this.radioButtonTriple.Text = "Triple";
			this.radioButtonTriple.CheckedChanged += new System.EventHandler(this.radioButtonTriple_CheckedChanged);
			// 
			// radioButtonDouble
			// 
			this.radioButtonDouble.Location = new System.Drawing.Point(16, 72);
			this.radioButtonDouble.Name = "radioButtonDouble";
			this.radioButtonDouble.TabIndex = 3;
			this.radioButtonDouble.Text = "Double";
			this.radioButtonDouble.CheckedChanged += new System.EventHandler(this.radioButtonDouble_CheckedChanged);
			// 
			// radioButtonSingle
			// 
			this.radioButtonSingle.Location = new System.Drawing.Point(16, 32);
			this.radioButtonSingle.Name = "radioButtonSingle";
			this.radioButtonSingle.TabIndex = 2;
			this.radioButtonSingle.Text = "Single";
			this.radioButtonSingle.CheckedChanged += new System.EventHandler(this.radioButtonSingle_CheckedChanged);
			// 
			// groupBox2
			// 
			this.groupBox2.Controls.Add(this.radioButtonGreen);
			this.groupBox2.Controls.Add(this.radioButtonRed);
			this.groupBox2.Controls.Add(this.radioButtonBlack);
			this.groupBox2.Location = new System.Drawing.Point(176, 16);
			this.groupBox2.Name = "groupBox2";
			this.groupBox2.Size = new System.Drawing.Size(136, 160);
			this.groupBox2.TabIndex = 1;
			this.groupBox2.TabStop = false;
			this.groupBox2.Text = "顏色";
			// 
			// radioButtonGreen
			// 
			this.radioButtonGreen.Location = new System.Drawing.Point(16, 120);
			this.radioButtonGreen.Name = "radioButtonGreen";
			this.radioButtonGreen.TabIndex = 2;
			this.radioButtonGreen.Text = "Green";
			this.radioButtonGreen.CheckedChanged += new System.EventHandler(this.radioButtonGreen_CheckedChanged);
			// 
			// radioButtonRed
			// 
			this.radioButtonRed.Location = new System.Drawing.Point(16, 72);
			this.radioButtonRed.Name = "radioButtonRed";
			this.radioButtonRed.TabIndex = 1;
			this.radioButtonRed.Text = "Red";
			this.radioButtonRed.CheckedChanged += new System.EventHandler(this.radioButtonRed_CheckedChanged);
			// 
			// radioButtonBlack
			// 
			this.radioButtonBlack.Location = new System.Drawing.Point(16, 32);
			this.radioButtonBlack.Name = "radioButtonBlack";
			this.radioButtonBlack.TabIndex = 0;
			this.radioButtonBlack.Text = "Black";
			this.radioButtonBlack.CheckedChanged += new System.EventHandler(this.radioButtonBlack_CheckedChanged);
			// 
			// buttonOK
			// 
			this.buttonOK.Location = new System.Drawing.Point(40, 200);
			this.buttonOK.Name = "buttonOK";
			this.buttonOK.TabIndex = 2;
			this.buttonOK.Text = "OK";
			this.buttonOK.Click += new System.EventHandler(this.buttonOK_Click);
			// 
			// buttonCancel
			// 
			this.buttonCancel.Location = new System.Drawing.Point(200, 200);
			this.buttonCancel.Name = "buttonCancel";
			this.buttonCancel.TabIndex = 3;
			this.buttonCancel.Text = "Cancel";
			this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click);
			// 
			// SettingDialog
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
			this.ClientSize = new System.Drawing.Size(328, 254);
			this.Controls.Add(this.buttonCancel);
			this.Controls.Add(this.buttonOK);
			this.Controls.Add(this.groupBox2);
			this.Controls.Add(this.groupBox1);
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
			this.ImeMode = System.Windows.Forms.ImeMode.Disable;
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.Name = "SettingDialog";
			this.Text = "Setting";
			this.groupBox1.ResumeLayout(false);
			this.groupBox2.ResumeLayout(false);
			this.ResumeLayout(false);

		}
		#endregion

		private void radioButtonSingle_CheckedChanged(object sender, System.EventArgs e)
		{
			if(radioButtonSingle.Checked) {
				penWidth=4;
				radioButtonDouble.Checked=false;
				radioButtonTriple.Checked=false;
			}
		}

		private void radioButtonDouble_CheckedChanged(object sender, System.EventArgs e)
		{
			if(radioButtonDouble.Checked) 
			{
				penWidth=8;
				radioButtonSingle.Checked=false;
				radioButtonTriple.Checked=false;
			}
		
		}

		private void radioButtonTriple_CheckedChanged(object sender, System.EventArgs e)
		{
			if(radioButtonTriple.Checked) 
			{
				penWidth=12;
				radioButtonDouble.Checked=false;
				radioButtonSingle.Checked=false;
			}
		}

		private void radioButtonBlack_CheckedChanged(object sender, System.EventArgs e)
		{
			if(radioButtonBlack.Checked) {
				penColor=Color.Black;
				radioButtonRed.Checked=false;
				radioButtonGreen.Checked=false;
			}
		}

		private void radioButtonRed_CheckedChanged(object sender, System.EventArgs e)
		{
			if(radioButtonRed.Checked) 
			{
				penColor=Color.Red;
				radioButtonBlack.Checked=false;
				radioButtonGreen.Checked=false;
			}
		}

		private void radioButtonGreen_CheckedChanged(object sender, System.EventArgs e)
		{
			if(radioButtonGreen.Checked) 
			{
				penColor=Color.Green;
				radioButtonRed.Checked=false;
				radioButtonBlack.Checked=false;
			}
		}

		private void buttonOK_Click(object sender, System.EventArgs e)
		{
			PaintClient.SettingDialog.ActiveForm.Close();
		
		}

		private void buttonCancel_Click(object sender, System.EventArgs e)
		{
			this.Close();
		}

		//屬性
		public int PenWidth {
			get {
				return penWidth;
			}
			set {
				penWidth=value;
			}
		}
		public Color PenColor {
			get {
				return penColor;
			}
			set {
				penColor=value;
			}
		}
	}
}

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
99re6这里只有精品视频在线观看 99re8在线精品视频免费播放 | 91精品黄色片免费大全| 亚洲欧美韩国综合色| 成人avav影音| 亚洲免费观看高清| 欧美日韩在线亚洲一区蜜芽| 亚洲成人1区2区| 欧美一区二区在线看| 国产一区二区三区四| 一色桃子久久精品亚洲| 欧美亚洲国产一区二区三区va| 亚洲成人tv网| 26uuu精品一区二区三区四区在线 26uuu精品一区二区在线观看 | 一区二区欧美视频| 欧美浪妇xxxx高跟鞋交| 韩国av一区二区三区| 亚洲同性同志一二三专区| 欧美亚洲图片小说| 精品在线观看视频| 欧美曰成人黄网| 一区二区高清免费观看影视大全 | 欧美精品 日韩| 国产制服丝袜一区| 综合色天天鬼久久鬼色| 欧美精品日韩综合在线| 国产美女av一区二区三区| 亚洲免费观看在线视频| 日韩欧美国产成人一区二区| av一区二区三区在线| eeuss鲁一区二区三区| 亚洲最快最全在线视频| 精品日韩欧美一区二区| 91在线云播放| 精品一区二区精品| 一级日本不卡的影视| 久久久久久夜精品精品免费| 在线欧美一区二区| 国产一区二区三区高清播放| 一区二区在线电影| 久久免费午夜影院| 欧美三级午夜理伦三级中视频| 国产九色精品成人porny| 亚洲一卡二卡三卡四卡无卡久久| 精品久久国产老人久久综合| 91蜜桃网址入口| 国产成人在线观看| 日韩高清欧美激情| 亚洲精品国产视频| 国产女人水真多18毛片18精品视频| 欧美日韩一区二区三区不卡| 成人av资源站| 国产一区二区三区精品欧美日韩一区二区三区 | 99久久亚洲一区二区三区青草| 日韩电影免费在线看| 亚洲欧美精品午睡沙发| 国产欧美一二三区| 亚洲精品一区在线观看| 91.com视频| 欧美伦理影视网| 91高清视频免费看| 99精品在线观看视频| 国产a视频精品免费观看| 激情五月播播久久久精品| 午夜视频一区二区三区| 一区二区三区在线视频免费 | 久久夜色精品国产欧美乱极品| 欧美日韩一二区| 日本乱人伦aⅴ精品| 成人av网站在线观看| 丰满少妇久久久久久久| 国产精品小仙女| 国产精品白丝jk白祙喷水网站| 精品一区二区国语对白| 精品一区二区三区欧美| 另类小说欧美激情| 韩国一区二区三区| 国产一区二区三区不卡在线观看 | 日本一区二区电影| 国产日韩欧美一区二区三区乱码| 精品国产一区二区三区久久久蜜月| 91精品国产色综合久久不卡蜜臀| 欧美老女人第四色| 日韩精品一区二区三区蜜臀 | 五月婷婷激情综合网| 午夜欧美2019年伦理| 午夜久久久久久久久久一区二区| 五月婷婷另类国产| 毛片av一区二区三区| 日本不卡视频在线| 国产麻豆精品在线观看| 国产白丝精品91爽爽久久 | 在线视频观看一区| 欧美日韩一区二区三区在线| 9191久久久久久久久久久| 91精品国产色综合久久ai换脸 | 欧美日韩一区成人| 91.麻豆视频| 久久伊人中文字幕| 亚洲视频小说图片| 亚洲影院久久精品| 天堂久久久久va久久久久| 亚洲成人动漫一区| 精品无人码麻豆乱码1区2区| 成人精品视频一区二区三区| 色综合色狠狠天天综合色| 欧美日韩免费观看一区二区三区 | 在线观看视频一区| 欧美蜜桃一区二区三区| 久久综合资源网| 国产精品家庭影院| 性久久久久久久久久久久| 国产一区二区三区在线看麻豆| www.亚洲色图| 欧美一区二区观看视频| 欧美精彩视频一区二区三区| 亚洲男同性视频| 精品一区二区在线播放| 99久久免费国产| 日韩一卡二卡三卡| 国产精品私人影院| 天天操天天干天天综合网| 国产成人久久精品77777最新版本| 色偷偷久久一区二区三区| 日韩片之四级片| 亚洲美女电影在线| 国产一区二区久久| 欧美四级电影网| 中文字幕欧美激情一区| 强制捆绑调教一区二区| 99热99精品| 久久久久国产成人精品亚洲午夜 | 国产精品视频线看| 欧美a一区二区| 色哦色哦哦色天天综合| 国产午夜精品福利| 天天综合日日夜夜精品| 99re亚洲国产精品| 国产亚洲自拍一区| 麻豆精品视频在线观看视频| 欧美视频日韩视频| 国产精品久久久久久久久搜平片 | 成人手机电影网| 欧美一区二区三区视频在线观看| 亚洲图片激情小说| 国产成人av在线影院| 精品黑人一区二区三区久久| 亚洲第一电影网| 91丨九色丨国产丨porny| 久久精品一二三| 九色|91porny| 日韩一区二区三区电影| 亚洲mv大片欧洲mv大片精品| 日本久久一区二区三区| 最新日韩av在线| 不卡av在线免费观看| 国产视频一区二区三区在线观看| 美女脱光内衣内裤视频久久影院| 欧美精品日韩一本| 亚洲午夜久久久久久久久电影网 | 懂色av中文字幕一区二区三区 | 日韩精品视频网站| 欧美日韩在线免费视频| 亚洲精选视频在线| 色哟哟欧美精品| 亚洲免费观看在线视频| 91美女视频网站| 一区二区三区**美女毛片| 色哟哟在线观看一区二区三区| 亚洲男人天堂一区| jiyouzz国产精品久久| 亚洲欧洲韩国日本视频| 99热在这里有精品免费| 亚洲啪啪综合av一区二区三区| 色一区在线观看| 亚洲综合免费观看高清完整版在线| 色婷婷精品大在线视频| 亚洲一级二级在线| 欧美巨大另类极品videosbest| 日日夜夜免费精品| 日韩午夜av电影| 国产精品99久久久久久宅男| 亚洲国产精品激情在线观看| caoporn国产精品| 亚洲久草在线视频| 欧美久久久久久久久| 奇米777欧美一区二区| 久久日一线二线三线suv| 国产不卡免费视频| 亚洲精品国产a| 在线成人av网站| 国产乱一区二区| 国产精品蜜臀av| 欧美综合色免费| 日本欧美一区二区| 久久久不卡网国产精品一区| 成人性视频免费网站| 一区二区三区四区高清精品免费观看| 欧美日韩视频在线第一区| 蜜桃久久久久久| 亚洲欧洲一区二区在线播放|