我們把項目下的UserControl
先制作界面
下面我們轉入代碼頁
我們需要引用的對象有
using System;
using System
using System
using System
using System
using System
using System
using System
然後我們寫一個函數
private void ImagePint_Load(object sender
{
/*具體代碼我們下面介紹*/
}
這個函數
然後我們看控件自己的生成代碼
this
加如InitializeComponent()中
#region 組件設計器生成的代碼
///
/// 設計器支持所需的方法
/// 修改此方法的內容
///
private void InitializeComponent()
{
this
this
//
// pictureBox
//
this
this
this
this
//
// ImagePint
//
this
this
//看到了嗎?很明顯
this
this
}
#endregion
有了這些東西
#region 公共屬性
//顯示寬度
public int ImgWidht
{
get {return _ImgWidth;}
set {_ImgWidth = value;}
}
//顯示高度
public int ImgHeight
{
get {return _ImgHeight;}
set {_ImgHeight = value;}
}
//透明度
private int Alpha
{
get {return _Alpha;}
set {_Alpha = value;}
}
//主圖片地址
public string ZPicture
{
get {return _ZPicture;}
set {_ZPicture = value;}
}
//水印圖片地址
public string FPicture
{
get {return _FPicture;}
set {_FPicture = value;}
}
#endregion
下面把完整的代碼貢獻給大家
代碼拷貝框
[Ctrl+A 全部選擇 然後拷貝]
然後我們把這個控件生成一個Release版本
localhost/Object/ImagePrint/
我們就把生成的 EditImagePint
並建立一個html文件
<object id=
EditImagePint
Width=
<param name=
<param name=
<param name=
<param name=
<param name=
</object>
看到了把
最終顯示如下
對不起大家
源碼下載
From:http://tw.wingwit.com/Article/program/net/201311/13537.html