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

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

?? form1.h

?? 三次貝塞爾曲線的C程序,多于四點可通過連接保證C1連續
?? H
?? 第 1 頁 / 共 2 頁
字號:
#pragma once


namespace GDIPlus3DText
{
	using namespace System;
	using namespace System::ComponentModel;
	using namespace System::Collections;
	using namespace System::Windows::Forms;
	using namespace System::Data;
	using namespace System::Drawing;
	using namespace System::Drawing::Drawing2D;

	/// <summary> 
	/// Summary for Form1
	///
	/// WARNING: If you change the name of this class, you will need to change the 
	///          'Resource File Name' property for the managed resource compiler tool 
	///          associated with all .resx files this class depends on.  Otherwise,
	///          the designers will not be able to interact properly with localized
	///          resources associated with this form.
	/// </summary>
	public __gc class Form1 : public System::Windows::Forms::Form
	{	
	public:
		Form1(void)
		{
			InitializeComponent();
		}
  
	protected:
		void Dispose(Boolean disposing)
		{
			if (disposing && components)
			{
				components->Dispose();
			}
			__super::Dispose(disposing);
		}
	private: System::Windows::Forms::Button *  btnArticleList;
	private: System::Windows::Forms::PictureBox *  picText;
	private: System::Windows::Forms::Button *  btnContactMe;
	private: System::Windows::Forms::Button *  btnClose;
	private: System::Windows::Forms::GroupBox *  groupBox1;


	private: System::Windows::Forms::NumericUpDown *  spnFontSize;


	private: System::Windows::Forms::TextBox *  txtToDisplay;
	private: System::Windows::Forms::Label *  label1;
	private: System::Windows::Forms::Label *  label2;
	private: System::Windows::Forms::Button *  btnDisplayText;

	private: System::Windows::Forms::Label *  label3;



	private: System::Windows::Forms::NumericUpDown *  spnDepth;

	private: System::Windows::Forms::Label *  label5;

	private: System::Windows::Forms::ComboBox *  cbxTextColour;
	private: System::Windows::Forms::ComboBox *  cbxShadowColour;
	private: System::Windows::Forms::Label *  label4;
	private: System::Windows::Forms::RadioButton *  rbtnEngraved;
	private: System::Windows::Forms::RadioButton *  rbtnShadow;
	private: System::Windows::Forms::RadioButton *  rbtnBlock;
	private: System::Windows::Forms::RadioButton *  rbtnEmboss;

	public:
		__value enum TextStyle
		{
			Shadow,
			Block,
			Emboss,
			Engrave
		};
		
	protected:
		String* textToDisplay;
		TextStyle style;
		Decimal fontSize;
		Decimal shadowDepth;
		Color textColour;
		Color shadowColour;

	private:
		/// <summary>
		/// Required designer variable.
		/// </summary>
		System::ComponentModel::Container * components;

		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		void InitializeComponent(void)
		{
			this->btnArticleList = new System::Windows::Forms::Button();
			this->picText = new System::Windows::Forms::PictureBox();
			this->btnContactMe = new System::Windows::Forms::Button();
			this->btnClose = new System::Windows::Forms::Button();
			this->groupBox1 = new System::Windows::Forms::GroupBox();
			this->rbtnEngraved = new System::Windows::Forms::RadioButton();
			this->rbtnShadow = new System::Windows::Forms::RadioButton();
			this->rbtnBlock = new System::Windows::Forms::RadioButton();
			this->rbtnEmboss = new System::Windows::Forms::RadioButton();
			this->cbxShadowColour = new System::Windows::Forms::ComboBox();
			this->label4 = new System::Windows::Forms::Label();
			this->cbxTextColour = new System::Windows::Forms::ComboBox();
			this->spnFontSize = new System::Windows::Forms::NumericUpDown();
			this->txtToDisplay = new System::Windows::Forms::TextBox();
			this->label1 = new System::Windows::Forms::Label();
			this->label2 = new System::Windows::Forms::Label();
			this->spnDepth = new System::Windows::Forms::NumericUpDown();
			this->label3 = new System::Windows::Forms::Label();
			this->label5 = new System::Windows::Forms::Label();
			this->btnDisplayText = new System::Windows::Forms::Button();
			this->groupBox1->SuspendLayout();
			(__try_cast<System::ComponentModel::ISupportInitialize *  >(this->spnFontSize))->BeginInit();
			(__try_cast<System::ComponentModel::ISupportInitialize *  >(this->spnDepth))->BeginInit();
			this->SuspendLayout();
			// 
			// btnArticleList
			// 
			this->btnArticleList->Location = System::Drawing::Point(344, 72);
			this->btnArticleList->Name = S"btnArticleList";
			this->btnArticleList->Size = System::Drawing::Size(80, 23);
			this->btnArticleList->TabIndex = 3;
			this->btnArticleList->Text = S"Article &List";
			this->btnArticleList->Click += new System::EventHandler(this, btnArticleList_Click);
			// 
			// picText
			// 
			this->picText->BorderStyle = System::Windows::Forms::BorderStyle::Fixed3D;
			this->picText->Location = System::Drawing::Point(8, 184);
			this->picText->Name = S"picText";
			this->picText->Size = System::Drawing::Size(320, 144);
			this->picText->TabIndex = 10;
			this->picText->TabStop = false;
			this->picText->Paint += new System::Windows::Forms::PaintEventHandler(this, picText_Paint);
			// 
			// btnContactMe
			// 
			this->btnContactMe->Location = System::Drawing::Point(344, 48);
			this->btnContactMe->Name = S"btnContactMe";
			this->btnContactMe->Size = System::Drawing::Size(80, 23);
			this->btnContactMe->TabIndex = 2;
			this->btnContactMe->Text = S"Contact &Me";
			this->btnContactMe->Click += new System::EventHandler(this, btnContactMe_Click);
			// 
			// btnClose
			// 
			this->btnClose->DialogResult = System::Windows::Forms::DialogResult::Cancel;
			this->btnClose->Location = System::Drawing::Point(344, 16);
			this->btnClose->Name = S"btnClose";
			this->btnClose->Size = System::Drawing::Size(80, 23);
			this->btnClose->TabIndex = 4;
			this->btnClose->Text = S"Cl&ose";
			this->btnClose->Click += new System::EventHandler(this, btnClose_Click);
			// 
			// groupBox1
			// 
			this->groupBox1->Controls->Add(this->rbtnEngraved);
			this->groupBox1->Controls->Add(this->rbtnShadow);
			this->groupBox1->Controls->Add(this->rbtnBlock);
			this->groupBox1->Controls->Add(this->rbtnEmboss);
			this->groupBox1->Controls->Add(this->cbxShadowColour);
			this->groupBox1->Controls->Add(this->label4);
			this->groupBox1->Controls->Add(this->cbxTextColour);
			this->groupBox1->Controls->Add(this->spnFontSize);
			this->groupBox1->Controls->Add(this->txtToDisplay);
			this->groupBox1->Controls->Add(this->label1);
			this->groupBox1->Controls->Add(this->label2);
			this->groupBox1->Controls->Add(this->spnDepth);
			this->groupBox1->Controls->Add(this->label3);
			this->groupBox1->Controls->Add(this->label5);
			this->groupBox1->Location = System::Drawing::Point(8, 8);
			this->groupBox1->Name = S"groupBox1";
			this->groupBox1->Size = System::Drawing::Size(320, 168);
			this->groupBox1->TabIndex = 0;
			this->groupBox1->TabStop = false;
			this->groupBox1->Text = S"Display Settings";
			// 
			// rbtnEngraved
			// 
			this->rbtnEngraved->Location = System::Drawing::Point(232, 56);
			this->rbtnEngraved->Name = S"rbtnEngraved";
			this->rbtnEngraved->Size = System::Drawing::Size(72, 24);
			this->rbtnEngraved->TabIndex = 5;
			this->rbtnEngraved->Text = S"En&grave";
			this->rbtnEngraved->CheckedChanged += new System::EventHandler(this, rbtnEngraved_CheckedChanged);
			// 
			// rbtnShadow
			// 
			this->rbtnShadow->Checked = true;
			this->rbtnShadow->Location = System::Drawing::Point(16, 56);
			this->rbtnShadow->Name = S"rbtnShadow";
			this->rbtnShadow->Size = System::Drawing::Size(64, 24);
			this->rbtnShadow->TabIndex = 2;
			this->rbtnShadow->TabStop = true;
			this->rbtnShadow->Text = S"&Shadow";
			this->rbtnShadow->CheckedChanged += new System::EventHandler(this, rbtnShadow_CheckedChanged);
			// 
			// rbtnBlock
			// 
			this->rbtnBlock->Location = System::Drawing::Point(88, 56);
			this->rbtnBlock->Name = S"rbtnBlock";
			this->rbtnBlock->Size = System::Drawing::Size(64, 24);
			this->rbtnBlock->TabIndex = 3;
			this->rbtnBlock->Text = S"&Block";
			this->rbtnBlock->CheckedChanged += new System::EventHandler(this, rbtnBlock_CheckedChanged);
			// 
			// rbtnEmboss
			// 
			this->rbtnEmboss->Location = System::Drawing::Point(152, 56);
			this->rbtnEmboss->Name = S"rbtnEmboss";
			this->rbtnEmboss->Size = System::Drawing::Size(72, 24);
			this->rbtnEmboss->TabIndex = 4;
			this->rbtnEmboss->Text = S"&Emboss";
			this->rbtnEmboss->CheckedChanged += new System::EventHandler(this, rbtnEmboss_CheckedChanged);
			// 
			// cbxShadowColour
			// 
			this->cbxShadowColour->DropDownStyle = System::Windows::Forms::ComboBoxStyle::DropDownList;
			this->cbxShadowColour->Location = System::Drawing::Point(168, 136);
			this->cbxShadowColour->Name = S"cbxShadowColour";
			this->cbxShadowColour->Size = System::Drawing::Size(136, 21);
			this->cbxShadowColour->TabIndex = 13;
			// 
			// label4
			// 
			this->label4->Location = System::Drawing::Point(168, 120);
			this->label4->Name = S"label4";
			this->label4->Size = System::Drawing::Size(136, 16);
			this->label4->TabIndex = 12;
			this->label4->Text = S"Shadow colour:";
			this->label4->TextAlign = System::Drawing::ContentAlignment::BottomLeft;
			// 
			// cbxTextColour
			// 
			this->cbxTextColour->DropDownStyle = System::Windows::Forms::ComboBoxStyle::DropDownList;
			this->cbxTextColour->Location = System::Drawing::Point(16, 136);
			this->cbxTextColour->Name = S"cbxTextColour";
			this->cbxTextColour->Size = System::Drawing::Size(128, 21);
			this->cbxTextColour->TabIndex = 11;
			// 
			// spnFontSize
			// 
			this->spnFontSize->Location = System::Drawing::Point(80, 88);
			this->spnFontSize->Name = S"spnFontSize";
			this->spnFontSize->Size = System::Drawing::Size(48, 20);
			this->spnFontSize->TabIndex = 7;
			System::Int32 __mcTemp__1[] = new System::Int32[4];
			__mcTemp__1[0] = 40;
			__mcTemp__1[1] = 0;

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
色视频欧美一区二区三区| 日韩无一区二区| 欧美午夜影院一区| 精品国产乱码91久久久久久网站| 国产精品人妖ts系列视频| 亚洲一区二区三区国产| 国产精品自拍网站| 欧美日韩亚洲综合在线| 欧美国产综合一区二区| 婷婷开心激情综合| av一区二区三区在线| 日韩午夜在线观看| 亚洲自拍偷拍av| 东方aⅴ免费观看久久av| 欧美日韩国产免费一区二区 | 久久99久久精品| 色综合 综合色| 国产日韩欧美综合一区| 日本特黄久久久高潮| 色综合久久综合网97色综合| 久久综合色综合88| 美女脱光内衣内裤视频久久影院| 91免费视频观看| 国产精品久久久久久久裸模| 精品一二三四在线| 日韩欧美亚洲一区二区| 日韩精品一二区| 欧美色成人综合| 亚洲二区在线视频| 欧美自拍偷拍一区| 亚洲免费看黄网站| 91性感美女视频| 自拍av一区二区三区| 风间由美一区二区av101| 精品国产麻豆免费人成网站| 琪琪久久久久日韩精品| 91精品欧美一区二区三区综合在 | 一本大道久久a久久综合婷婷| 日本一区二区免费在线| 国产一区二区网址| 精品国产一区二区三区忘忧草 | 国产自产2019最新不卡| 欧美不卡在线视频| 久久97超碰色| 久久综合九色综合欧美98| 麻豆专区一区二区三区四区五区| 欧美日韩一卡二卡| 午夜欧美视频在线观看| 欧美日韩亚洲综合一区二区三区| 亚洲国产日韩精品| 欧美精品久久久久久久久老牛影院| 亚洲一区二区三区四区的 | 欧美日韩另类一区| 视频一区在线视频| 欧美tickling挠脚心丨vk| 寂寞少妇一区二区三区| 久久久精品tv| 色综合久久久久| 天堂资源在线中文精品| 精品国免费一区二区三区| 国产精品羞羞答答xxdd| ...xxx性欧美| 欧美日韩国产精选| 丁香激情综合国产| 亚洲日本电影在线| 欧美美女一区二区| 国产精品一区二区久久精品爱涩| 国产日韩欧美麻豆| 在线观看91精品国产入口| 五月婷婷久久丁香| 久久精品人人做人人爽人人| 色综合天天做天天爱| 视频在线观看一区| 国产女主播一区| 欧美日韩另类国产亚洲欧美一级| 精品伊人久久久久7777人| 综合电影一区二区三区 | 亚洲综合视频在线观看| 欧美一区二区三区人| 成人国产免费视频| 亚洲va欧美va国产va天堂影院| 精品人在线二区三区| 99视频精品在线| 全部av―极品视觉盛宴亚洲| 国产精品污www在线观看| 欧美在线综合视频| 国产69精品久久777的优势| 亚洲妇熟xx妇色黄| 中文字幕第一区| 精品乱码亚洲一区二区不卡| 色婷婷综合五月| 国产一区二区三区香蕉| 亚洲图片自拍偷拍| 欧美高清在线视频| 精品久久久网站| 欧美日本在线一区| 在线这里只有精品| 国产91丝袜在线观看| 麻豆精品一区二区av白丝在线| 国产精品国产三级国产三级人妇| 欧美一级久久久| 日本韩国一区二区三区| 国产高清不卡二三区| 免费精品视频最新在线| 香蕉久久一区二区不卡无毒影院 | 日韩综合小视频| 亚洲欧美日韩国产综合| 国产欧美一区二区在线观看| 欧美一区二区三区视频免费 | 91免费精品国自产拍在线不卡| 韩国视频一区二区| 日韩电影在线一区二区三区| 亚洲精选在线视频| 国产精品福利影院| 国产目拍亚洲精品99久久精品 | 色综合中文字幕国产 | 亚洲女厕所小便bbb| 国产精品色哟哟| 欧美成人女星排名| 日韩一区二区三区视频在线 | 麻豆精品国产91久久久久久| 午夜av一区二区| 亚洲成人动漫在线观看| 亚洲成人自拍网| 亚洲午夜久久久| 午夜一区二区三区视频| 亚洲综合成人在线| 亚洲国产视频网站| 日韩成人dvd| 免费人成精品欧美精品 | 一区二区三区毛片| 亚洲影院免费观看| 亚洲成人av中文| 日韩国产一区二| 美女看a上一区| 精品一区精品二区高清| 国产一区不卡视频| 欧美色综合网站| 91丨porny丨蝌蚪视频| 午夜久久久久久电影| 国产欧美日韩视频在线观看| 成人黄色大片在线观看| zzijzzij亚洲日本少妇熟睡| 97se亚洲国产综合自在线不卡| 91免费看`日韩一区二区| 欧美在线三级电影| 91精品国产综合久久小美女| 日韩欧美一区二区三区在线| 精品国产91久久久久久久妲己| 久久久国际精品| 亚洲精品综合在线| 日韩av不卡在线观看| 国产剧情一区二区三区| 99久久综合国产精品| 欧美人体做爰大胆视频| 精品国产乱码久久久久久图片 | 91精品国产高清一区二区三区 | 亚洲成人av中文| 国产永久精品大片wwwapp| 91小视频在线| 欧美tickling网站挠脚心| 中文字幕精品一区| 日本欧美肥老太交大片| 成人短视频下载| 91精品中文字幕一区二区三区| 国产婷婷一区二区| 亚洲成人在线观看视频| 国产一区福利在线| 欧美优质美女网站| 久久精品亚洲精品国产欧美kt∨| 亚洲精品视频一区二区| 韩国精品主播一区二区在线观看| 色综合欧美在线视频区| 久久久噜噜噜久久人人看| 亚洲乱码一区二区三区在线观看| 久久成人av少妇免费| 欧美视频一区二| 成人免费在线播放视频| 九一九一国产精品| 7777精品伊人久久久大香线蕉的| 亚洲国产精品精华液ab| 久久se精品一区二区| 欧美在线观看视频一区二区三区| 久久久www免费人成精品| 日韩精品国产欧美| 色婷婷国产精品综合在线观看| 久久久久久久综合色一本| 日本亚洲视频在线| 在线观看日韩电影| 亚洲欧洲精品一区二区精品久久久| 久99久精品视频免费观看| 欧美精品日韩综合在线| 一区二区三区四区高清精品免费观看| 国模套图日韩精品一区二区| 欧美一区二区三区视频免费播放 | 国产精品一区二区三区99| 国产精品国产三级国产普通话99 | 国产精品国产三级国产aⅴ无密码 国产精品国产三级国产aⅴ原创 | 国产女人18水真多18精品一级做| 美腿丝袜亚洲一区|