Work done so far

This commit is contained in:
minster586
2026-08-11 22:42:01 -04:00
parent da5fb64400
commit 02bd8ffd5e
10 changed files with 1321 additions and 256 deletions
+16 -16
View File
@@ -29,9 +29,9 @@
private void InitializeComponent()
{
station_list_group_box = new GroupBox();
search_label = new Label();
textBox1 = new TextBox();
lstStations = new ListBox();
textBox1 = new TextBox();
search_label = new Label();
refresh_button = new Button();
btnSelectStation = new Button();
btnCancelStation = new Button();
@@ -50,14 +50,13 @@
station_list_group_box.TabStop = false;
station_list_group_box.Text = "Available Stations";
//
// search_label
// lstStations
//
search_label.AutoSize = true;
search_label.Location = new Point(26, 32);
search_label.Name = "search_label";
search_label.Size = new Size(50, 17);
search_label.TabIndex = 0;
search_label.Text = "Search:";
lstStations.FormattingEnabled = true;
lstStations.Location = new Point(26, 65);
lstStations.Name = "lstStations";
lstStations.Size = new Size(332, 174);
lstStations.TabIndex = 2;
//
// textBox1
//
@@ -67,13 +66,14 @@
textBox1.TabIndex = 1;
textBox1.TextChanged += textBox1_TextChanged;
//
// lstStations
// search_label
//
lstStations.FormattingEnabled = true;
lstStations.Location = new Point(26, 65);
lstStations.Name = "lstStations";
lstStations.Size = new Size(332, 174);
lstStations.TabIndex = 2;
search_label.AutoSize = true;
search_label.Location = new Point(26, 32);
search_label.Name = "search_label";
search_label.Size = new Size(50, 17);
search_label.TabIndex = 0;
search_label.Text = "Search:";
//
// refresh_button
//
@@ -90,7 +90,7 @@
btnSelectStation.Name = "btnSelectStation";
btnSelectStation.Size = new Size(117, 23);
btnSelectStation.TabIndex = 2;
btnSelectStation.Text = "Refresh stations";
btnSelectStation.Text = "Select Station";
btnSelectStation.UseVisualStyleBackColor = true;
btnSelectStation.Click += btnSelectStation_Click;
//