• 大小: 0.63M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2020-12-25
  • 语言: C#
  • 标签: C#  c  

资源简介

C# 结合TXT实现全国城市查询功能

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace CityQuery
{
    public partial class frmAddProvince : Form
    {
        public frmMain mf = null;
        public frmAddProvince()
        {
            InitializeComponent();
        }

        private void btnOK_Click(object sender EventArgs e)
        {
            //此处也可以考虑加入一些判断条件,如不能为空等;
            Province AProvince = new Province(txtProvinceName.Text txtAbbreviation.Text txtCapitalCity.Text int.Parse(txtPostalCode.Text) txtScenicSpots.Text);
            //此处也可以考虑加入判断机制,如是否存在;
            mf.Pvs.Add(AProvince);
        }

    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

----------- ---------  ---------- -----  ----

              1572554                    116


评论

共有 条评论