程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> C# winform基礎 1、Timer不起作用 2、 設置圖片透明,

C# winform基礎 1、Timer不起作用 2、 設置圖片透明,

編輯:C#入門知識

C# winform基礎 1、Timer不起作用 2、 設置圖片透明,


1、設置圖片透明

 

this.pibox.BackColor = System.Drawing.Color.Transparent;  //將背景設置為透明
this.pibox.Parent = lab_show;  //將父容器設置為上一層的文件名

 

 

 

2、Timer不起作用

1、先托控件Timer,

並做相關設置 

this.timerpic.Interval = 4000;
this.timerpic.Tick += new System.EventHandler(this.timerpic_Tick);

2、將要處理內容放到this.timerpic_Tick事件中

private void timerpic_Tick(object sender, EventArgs e)
{
pibox.Hide();
}

 

3、啟用timerpic

timerpic.Enabled = true;

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved