[C#] Hiển Thị Hình ảnh GIF Vào Button, Picturebox, Label Winform
Có thể bạn quan tâm
Xin chào các bạn, bài viết hôm nay mình sẽ hướng dẫn các bạn cách chèn hình Gif và button, picturebox, hay label trong winform lập trình C#.
Bạn có thể hiển thị hình Gif thông qua thuộc tính BackgroundImage trong từng button trên.
Và các bạn chỉnh lại vị trí của hình theo nhu cầu của mình: trái, giữa hay bên phải tùy bạn.
Dưới đây là giao diện demo Button Gif C#:
Source code Animation Button Gif C#:
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.IO; namespace howto_display_animated_gif { public partial class Form1 : Form { public Form1() { InitializeComponent(); } // Switch GIFs. bool ButtonShowingPuppy = false; private void btnGif_Click(object sender, EventArgs e) { ButtonShowingPuppy = !ButtonShowingPuppy; if (ButtonShowingPuppy) { btnGif.Image = howto_display_animated_gif.Properties.Resources.puppy; } else { btnGif.Image = howto_display_animated_gif.Properties.Resources.under_construction; } } // Switch GIFs, loading from files. bool PictureBoxShowingPuppy = false; private void picGif_Click(object sender, EventArgs e) { PictureBoxShowingPuppy = !PictureBoxShowingPuppy; if (PictureBoxShowingPuppy) { picGif.Image = howto_display_animated_gif.Properties.Resources.puppy; } else { picGif.Image = howto_display_animated_gif.Properties.Resources.under_construction; } } // Switch GIFs. bool LabelShowingAlien = false; private void lblGif_Click(object sender, EventArgs e) { string filename = Path.GetFullPath( Path.Combine(Application.StartupPath, @"..\..\")); LabelShowingAlien = !LabelShowingAlien; if (LabelShowingAlien) { lblGif.Image = Image.FromFile(filename + "alien.gif"); } else { lblGif.Image = Image.FromFile(filename + "under_construction.gif"); } } } }DOWNLOAD SOURCE
Tags: button gif c#picturebox gif c#lable gif c#Từ khóa » Chèn ảnh Vào Winform
-
Thêm Hình ảnh Vào ứng Dụng Winform C# - YouTube
-
[Lập Trình C# Winform] - Bài 11: Picturebox | HowKteam - YouTube
-
Cách đính Kèm Picture Trong Winform C - Cộng đồng C Việt
-
[C#] Hướng Dẫn Sử Dụng PictureBox Control
-
Chèn ảnh Trong Winform C# - Programming - Dạy Nhau Học
-
Chương Trình Xem ảnh Sử Dụng PictureBox Và OpenFileDialog Trong ...
-
Chèn Hình Cho Winform - Code 24h
-
[C#] Hướng Dẫn Chèn Text Vào Dưới Hình ảnh Winform
-
Picturebox Trong Lập Trình C# Winform | How Kteam
-
[Lập Trình C# Winform] - Bài 11: Picturebox | HowKteam - Tiện ích
-
Lưu Trực Tiếp Hình ảnh Vào CSDL Bằng Ngôn Ngữ C# Trên Winform
-
Thêm Hình ảnh Vào Hiển Thị Theo ListView Với C# - MangBinhDinh.Vn
-
/forum/p?t=10336
-
Chèn Hình Ảnh Vào ComboBox Với C# Winform. - HTIT