Commit for development environment setup

This commit is contained in:
2023-06-19 16:12:33 -04:00
parent be72063a3c
commit bbce2ad0a6
2209 changed files with 1171775 additions and 625 deletions

View File

@@ -0,0 +1,44 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using ProjectTracker.Library;
namespace PTWin
{
public partial class ResourceSelect : Form
{
private int _resourceId;
public int ResourceId
{
get { return _resourceId; }
}
public ResourceSelect()
{
InitializeComponent();
}
private void OK_Button_Click(object sender, EventArgs e)
{
_resourceId =
((ResourceInfo)
this.ResourceListListBox.SelectedValue).Id;
this.Close();
}
private void Cancel_Button_Click(object sender, EventArgs e)
{
this.Close();
}
private void ResourceSelect_Load(object sender, EventArgs e)
{
this.ResourceListBindingSource.DataSource =
ResourceList.GetResourceList();
}
}
}