📄 form1.cs
字号:
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
namespace Seeding
{
/// <summary>
/// Summary description for Form1.
/// </summary>
public class Form1 : System.Windows.Forms.Form
{
private System.Windows.Forms.ListBox lsEvents;
private System.Windows.Forms.ListBox lsSwimmers;
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.Container components = null;
private ArrayList events;
private void init() {
//create array of events
events = new ArrayList ();
lsEvents.Items.Add ("500 Free");
lsEvents.Items.Add ("100 Free");
//and read in their data
events.Add (new TimedFinalEvent ("500free.txt", 6));
events.Add (new PrelimEvent ("100free.txt", 6));
}
public Form1()
{
//
// Required for Windows Form Designer support
//
InitializeComponent();
init();
//
// TODO: Add any constructor code after InitializeComponent call
//
}
/// <summary>
/// Clean up any resources being used.
/// </summary>
protected override void Dispose( bool disposing )
{
if( disposing )
{
if (components != null)
{
components.Dispose();
}
}
base.Dispose( disposing );
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.lsEvents = new System.Windows.Forms.ListBox();
this.lsSwimmers = new System.Windows.Forms.ListBox();
this.SuspendLayout();
//
// lsEvents
//
this.lsEvents.Location = new System.Drawing.Point(8, 24);
this.lsEvents.Name = "lsEvents";
this.lsEvents.Size = new System.Drawing.Size(112, 69);
this.lsEvents.TabIndex = 0;
this.lsEvents.SelectedIndexChanged += new System.EventHandler(this.lsEvents_SelectedIndexChanged);
//
// lsSwimmers
//
this.lsSwimmers.Location = new System.Drawing.Point(144, 24);
this.lsSwimmers.Name = "lsSwimmers";
this.lsSwimmers.Size = new System.Drawing.Size(192, 160);
this.lsSwimmers.TabIndex = 1;
//
// Form1
//
this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
this.ClientSize = new System.Drawing.Size(384, 205);
this.Controls.AddRange(new System.Windows.Forms.Control[] {
this.lsSwimmers,
this.lsEvents});
this.Name = "Form1";
this.Text = "Seeding Factory";
this.ResumeLayout(false);
}
#endregion
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.Run(new Form1());
}
private void lsEvents_SelectedIndexChanged(object sender, System.EventArgs e) {
int index = lsEvents.SelectedIndex ;
Event ev = (Event)events[index];
Seeding sd = ev.getSeeding();
IEnumerator en = sd.getSwimmers();
lsSwimmers.Items.Clear() ;
while(en.MoveNext ()) {
Swimmer sw = (Swimmer)en.Current ;
lsSwimmers.Items.Add(sw.getHeat()+" "+sw.getLane()+" "+sw.getName()+" "+sw.getTime());
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -