Various updates
This commit is contained in:
30
HTOLHAST/FormSelectProject.cs
Normal file
30
HTOLHAST/FormSelectProject.cs
Normal file
@@ -0,0 +1,30 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Data;
|
||||
using System.Drawing;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using System.Windows.Forms;
|
||||
using Maser.Palantir.Model;
|
||||
|
||||
namespace HTOLHAST
|
||||
{
|
||||
public partial class FormSelectProject : Form
|
||||
{
|
||||
public Project Project;
|
||||
public FormSelectProject()
|
||||
{
|
||||
InitializeComponent();
|
||||
midsProjectRetriever.OK_Clicked += MidsProjectRetriever_OK_Clicked;
|
||||
}
|
||||
|
||||
private void MidsProjectRetriever_OK_Clicked(object sender, EventArgs e)
|
||||
{
|
||||
Project = midsProjectRetriever.Project;
|
||||
this.DialogResult = DialogResult.OK;
|
||||
this.Close();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user