123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- using System.ComponentModel;
- using System.Windows.Forms;
- namespace Infoking.Common.Windows.Control
- {
- public class IKLinkLabel : LinkLabel
- {
- private Container components;
- [ReadOnly(true)]
- [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
- [Description("Get or Set text.")]
- [Category("BizPeri Configuration")]
- public string CValue
- {
- get
- {
- return Text;
- }
- set
- {
- Text = value;
- }
- }
- public IKLinkLabel()
- {
- InitializeComponent();
- }
- protected override void Dispose(bool disposing)
- {
- if (disposing && components != null)
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- private void InitializeComponent()
- {
- components = new System.ComponentModel.Container();
- }
- protected override void OnPaint(PaintEventArgs pe)
- {
- base.OnPaint(pe);
- }
- }
- }
|