码迷,mamicode.com
首页 > Windows程序 > 详细

记事本和winform 容器控件

时间:2016-06-29 23:33:13      阅读:340      评论:0      收藏:0      [点我收藏+]

标签:

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 WindowsFormsApplication6
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void 撤消UToolStripMenuItem_Click(object sender, EventArgs e)
        {
            textBox1.Undo();
        }

        private void 重复RToolStripMenuItem_Click(object sender, EventArgs e)
        {
            
        }

        private void 剪切TToolStripMenuItem_Click(object sender, EventArgs e)
        {
            textBox1.Cut();
        }

        private void 复制CToolStripMenuItem_Click(object sender, EventArgs e)
        {
            textBox1.Copy();
        }

        private void 粘贴PToolStripMenuItem_Click(object sender, EventArgs e)
        {
            textBox1.Paste();
        }

        private void 退出XToolStripMenuItem_Click(object sender, EventArgs e)
        {
            this.Close();
        }

        private void 选项OToolStripMenuItem_Click(object sender, EventArgs e)
        {

        }

        private void textBox1_TextChanged(object sender, EventArgs e)
        {
            string a = textBox1.Text.Length.ToString();
            toolStripStatusLabel2.Text = a;
        }
    }
}

技术分享

技术分享

 

 

 

--------------菜单和工具栏--------------------------------

ContextMenuStrip---------右键菜单栏
MenuStrip------------顶部菜单栏
statusStrip----------底部菜单栏
ToolStrip------------工具栏
ToolStripContainer-----(四周可以放置 菜单、控件)

---------容器------------------------------


FlowLayoutPanel--------(内部控件)流式布局

GroupBox----------控件分组 有边框、标题

技术分享

----
Panel-----------控件分组 无边框、标题

技术分享

---
SplitContainer-----就是两个Panel

技术分享

---

TabControl--------带标签的选项卡

技术分享

---
TableLayoutPanel---------类似表格 一格只能放一个控件

技术分享

 


--------LisView控件-------------------------------------
类似一个表 
可显示数据库内容

技术分享

记事本

 

记事本和winform 容器控件

标签:

原文地址:http://www.cnblogs.com/fengsantianya/p/5628393.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!