Winform中的經常使用控件使用

一些常見的winform基本控件的屬性及方法ide

Label標籤控件的屬性及方法this

代碼:spa

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

        private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            linkLabel1.LinkVisited = true; // 確認超文本連接是按照連接後的樣式呈現
            Form2 newForm2 = new Form2(); // 實例化Form2窗體,命名爲newForm
            newForm2.Show(); // 將實例化的窗體打開
            this.Hide(); // 當前的窗體隱藏
        }

        private void linkLabel2_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            label2.Show(); // 當單擊此連接時顯示標籤2
        }

        private void linkLabel3_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            label2.Hide(); // 當單擊此連接時隱藏標籤2
        }
    }
}

 界面:code

 屬性及方法orm

TextBox文本框控件屬性和方法blog

Button按鈕控件屬性及方法it

 

 

 

一直不明白打開一個控件後,怎麼跳轉到另外一個控件,看到這裏才明白用hide和show方法能夠達到跳轉頁面的效果。io

相關文章
相關標籤/搜索