Windows控件在Web下的引用,首先我們建立一個window控件,項目名稱為EditImagePint,然后,
我們把項目下的UserControl1.cs改為ImagePint.cs,切記文件名和構(gòu)造函數(shù)都改!
先制作界面,首先在設(shè)計模式下,我們將一個PictureBox拖放到解面上,命名為pictureBox1
下面我們轉(zhuǎn)入代碼頁,也就是ImagePint.cs
我們需要引用的對象有: using System; using System.Collections; using System.ComponentModel; using System.Drawing; using System.Data; using System.Windows.Forms; using System.IO; using System.Net;
然后我們寫一個函數(shù)
private void ImagePint_Load(object sender, System.EventArgs e) { /*具體代碼我們下面介紹*/ }
這個函數(shù),是為了在web頁面使用時候加載使用的.
然后我們看控件自己的生成代碼,把 this.Load += new System.EventHandler(this.ImagePint_Load); 加如InitializeComponent()中 #region 組件設(shè)計器生成的代碼:
/// /// 設(shè)計器支持所需的方法 - 不要使用代碼編輯器 /// 修改此方法的內(nèi)容。 /// private void InitializeComponent() { this.pictureBox1 = new System.Windows.Forms.PictureBox(); this.SuspendLayout(); // // pictureBox1 // this.pictureBox1.Location = new System.Drawing.Point(0, 0); this.pictureBox1.Name = "pictureBox1"; this.pictureBox1.TabIndex = 0; this.pictureBox1.TabStop = false; // // ImagePint // this.Controls.Add(this.pictureBox1); this.Name = "ImagePint"; //看到了嗎?很明顯,先面的是我們加上去的 this.Load += new System.EventHandler(this.ImagePint_Load); this.ResumeLayout(false);
} #endregion
出處:藍色理想
責(zé)任編輯:moby
上一頁 下一頁 windows控件實現(xiàn)水印 [2]
◎進入論壇網(wǎng)絡(luò)編程版塊參加討論
|