42 lines
874 B
C#
42 lines
874 B
C#
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 CobXmlSupport
|
|
{
|
|
public partial class CheckWorkItems : Form
|
|
{
|
|
|
|
public Dictionary<string,GenSetting> FileList { get; set; }
|
|
public CheckWorkItems()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void CheckWorkItems_Load(object sender, EventArgs e)
|
|
{
|
|
foreach (string file in FileList.Keys)
|
|
{
|
|
lbWorkFiles.Items.Add(file);
|
|
}
|
|
}
|
|
|
|
private void btnClose_Click(object sender, EventArgs e)
|
|
{
|
|
this.Close();
|
|
}
|
|
|
|
private void lbWorkFiles_SelectedIndexChanged(object sender, EventArgs e)
|
|
{
|
|
|
|
}
|
|
|
|
|
|
}
|
|
}
|