译者:
经常在论坛上有人问如果写自己的控件,如何改造系统已经有的控件. 这篇文章对这个问题作了非常清楚的描述. 这是在codeproject上颇受好评的一篇入门级的文章.
简介
这篇文章简明扼要的介绍了在 .Net Framework中如何来产生自己的定制控件.
我们讲述如果产生一个定制控件,然后在一个应用程序中使用它. 我在这个控件中加入了自己的一些属性,我们可以看一下在C#中是如果实现的.
生成控件
修改下面这行:
public class cuteButton : System.Windows.Forms.Control
改为:
public class cuteButton : System.Windows.Forms.Button
现在我们的控件就是从System.Windows.Forms.Button 类来继承了.
private Color m_color1 = Color.LightGreen; //第一种颜色
private Color m_color2 = Color.DarkBlue; // 第二种颜色
private int m_color1Transparent = 64; // 第一种颜色的透明度
private int m_color2Transparent = 64; // 第二种颜色的透明度
{
get { return m_color1; }
set { m_color1 = value; Invalidate(); }
}
public Color cuteColor2
{
get { return m_color2; }
set { m_color2 = value; Invalidate(); }
}
public int cuteTransparent1
{
get { return m_color1Transparent; }
set { m_color1Transparent = value; Invalidate(); }
}
public int cuteTransparent2
{
get { return m_color2Transparent; }
set { m_color2Transparent = value; Invalidate(); }
}
上面的 Invalidate() 方法是用来在设计和使用时用来刷新控件的内部.
// Calling the base class OnPaint
base.OnPaint(pe);
// Create two semi-transparent colors
Color c1 = Color.FromArgb(m_color1Transparent , m_color1);
Color c2 = Color.FromArgb(m_color2Transparent , m_color2);
Brush b = new System.Drawing.Drawing2D.LinearGradientBrush(ClientRectangle,
c1, c2, 10);
pe.Graphics.FillRectangle (b, ClientRectangle);
b.Dispose();
下面是全部的代码:
using System;
using System.Collections;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Windows.Forms;
namespace ctlCuteButton
{
/// <summary>
/// Summary description for cuteButton.
/// </summary>
public class cuteButton : System.Windows.Forms.Button
{
private Color m_color1 = Color.LightGreen; //第一种颜色
private Color m_color2 = Color.DarkBlue; // 第二种颜色
private int m_color1Transparent = 64; // 第一种颜色的透明度
private int m_color2Transparent = 64; // 第二种颜色的透明度
public Color cuteColor1
{
get { return m_color1; }
set { m_color1 = value; Invalidate(); }
}
public Color cuteColor2
{
get { return m_color2; }
set { m_color2 = value; Invalidate(); }
}
public int cuteTransparent1
{
get { return m_color1Transparent; }
set { m_color1Transparent = value; Invalidate(); }
}
public int cuteTransparent2
{
get { return m_color2Transparent; }
set { m_color2Transparent = value; Invalidate(); }
}
public cuteButton()
{
}
protected override void OnPaint(PaintEventArgs pe)
{
// Calling the base class OnPaint
base.OnPaint(pe);
// Create two semi-transparent colors
Color c1 = Color.FromArgb
(m_color1Transparent , m_color1);
Color c2 = Color.FromArgb
(m_color2Transparent , m_color2);
Brush b = new System.Drawing.Drawing2D.LinearGradientBrush
(ClientRectangle, c1, c2, 10);
pe.Graphics.FillRectangle (b, ClientRectangle);
b.Dispose();
}
}
}
如何来使用你的控件
你可以尝试改变控件的一些属性,比如 cuteColor1, cuteColor2, cuteTransparent1, cuteTransparent2.
现在,你就完全知道如果开发和使用自定义控件了吧.祝你好运.
代码下载: http://www.codeproject.com/cs/miscctrl/cuteButton/cuteButton_src.zip
演示下载: http://www.codeproject.com/cs/miscctrl/cuteButton/cuteButton_bin.zip
本文地址:http://com.8s8s.com/it/it45889.htm