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

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

?? slashform.h

?? MegaSplash fgd gh d hdgh dg hd gh
?? H
字號:
#pragma once
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::Threading;

namespace MegaSplash {

	/// <summary>
	/// Summary for SlashForm
	///
	/// 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 ref class SlashForm : public System::Windows::Forms::Form
	{
	public:
		SlashForm(void)
		{
			InitializeComponent();
			//
			m_dblOpacityIncrement = 0.05;
			m_dblOpacityDecrement = 0.1;
			TIMER_INTERVAL = 50;

			//this->ClientSize = this->BackgroundImage->Size;
			
			this->Opacity = 0.0;
			timer1->Interval = TIMER_INTERVAL;
			timer1->Start();	

			//
		}
	private: System::Windows::Forms::Panel^  pnlStatus;
	public: 

	public: String^ m_sStatus;	

	protected:
		/// <summary>
		/// Clean up any resources being used.
		/// </summary>
		~SlashForm()
		{
			if (components)
			{
				delete components;
			}
		}
	private: System::Windows::Forms::Timer^  timer1;
	private: System::Windows::Forms::Label^  lblStatus;
	protected: 
	private: System::ComponentModel::IContainer^  components;

	private:
		/// <summary>
		/// Required designer variable.
		/// </summary>


#pragma 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>
		void InitializeComponent(void)
		{
			this->components = (gcnew System::ComponentModel::Container());
			System::ComponentModel::ComponentResourceManager^  resources = (gcnew System::ComponentModel::ComponentResourceManager(SlashForm::typeid));
			this->timer1 = (gcnew System::Windows::Forms::Timer(this->components));
			this->lblStatus = (gcnew System::Windows::Forms::Label());
			this->pnlStatus = (gcnew System::Windows::Forms::Panel());
			this->SuspendLayout();
			// 
			// timer1
			// 
			this->timer1->Tick += gcnew System::EventHandler(this, &SlashForm::timer1_Tick);
			// 
			// lblStatus
			// 
			this->lblStatus->AutoSize = true;
			this->lblStatus->Location = System::Drawing::Point(60, 203);
			this->lblStatus->Name = L"lblStatus";
			this->lblStatus->Size = System::Drawing::Size(35, 13);
			this->lblStatus->TabIndex = 0;
			this->lblStatus->Text = L"label1";
			// 
			// pnlStatus
			// 
			this->pnlStatus->BackColor = System::Drawing::Color::Transparent;
			this->pnlStatus->Location = System::Drawing::Point(24, 18);
			this->pnlStatus->Name = L"pnlStatus";
			this->pnlStatus->Size = System::Drawing::Size(343, 41);
			this->pnlStatus->TabIndex = 1;
			this->pnlStatus->Paint += gcnew System::Windows::Forms::PaintEventHandler(this, &SlashForm::pnlStatus_Paint);
			// 
			// SlashForm
			// 
			this->AutoScaleDimensions = System::Drawing::SizeF(6, 13);
			this->AutoScaleMode = System::Windows::Forms::AutoScaleMode::Font;
			this->BackgroundImage = (cli::safe_cast<System::Drawing::Image^  >(resources->GetObject(L"$this.BackgroundImage")));
			this->ClientSize = System::Drawing::Size(379, 326);
			this->Controls->Add(this->pnlStatus);
			this->Controls->Add(this->lblStatus);
			this->FormBorderStyle = System::Windows::Forms::FormBorderStyle::None;
			this->Name = L"SlashForm";
			this->StartPosition = System::Windows::Forms::FormStartPosition::CenterScreen;
			this->Text = L"SlashForm";
			this->ResumeLayout(false);
			this->PerformLayout();

		}
#pragma endregion

	public:

		double m_dblOpacityIncrement;
		double m_dblOpacityDecrement;
		int TIMER_INTERVAL;
		
	
		double m_dblCompletionFraction;
		Rectangle^ m_rProgress ;




	private: System::Void timer1_Tick(System::Object^  sender, System::EventArgs^  e) 
			 {

				 lblStatus->Text = m_sStatus;

				  if( m_dblOpacityIncrement > 0 )
					  {
						if( this->Opacity < 1 )
						  this->Opacity += m_dblOpacityIncrement;
					  }
					  else
					  {
						if( this->Opacity > 0 )
						  this->Opacity += m_dblOpacityIncrement;
						else
						  this->Close();
					  }


				  int width = (int)Math::Floor( pnlStatus->ClientRectangle.Width * m_dblCompletionFraction );
				  int height = pnlStatus->ClientRectangle.Height;
				  int x = pnlStatus->ClientRectangle.X;
				  int y = pnlStatus->ClientRectangle.Y;
				  if( width > 0 && height > 0 )
				  {
					m_rProgress = gcnew Rectangle( x, y, width, height);
					pnlStatus->Invalidate( *m_rProgress );                // 右巫腿臆
				  }



			 }

	private: System::Void pnlStatus_Paint(System::Object^  sender, System::Windows::Forms::PaintEventArgs^  e) 
			 {
				/*  if( e->ClipRectangle.Width > 0 && m_iActualTicks > 1  )
				  {
					  System::Drawing::Drawing2D::LinearGradientBrush brBackground = gcnew System::Drawing::Drawing2D::LinearGradientBrush::LinearGradientBrush( &m_rProgress, Color::FromArgb(50, 50, 200), Color::FromArgb(150, 150, 255), LinearGradientMode::Horizontal);
					e->Graphics.FillRectangle(brBackground, m_rProgress);
				  }
				*/
			}


};


	public ref class ptrSplashScreen : public System::Windows::Forms::Form
	{
	public:
		static SlashForm^ ms_frmSplash = nullptr;
		static Thread^ ms_oThread = nullptr;


		// Static method for updating the progress percentage.
	static public double Progress_get() 
		  {
			if( ms_frmSplash != nullptr )
			  return ms_frmSplash->m_dblCompletionFraction; 
			return 100.0;
		  } 
	static public void Progress_set( double value ) 
		  {
			if( ms_frmSplash != nullptr )
			  ms_frmSplash->m_dblCompletionFraction = value;
		  }
		
	};
	

	// A static method to set the status.
	static public String^ SetStatus(String^ newStatus)
	{
	  if( ptrSplashScreen::ms_frmSplash == nullptr )
		return nullptr;
	  ptrSplashScreen::ms_frmSplash->m_sStatus = newStatus;
	}


	// A static entry point to launch SplashScreen.
	static private void ShowForm()
	{
		ptrSplashScreen::ms_frmSplash = gcnew SlashForm( );
		Application::Run( ptrSplashScreen::ms_frmSplash );
	}

	// A static method to close the SplashScreen
	static public void CloseForm()
	{
		//	ptrSplashScreen::ms_frmSplash->Close();
		if( ptrSplashScreen::ms_frmSplash != nullptr )
		  {
				// Make it start going away.
				ptrSplashScreen::ms_frmSplash->m_dblOpacityIncrement = -ptrSplashScreen::ms_frmSplash->m_dblOpacityDecrement;
		  }
		  ptrSplashScreen::ms_oThread = nullptr;  // we do not need these any more.
		  ptrSplashScreen::ms_frmSplash = nullptr;

	}

	static public void ShowSplashScreen()
	{
	  // Make sure it is only launched once.
		if( ptrSplashScreen::ms_frmSplash != nullptr )
		return;

		ptrSplashScreen::ms_oThread = gcnew Thread( gcnew ThreadStart( ShowForm ));
		ptrSplashScreen::ms_oThread->IsBackground = true;
		ptrSplashScreen::ms_oThread->ApartmentState = ApartmentState::STA;
		ptrSplashScreen::ms_oThread->Start();
	}

}

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产成人综合视频| 亚洲高清久久久| 亚洲日本电影在线| 日韩精品欧美成人高清一区二区| 久久成人免费电影| 91蜜桃婷婷狠狠久久综合9色| 在线播放国产精品二区一二区四区 | 偷拍与自拍一区| 国产69精品久久久久毛片| 欧美性xxxxx极品少妇| 久久精品人人做人人爽97 | 最新高清无码专区| 久久97超碰国产精品超碰| 欧洲色大大久久| 国产精品免费丝袜| 狠狠色综合日日| 91精品国产综合久久久久久| 亚洲色欲色欲www| 成人动漫一区二区在线| 久久综合一区二区| 蜜桃视频一区二区| 欧美日韩精品电影| 亚洲精品第1页| 成年人国产精品| 国产情人综合久久777777| 美女诱惑一区二区| 欧美一区中文字幕| 亚洲成年人影院| 色婷婷亚洲精品| 欧美日韩免费观看一区二区三区 | 在线观看日韩精品| 国产精品天美传媒| 国产精品一线二线三线精华| 日韩午夜av电影| 青青国产91久久久久久| 欧美三级视频在线观看| 亚洲va国产va欧美va观看| 91精品1区2区| 亚洲国产精品一区二区久久恐怖片 | 亚洲男同性视频| 99re这里都是精品| 国产精品不卡一区| 成人avav影音| 一区二区中文字幕在线| 91蜜桃婷婷狠狠久久综合9色| 国产精品久久久久久户外露出| 国产成人啪免费观看软件| 国产日本一区二区| 不卡的av电影在线观看| 1000部国产精品成人观看| 成人aa视频在线观看| 亚洲欧美综合在线精品| 在线观看成人小视频| 洋洋av久久久久久久一区| 欧美伦理电影网| 久久99精品久久久久久动态图| 精品国产一二三区| av午夜精品一区二区三区| 一区二区三区欧美视频| 欧美一区二区三区白人| 国产成人综合视频| 亚洲精品欧美二区三区中文字幕| 欧美美女直播网站| 国精产品一区一区三区mba视频| 国产欧美一区二区三区网站| 91久久人澡人人添人人爽欧美| 日本不卡高清视频| 亚洲国产成人自拍| 欧美日韩在线播放三区四区| 老司机午夜精品99久久| 日韩视频一区二区三区在线播放| 日本不卡免费在线视频| 中文字幕一区二区三区四区不卡| 欧美日韩久久不卡| 欧美亚洲国产怡红院影院| 久久久99精品免费观看| 成人黄色777网| 一区二区三区小说| 欧美欧美午夜aⅴ在线观看| 国产黄人亚洲片| 亚洲天堂福利av| 欧美日韩二区三区| 韩国视频一区二区| 成人免费在线观看入口| 欧美日韩不卡一区二区| 激情亚洲综合在线| 中文字幕精品一区二区三区精品| 欧美日韩国产成人在线免费| 九九九精品视频| 亚洲欧美一区二区三区久本道91| 欧美精品aⅴ在线视频| 风间由美一区二区av101| 一区二区三区日本| 久久只精品国产| 在线观看av不卡| 成人av资源站| 蜜臀av性久久久久蜜臀aⅴ| 国产精品久久久久久久久果冻传媒| 欧美中文字幕一区| 国产高清久久久久| 日韩国产欧美三级| 亚洲欧美中日韩| 91精品在线麻豆| 欧美日韩成人在线| 国产91丝袜在线播放九色| 亚洲成人www| 亚洲欧美在线视频| 久久久亚洲高清| 欧美精品久久久久久久多人混战 | 久久久91精品国产一区二区精品| 7777女厕盗摄久久久| 亚洲一区二区三区四区五区黄| 国产精品影视网| 成人av网站在线观看免费| 欧美一区二区三区婷婷月色| 国产高清不卡一区| 理论电影国产精品| 久久精品72免费观看| 日日摸夜夜添夜夜添国产精品 | 欧美二区在线观看| 99久久精品国产精品久久| 国产大陆a不卡| 久久99精品视频| 日韩电影在线一区二区三区| 亚洲综合在线免费观看| 亚洲欧美视频在线观看| 国产精品国产三级国产普通话蜜臀 | k8久久久一区二区三区| 精品一区二区成人精品| 国产suv一区二区三区88区| 中文一区二区在线观看| 久久影院视频免费| 欧美精品一区二区三区在线播放| 这里是久久伊人| 成人免费视频app| 色综合久久久久综合体| 99综合电影在线视频| 国产91富婆露脸刺激对白| 国产中文字幕精品| 精东粉嫩av免费一区二区三区| 麻豆精品一区二区av白丝在线| 五月天国产精品| 午夜私人影院久久久久| 日一区二区三区| 天天综合天天综合色| 日本午夜一本久久久综合| 日韩不卡在线观看日韩不卡视频| 婷婷国产在线综合| 美日韩一区二区三区| 日韩激情av在线| 粉嫩aⅴ一区二区三区四区五区| 国产成人在线观看| 成人动漫在线一区| 在线亚洲+欧美+日本专区| 欧美日韩一区二区三区高清| 欧美伦理影视网| 欧美一级国产精品| 亚洲欧美日韩成人高清在线一区| 亚洲一级二级三级| 奇米色一区二区| 国产成人激情av| 91国偷自产一区二区开放时间 | 婷婷综合在线观看| 美女视频一区在线观看| 91美女福利视频| 欧美日韩成人一区二区| 欧美精品一区二| 综合久久一区二区三区| 天堂一区二区在线| 国产一区福利在线| 91精品国产一区二区三区香蕉 | 一区二区三区在线观看欧美| 天天综合网天天综合色| 成人av中文字幕| 日韩一区二区三区视频在线| 久久九九国产精品| 午夜欧美视频在线观看| 国产成人欧美日韩在线电影| 欧美日韩国产一区| 国产清纯美女被跳蛋高潮一区二区久久w| 一级中文字幕一区二区| 国产综合色视频| 欧美性色欧美a在线播放| 久久综合久久久久88| 亚洲综合一区二区| 国产综合久久久久久鬼色| 欧美日韩大陆在线| 国产精品久久一级| 日韩成人av影视| 欧美精品亚洲一区二区在线播放| 中文字幕第一区二区| 蜜臀久久久久久久| 色欧美日韩亚洲| 欧美国产综合一区二区| 日本中文字幕一区| 日本二三区不卡| 国产精品美女久久久久久2018| 美女视频网站黄色亚洲| 欧美色窝79yyyycom| 一区二区三区毛片|