打印控件:
要打印,第一步先要想到制作打印对象PrintDocument - 默认事件
Font f = new Font("黑体",20);
Brush b = new SolidBrush(Color.Red);e.Graphics.DrawString(textBox1.Text, f, b, 20, 50);通过对于事件数据的绘制来制作要打印的内容
--------------------------------------------------------
MDI 窗体容器IsMdiContainer----------------确定该窗体是否是MDI容器
MenuStrip-------------------往MDI容器中放置的菜单
企业仓库,销售,财务三个模块的制作(用到MDI容器和唯一窗体):
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 WindowsFormsApplication5{ public partial class Form1 : Form { public Form1() { InitializeComponent(); } List