- 39
- 0
- 约3.31万字
- 约 30页
- 2016-08-17 发布于贵州
- 举报
《C#程序设计课程设计-公交路线查询
太湖学院
《C#程序设计》课程设计
题目: 《公交路线查询》
机 电 学院 计算机科学与技术 专业
学 号: 学生姓名: 班 级: 计科84 成 绩:
2012年 1月
㈠需求分析㈡概要设计using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace bus
{
public partial class Form3 : Form
{
public Form3()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
if (radioButton1.Checked)
{
Form1 f=new Form1();
f.Show();
this.Hide();
}
if(radioButton2.Checked)
{
Form2 f = new Form2();
f.Show();
this.Hide();
}
}
private void button2_Click(object sender, EventArgs e)
{
Application.Exit();
}
private void radioButton1_CheckedChanged(object sender, EventArgs e)
{
}
}
}
查询模块:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.IO;
namespace bus
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
public int n = 0;
private void button1_Click(object sender, EventArgs e)
{
string []bus = new string[10];
FileStream fs = new FileStream(C:\\Documents and Settings\\Administrator\\桌面\\buses\\bus\\MyFile.txt, FileMode.Open, FileAccess.Read);
StreamReader sr = new StreamReader(fs);
for (int i = 0; i bus.Length; i++)
{
bus[i] = sr.ReadLine();
if (bus[i] == null)
{
n++;
您可能关注的文档
- 《 汽车加气站目建议书 》.doc
- 《 汽车露营营项目(健身休闲度假区)可行性研究报告 》.doc
- 《 汽车露营营项目可行性研究报告1 》.docx
- 《 瓜洲国际露地旅游开发项目建议书 》.doc
- 《 铁皮石斛种新技术研究可行性分析报告 》.doc
- 《 食用花卉的模种植与加工利用可行性研究报告 》.doc
- 《 马铃薯薯块产线项目建议书 》.doc
- 《#05杆隔离闸上引线作业指导书》.doc
- 《#1锅炉受热安装方案 》.doc
- 《05工程付款业指引01》.doc
- 山西天一大联考2025-2026学年高二上学期期末学情监测语文试题(试卷+解析).docx
- 山西忻州部分学校2025-2026学年高一上学期2月质量检测数学试题(人教B版)(试卷+解析).docx
- 山西运城市2025-2026学年高二第一学期期末调研测试数学试题(试卷+解析).docx
- 陕西省榆林市榆阳区2025-2026学年八年级上学期期末地理试题(试卷+解析).docx
- 陕西西安市碑林区2025-2026学年度第一学期期末八年级生物试题(试卷+解析).docx
- 四川省广元市苍溪县2025-2026年八年级上学期期末道德与法治试题(试卷+解析).docx
- 江苏泰州市姜堰区2025-2026学年七年级上学期1月期末数学试题(试卷+解析).docx
- 江苏省扬州市邗江区2025-2026学年九年级上学期期末考试化学试题(试卷+解析).docx
- 江西上饶市铅山县2025-2026学年第一学期期末考试八年级数学试题(试卷+解析).docx
- 江苏扬州市高邮市2025-2026学年度第一学期期末学业质量监测试题九年级英语(试卷+解析).docx
原创力文档

文档评论(0)