实现Windoes程序的数据更新------的详细解析

Posted bk1234

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了实现Windoes程序的数据更新------的详细解析相关的知识,希望对你有一定的参考价值。

一.枚举

枚举是一组描述性的名称
定义一组有限的值,不能包含方法
对可能的值进行约束

1.定义枚举类

public enum Gender
{
Male,Female
}

2.使用枚举表示整数值

public enum Gender
{
Male=1,
Female=0
}

Console.WriteLine((int)Gender.Male);

3.枚举类型和字符串的相互转换

枚举转换为字符串
Gender.Female.ToStirng();
字符串转换为枚举
(Gender)(Enum.Parse(typeof(Gender), "Male");

二.PictrueBox

Image 在控件中显示的图像
SizeMode 如何处理图像和控件的大小关系

三.Timer

Interval 事件发生的频率,以毫秒为单位
Enabled 是否定时引发事件
Tick 定时发生的事件

四.定时切换图像

if (index < this.ilabout.Images.Count - 1)
{
index++;
}
else
{
index = 0;
}
this.picabout.Image = this.ilabout.Images[index];
























以上是关于实现Windoes程序的数据更新------的详细解析的主要内容,如果未能解决你的问题,请参考以下文章

Windoes包管理工具(Scoop)

windoes cmake与nmake

windoes任务管理器中的“句柄数”是啥意思!

win10打开exe程序总是弹出windoes正在设置Microsoft office professional plus 2010,要怎么解决?

python爬虫windoes的爬虫中文乱码现象,通用转码解决

Windoes下安装配置flutter环境