Winform(10.常用控件3)
今天继续写常用控件的使用:
radionButton:单选按钮
menustrip:菜单栏,用来做菜单分类
pictureBox:图像框
comboBox:下拉框
linkLabel:超链接
dateTimePicker:日历
timer1:时间间隔
Panel:面板,对控件分组
colorDialog:颜色面板
fontDialog:字体面板
listBox:选项列表
Form3窗口:
Form3代码:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace _1.常用控件
{
public partial class Form3 : Form
{
// 定义学生类
public class Student
{
public string Name { get; set; }