winform 窗体控件小结

1.固定頁面大小:FormBorderStyle选项,选择FixedDialog
2.多行滚动条:ScrollBars, V是竖, H是横
3.如何在textbox输入完成之后,按回车相当于点击了button按钮

winform 窗体控件小结_第1张图片
7.png

4.Textbox:
添加:

          name =txtusername.Text;//获取輸入的name值
          txtusername.Text = dr["UserName"].ToString();
         //将第一行列表名为UserName的值赋给user对象的UserName属性

清空:

         txtusername.Text = "";//设置空置,进行清空

多行显示:

        txtusers.AppendText(users[i] + Environment.NewLine);
        //注意!使用 Environment.NewLine 实现换行textBox1.AppendText(显示的内容 + Environment.NewLine);

5.Listbox:
ListBox控件显示较长的选项列表,用户可从中选择一项或多项。如果项总数超出可以显示的项数,则自动向ListBox控件添加滚动条。ListBox控件列表中的每个元素称为项。
说明:
① 该属性使用户可以获取对当前存储在 ListBox 中的项列表的引用。通过此引用,可以在集合中添加项、移除项和获得项的计数。
② 可以使用DataSource属性来操控ListBox的项。如果使用DataSource属性向ListBox添加项,则可以使用Items属性查看ListBox中的项,但不能使用ListBox.ObjectCollection的方法向该列表添加项或从中移除项。

代码示例:

           SqlConnection con = new SqlConnection("server=12;uid=sa;pwd=;database=test");
           con.Open();
           SqlCommand com = new SqlCommand("select * from table",con);
           SqlDataReader dr = com.ExecuteReader();
           this.listBox1.Items.Clear();
           while (dr.Read())
           {
           // this.listBox1.Items.Add(dr[0].ToString());
           this.listBox1.Items.Add(dr[1].ToString());
           //   this.listBox1.Items.Add(dr[2].ToString());
           }
           dr.Close();
           cn.Close();

多行显示:

          listBox1.Items.Add(Administrators[i]);

清空:

            listBox1.Items.Clear();

每次添加的的数据都要在上一次添加的下面,就像QQ聊天一样,发送的文字总是在上一次发送的下面: listBox1.Items.Add(DateTime.Now.ToString());类似这样就可以了

6.tabcontrol
属性:Dock居中
关于复写标签颜色:
#region 控制Table選項的顏色
//C#改变TabControl标签颜色和字体
//1.在Form类的构造函数中添加下列语句:
//this.MainBook.DrawMode = System.Windows.Forms.TabDrawMode.OwnerDrawFixed;
//this.MainBook.DrawItem += new DrawItemEventHandler(this.MainBook_DrawItem);
///


/// 控制Table選項的顏色
///

///
///
private void MainBook_DrawItem(object sender, System.Windows.Forms.DrawItemEventArgs e)
{
Font fntTab;
Brush bshBack;
Brush bshFore;
if (e.Index == this.MainBook.SelectedIndex)
{
//fntTab = new Font(e.Font, FontStyle.Bold);
fntTab = new Font(e.Font, FontStyle.Regular);
bshBack = new System.Drawing.Drawing2D.LinearGradientBrush(e.Bounds, SystemColors.ControlLight, SystemColors.ControlLight, System.Drawing.Drawing2D.LinearGradientMode.BackwardDiagonal);
bshFore = Brushes.Black;
}
else
{
fntTab = e.Font;
bshBack = new SolidBrush(Color.SteelBlue);
bshFore = new SolidBrush(Color.Yellow);
}
string tabName = this.MainBook.TabPages[e.Index].Text;
StringFormat sftTab = new StringFormat();
e.Graphics.FillRectangle(bshBack, e.Bounds);
Rectangle recTab = e.Bounds;
recTab = new Rectangle(recTab.X + 8, recTab.Y + 4, recTab.Width, recTab.Height - 4);
e.Graphics.DrawString(tabName, fntTab, bshFore, recTab, sftTab);
}
#endregion

7.richTextBox1
支持輸出內容自己自動換行
Textbox
也支持自動換行,但是不支持\n
8.webBrowser控件
在Url中輸入路徑(將文件保存爲mht格式).可以展示一些用戶使用手冊云云

你可能感兴趣的:(winform 窗体控件小结)