ab56a9bcf7
SVN-Revision: r240
27 lines
540 B
C#
27 lines
540 B
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 Lskj.MesStart
|
|
{
|
|
public partial class PicItem : UserControl
|
|
{
|
|
[Description("图片")]
|
|
public PictureBox PBox;
|
|
|
|
public PicItem()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
public void SetBackImage(Image image)
|
|
{
|
|
this.pictureBox1.BackgroundImage = image;
|
|
}
|
|
}
|
|
}
|