您好,登錄后才能下訂單哦!
本篇內容主要講解“C#怎么實現背單詞小程序”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“C#怎么實現背單詞小程序”吧!
實現以下功能
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而重復賦值 private void timer1_Tick(object sender, EventArgs e) { #region 從文件讀取數據 /// <summary> /// 使用StreamReader讀取文本文件然后一行一行的輸出 -- /// </summary> List<string> english = new List<string>();//此處初始化兩個集合 List<string> chinese = new List<string>();//將后面把每一行內容分割好的幾部分分別存給集合 //List<string> yinbiao = new List<string>(); //創建變量line //創建StreamReader StreamReader sw = new StreamReader("E:\\College_Grade4.txt",Encoding.Default);//此處讀取文件功能,Encoding.Default的作用是根據文本文件的編碼來讀取數據,一定不能丟,否則中文會亂碼 string content = sw.ReadToEnd();//把文件讀完存給content string[] lines = content.Split('\n');//把讀取好的文件分割為一行一行存給數組 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 } }}
以下是實現效果
隨timer控件執行一次一次出現后面的單詞和意思
到此,相信大家對“C#怎么實現背單詞小程序”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。