You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
922 B
C#
47 lines
922 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Diagnostics;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
|
|
namespace Mesnac.Controls.Sulf
|
|
{
|
|
public partial class TextLabel : Label
|
|
{
|
|
public TextLabel()
|
|
: base()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
public TextLabel(IContainer container)
|
|
{
|
|
container.Add(this);
|
|
|
|
InitializeComponent();
|
|
}
|
|
|
|
private string _overText;
|
|
|
|
public string OverText
|
|
{
|
|
get { return _overText; }
|
|
set
|
|
{
|
|
_overText = value;
|
|
this.Text = value;
|
|
}
|
|
}
|
|
|
|
private string _overTextName;
|
|
|
|
public string OverTextName
|
|
{
|
|
get { return _overTextName; }
|
|
set { _overTextName = value; }
|
|
}
|
|
}
|
|
}
|