C#WPF打字游戏

 实现简单的功能,可以消灭字母,没有写计时,分数

C#WPF打字游戏_第1张图片

设计界面


    
        
            
            
        
    

代码界面

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Windows.Threading;
namespace 打字游戏
{
    /// 
    /// MainWindow.xaml 的交互逻辑
    /// 
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();
        }
        Random r = new Random();
        //字母生成计时器
        DispatcherTimer zimu = new DispatcherTimer();
        //字母下落
        DispatcherTimer zmtop = new DispatcherTimer();
        //飞机图片
        Image plane = new Image();
        //泛型集合字母
        List

 

你可能感兴趣的:(C#WPF打字游戏)