1、設置圖片透明 this.pibox.BackColor = System.Drawing.Color.Transparent; //將背景設置為透明 this.pibox.Parent = lab_show; //將父容器設置為上一層的文件名 2、Timer不起作用 1、先托控制項Timer, 並 ...
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;