You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.3 KiB
54 lines
1.3 KiB
using System; |
|
using System.Collections.Generic; |
|
using System.ComponentModel; |
|
using System.Drawing; |
|
using System.Data; |
|
using System.Linq; |
|
using System.Text; |
|
using System.Windows.Forms; |
|
|
|
namespace ArdupilotMega.Controls |
|
{ |
|
public partial class ImageLabel : UserControl //ContainerControl |
|
{ |
|
public new event EventHandler Click; |
|
|
|
private Image picture; |
|
private string text; |
|
|
|
public ImageLabel() |
|
{ |
|
text = ""; |
|
picture = new Bitmap(640,480); |
|
|
|
InitializeComponent(); |
|
} |
|
|
|
public void setImageandText(Image image, string text) |
|
{ |
|
pictureBox1.Image = image; |
|
label1.Text = text; |
|
} |
|
|
|
[System.ComponentModel.Browsable(true)] |
|
public Image Image { |
|
get { return picture; } |
|
set { picture = value; pictureBox1.Image = picture; } |
|
} |
|
|
|
[System.ComponentModel.Browsable(true)] |
|
public override string Text |
|
{ |
|
get { return text; } |
|
set { text = value; label1.Text = text; } |
|
} |
|
|
|
private void pictureBox1_Click(object sender, EventArgs e) |
|
{ |
|
if (Click != null) |
|
{ |
|
Click(sender,new EventArgs()); |
|
} |
|
} |
|
} |
|
}
|
|
|