34 lines
770 B
C#
34 lines
770 B
C#
using System;
|
|
using System.Linq;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
|
|
namespace DeiNiu.Wms.CE.forms.navi
|
|
{
|
|
public partial class navPandian : Form
|
|
{
|
|
public navPandian()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void button1_Click(object sender, EventArgs e)
|
|
{
|
|
new LocationStockInit().ShowDialog();
|
|
}
|
|
|
|
private void button2_Click(object sender, EventArgs e)
|
|
{
|
|
new StorageLocationCheck().ShowDialog();
|
|
}
|
|
|
|
private void button3_Click(object sender, EventArgs e)
|
|
{
|
|
new StockPandianPick().ShowDialog();
|
|
}
|
|
}
|
|
} |