محو شدن تدریجی فرم هنگام بسته شدن
برای این کار کافی است که کد زیر را در رویداد FormClosing فرم بنویسید :
private void Form1_FormClosing(object sender, FormClosingEventArgs e) { this.Opacity = 1; for (int i = 0; i this.Opacity -= 0.01; Application.DoEvents(); System.Threading.Thread.Sleep(10); } }
مطلب قبلینمایش عکس داخل PictureBox در برنامه Windows Photo Viewerمطلب بعدیایجاد یک نوار پیشرفت (progress bar) در محیط کنسول