今天写一些常用的控件:
radionButton:单选按钮
menustrip:菜单栏,用来做菜单分类
pictureBox:图像框
comboBox:下拉框
linkLabel:超链接
dateTimePicker:日历
timer1:时间间隔
Panel:面板,对控件分组
colorDialog:颜色面板
fontDialog:字体面板
listBox:选项列表
在这之前先准备2张照片:


创建一个窗口,放进去一张照片:
DLRBForm窗口:

DLRBForm代码:
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 DLRBForm : Form
{
public DLRBForm()
{
InitializeComponent();
}
}
}
Form1窗口:

Form1代码:
using _1.常用控件.Properties;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;

最低0.47元/天 解锁文章
920

被折叠的 条评论
为什么被折叠?



