第十六篇——winform练习

这篇博客介绍了C# Winform应用的实战技巧,涵盖了Directory类的使用,包括文件操作和路径处理;WebBrowser控件的集成;通过ComboBox实现日期选择器功能;利用ListBox双击播放音乐的实现;设计了石头剪刀布游戏;展示了如何用打开文件对话框;构建简单的记事本程序;理解进程类和多线程的概念,包括前台线程与后台线程的差异;最后设计了一个摇奖机模拟器。
摘要由CSDN通过智能技术生成

一、Directory类

File:文件

Path:路径

FileStream:流文件

StreamReader:流文件

StreamWriter:流文件

            //创建指定文件夹  重复创建不会替换掉之前同名的文件夹
            Directory.CreateDirectory(@"C:\Users\FengZZZ\Desktop\new");
            Console.WriteLine("创建成功");
            //删除指定文件夹 如果文件夹不为空,则报错
            Directory.Delete(@"C:\Users\FengZZZ\Desktop\new");
            Console.WriteLine("删除成功");
            //文件夹不为空的情况下强制删除
            Directory.Delete(@"C:\Users\FengZZZ\Desktop\new",true);
            //指定文件夹剪切
            Directory.Move("原文件夹地址", "目标文件夹地址");
            //读取指定文件夹下所有文件的路径
            string[] path = Directory.GetFiles(@"C:\Users\FengZZZ\Desktop\new");
            //读取指定文件夹下所有指定文件格式的路径
            string[] path2 = Directory.GetFiles(@"C:\Users\FengZZZ\Desktop\new","*.jpg");
            //获得指定文件内所有文件夹的路径
            string[] path3 = Directory.GetDirectories(@"C:\Users\FengZZZ\Desktop\new");
            //判断指定文件夹内是否存在
            Directory.Exists(@"C:\Users\FengZZZ\Desktop\new");
            Console.ReadKey();

二、WebBrowser控件

        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            string str = textBox1.Text;
            Uri uri = new Uri("http://"+str);
            webBrowser1.Url = uri;
        }

三、日期选择器

ComboBox下拉框控件

DropDownStyle:控制下拉框的外观样式

DateTime.Today.Year:获取当前时间

    public Form1()
        {
            InitializeComponent();
        }

        private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
        {
            //避免重复赋值,赋值前清空
            comboBox2.Items.Clear();
            for (int i = 1; i <= 12; i++)
            {
                comboBox2.Items.Add(i + "月");
            }
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            int yearNow = DateTime.Today.Year;
            for (int i = yearNow; i >= 1949; i--)
            {
                comboBox1.Items.Add(i + "年");
            }
        }

        private void comboBox2_SelectedIndexChanged(object sender, EventArgs e)
        {
            comboBox3.Items.Clear();
            //拿到前两个下拉框中选中的年份和月份在下拉框集合中的坐标
            int yearSelected = comboBox1.SelectedIndex;
            int monthSelected = comboBox2.SelectedIndex;
            //根据坐标拿到选中的年和月的数值便于计算
            int yearStr = Convert.ToInt32(comboBox1.Items[yearSelected].ToString().Split(new char[] { '年' })[0]);
            int monthStr = Convert.ToInt32(comboBox2.Items[monthSelected].ToString().Split(new char[] { '月' })[0]);
            int day = 0;
            //判断月和年赋予日期值
            switch (monthStr)
            {
                case 1:
                case 3:
                case 5:
                case 7:
                case 8:
                case 10:
                case 12:
                    day = 31;
   
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值