mirror of https://github.com/ArduPilot/ardupilot
55 lines
1.3 KiB
C#
55 lines
1.3 KiB
C#
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());
|
|
}
|
|
}
|
|
}
|
|
}
|