Various updates

This commit is contained in:
Wesley Hofman
2025-09-15 20:24:09 +02:00
parent 9292dcfad5
commit 14e8e2f267
18 changed files with 1241 additions and 483 deletions

View 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();
}
}
}