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.
53 lines
1.4 KiB
53 lines
1.4 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
|
|
namespace wcfControlMonitorClient
|
|
{
|
|
public partial class FrmBrowseCellStatus : Form
|
|
{
|
|
|
|
CommonClassLib.UCellPanel cellPanel = null;
|
|
|
|
private static FrmBrowseCellStatus _formInstance;
|
|
|
|
public static FrmBrowseCellStatus FormInstance
|
|
{
|
|
get
|
|
{
|
|
if (_formInstance == null)
|
|
{
|
|
_formInstance = new FrmBrowseCellStatus();
|
|
|
|
}
|
|
return _formInstance;
|
|
}
|
|
set { _formInstance = value; }
|
|
}
|
|
public FrmBrowseCellStatus()
|
|
{
|
|
InitializeComponent();
|
|
_formInstance = this;
|
|
}
|
|
|
|
private void FrmBrowseCellStatus_Load(object sender, EventArgs e)
|
|
{
|
|
if (cellPanel == null)
|
|
{
|
|
cellPanel = new CommonClassLib.UCellPanel(this, tbstartsite, null, tbFPALLETBARCODE, string.Empty);
|
|
cellPanel.TaskType = "100";
|
|
cellPanel.GoodsName = "";
|
|
cellPanel.Dock = DockStyle.Fill;
|
|
cellPanel.AllowWareHouseChanged = true;
|
|
plCell.Controls.Add(cellPanel);
|
|
|
|
}
|
|
cellPanel.Visible = true;
|
|
}
|
|
}
|
|
}
|