24 lines
478 B
C#
24 lines
478 B
C#
|
|
using System;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
using System.Linq;
|
||
|
|
using System.Windows.Forms;
|
||
|
|
|
||
|
|
namespace WMS.Ctrl
|
||
|
|
{
|
||
|
|
public partial class FormColumn : Form
|
||
|
|
{
|
||
|
|
private List<ColumnsItem> namecl;
|
||
|
|
public FormColumn(List<ColumnsItem> name)
|
||
|
|
{
|
||
|
|
InitializeComponent();
|
||
|
|
namecl = name;
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
private void FormColumn_Load(object sender, EventArgs e)
|
||
|
|
{
|
||
|
|
comboBox1.DataSource = namecl;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|