Listing of registered workfiles implemented
This commit is contained in:
41
CobXmlSupport/CheckWorkItems.cs
Normal file
41
CobXmlSupport/CheckWorkItems.cs
Normal 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)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user