Listing of registered workfiles implemented

This commit is contained in:
2015-07-21 15:03:01 +02:00
parent 2ead87177b
commit 49a98ea405
6 changed files with 304 additions and 0 deletions

View File

@ -0,0 +1,41 @@
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)
{
}
}
}