本篇內(nèi)容主要講解“C#怎么實現(xiàn)背單詞小程序”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學(xué)習(xí)“C#怎么實現(xiàn)背單詞小程序”吧!
在鄉(xiāng)寧等地區(qū),都構(gòu)建了全面的區(qū)域性戰(zhàn)略布局,加強發(fā)展的系統(tǒng)性、市場前瞻性、產(chǎn)品創(chuàng)新能力,以專注、極致的服務(wù)理念,為客戶提供成都網(wǎng)站制作、網(wǎng)站建設(shè)、外貿(mào)網(wǎng)站建設(shè) 網(wǎng)站設(shè)計制作按需網(wǎng)站策劃,公司網(wǎng)站建設(shè),企業(yè)網(wǎng)站建設(shè),品牌網(wǎng)站制作,營銷型網(wǎng)站,外貿(mào)營銷網(wǎng)站建設(shè),鄉(xiāng)寧網(wǎng)站建設(shè)費用合理。實現(xiàn)以下功能
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;using System.Threading.Tasks;using System.IO; namespace WindowsFormsApp3{ public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void form1_Load(object sender, EventArgs e) { } int t1 = 0;//此處變量t1只定義一次變量,不隨著timer而重復(fù)賦值 private void timer1_Tick(object sender, EventArgs e) { #region 從文件讀取數(shù)據(jù) /// <summary> /// 使用StreamReader讀取文本文件然后一行一行的輸出 -- /// </summary> List<string> english = new List<string>();//此處初始化兩個集合 List<string> chinese = new List<string>();//將后面把每一行內(nèi)容分割好的幾部分分別存給集合 //List<string> yinbiao = new List<string>(); //創(chuàng)建變量line //創(chuàng)建StreamReader StreamReader sw = new StreamReader("E:\\College_Grade4.txt",Encoding.Default);//此處讀取文件功能,Encoding.Default的作用是根據(jù)文本文件的編碼來讀取數(shù)據(jù),一定不能丟,否則中文會亂碼 string content = sw.ReadToEnd();//把文件讀完存給content string[] lines = content.Split('\n');//把讀取好的文件分割為一行一行存給數(shù)組 for (int i = 0; i < lines.Length; i++) { string[] words = lines[i].Trim().Split('\t');//以水平制表符為基準將每一行分割成幾部分 if (words.Length < 2)//如果分割的部分小于2個的話就不處理此行 continue; english.Add(words[0]);//將第一部分和第二部分分別存給上述集合 chinese.Add(words[1]); // yinbiao.Add(words[2]); } //將英文和翻譯先后顯示出來 if (t1 < lines.Length) { this.label1.Text = english[t1]; this.label2.Text = chinese[t1]; } t1++; #endregion } }}
以下是實現(xiàn)效果
隨timer控件執(zhí)行一次一次出現(xiàn)后面的單詞和意思
到此,相信大家對“C#怎么實現(xiàn)背單詞小程序”有了更深的了解,不妨來實際操作一番吧!這里是創(chuàng)新互聯(lián)建站,更多相關(guān)內(nèi)容可以進入相關(guān)頻道進行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!
文章名稱:C#怎么實現(xiàn)背單詞小程序-創(chuàng)新互聯(lián)
文章轉(zhuǎn)載:http://www.rwnh.cn/article18/jcdgp.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供Google、動態(tài)網(wǎng)站、網(wǎng)站設(shè)計公司、營銷型網(wǎng)站建設(shè)、云服務(wù)器、App開發(fā)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容