【WinForm】WinForm实现课程表

该文章介绍了一个课程表应用程序的实现,包括编辑和锁定模式的功能。用户可以在编辑模式下修改表格内容,点击单元格显示课程详情。锁定模式则禁止编辑。代码示例展示了如何处理TextBox控件的事件以及根据日期选择更新界面。
摘要由CSDN通过智能技术生成


前言


一、课程表

1、效果

编辑模式:
在这里插入图片描述
锁定模式:

在这里插入图片描述

2、界面设计

在这里插入图片描述

3、代码

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace 课程表
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();

            foreach (Control ctr in this.tableLayoutPanel1.Controls)
            {
                if (ctr is TextBox)
                {
                    TextBox tb = (TextBox)ctr;
                    tb.Click += (tb_Click);
                    tb.Click += (tb_ChangeFormName);   
                }
            }
        }

        void tb_ChangeFormName(object sender, EventArgs e)
        {
            TextBox tb = (TextBox)sender;
            if (tb.Text != "")
                this.Text = tb.Text;
        }

        void tb_Click(object sender, EventArgs e)
        {
            TextBox tb = (TextBox)sender;
            if (tb.Text != "")
                MessageBox.Show(tb.Text);
        }

        private void button1_Click(object sender, EventArgs e)
        {
            if (this.button1.Text == "编辑")
            {
                button1.Text = "锁定";
                SetTableLockStatus(false);
            }
            else
            {
                button1.Text = "编辑";
                SetTableLockStatus(true);
            }
        }

        public void SetTableLockStatus(bool isLocked)
        {
            foreach (Control ctr in this.tableLayoutPanel1.Controls)
            {
                if (ctr is TextBox)
                {
                    ctr.Enabled = !isLocked;
                }
            }
        }

        private void monthCalendar1_DateSelected(object sender, DateRangeEventArgs e)
        {
            Rectangle updatteRec = new Rectangle(0, 0, tableLayoutPanel1.Width, tableLayoutPanel1.Height / 10);
            tableLayoutPanel1.Invalidate(updatteRec);
            tableLayoutPanel1.Update();
        }

        private void tableLayoutPanel1_CellPaint(object sender, TableLayoutCellPaintEventArgs e)
        {
            if (e.Column + 1 == (int)monthCalendar1.SelectionStart.DayOfWeek && e.Row == 0)
            {
                e.Graphics.FillRectangle(Brushes.Red, e.CellBounds);
            }
        }

  
    }
}


总结

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值