- [DEVEXPRESS] Hỗ trợ tìm kiếm highlight không dấu và không khoảng cách trên Gridview Filter
- [C#] Chia sẻ source code phần mềm Image Downloader tải hàng loạt hình ảnh từ danh sách link url
- [C#] Chụp hình và quay video từ camera trên winform
- [C#] Chia sẽ full source code tách file Pdf thành nhiều file với các tùy chọn
- Giới thiệu về Stock Tracker Widget - Công cụ theo dõi cổ phiếu và cảnh báo giá tăng giảm bằng C# và WPF
- [VB.NET] Chia sẻ công cụ nhập số tiền tự động định dạng tiền tệ Việt Nam
- [VB.NET] Hướng dẫn fill dữ liệu từ winform vào Microsoft word
- [VB.NET] Hướng dẫn chọn nhiều dòng trên Datagridview
- Hướng Dẫn Đăng Nhập Nhiều Tài Khoản Zalo Trên Máy Tính Cực Kỳ Đơn Giản
- [C#] Chia sẻ source code phần mềm đếm số trang tập tin file PDF
- [C#] Cách Sử Dụng DeviceId trong C# Để Tạo Khóa Cho Ứng Dụng
- [SQLSERVER] Loại bỏ Restricted User trên database MSSQL
- [C#] Hướng dẫn tạo mã QRcode Style trên winform
- [C#] Hướng dẫn sử dụng temp mail service api trên winform
- [C#] Hướng dẫn tạo mã thanh toán VietQR Pay không sử dụng API trên winform
- [C#] Hướng Dẫn Tạo Windows Service Đơn Giản Bằng Topshelf
- [C#] Chia sẻ source code đọc dữ liệu từ Google Sheet trên winform
- [C#] Chia sẻ source code tạo mã QR MOMO đa năng Winform
- [C#] Chia sẻ source code phần mềm lên lịch tự động chạy ứng dụng Scheduler Task Winform
- [C#] Hướng dẫn download file từ Minio Server Winform
[C#] Hướng dẫn lấy danh sách múi giờ Timezone UTC trên thế giới trên Winform
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 lấy tất cả các múi giờ trên thế giới Timezone UTC trên Winform C#.
[C#] Get Timezone UTC winform
Dưới đây là giao diện demo ứng dụng:

Ở hình trên, các bạn thấy mình hiển thị hết danh sách các múi giờ vào trong listbox trên c#.
Các dữ liệu này là mình lấy từ trong thư viện của Winform C#.
Bạn chỉ cần gọi hàm sau là nó trả về cho bạn danh sách các múi giờ:
TimeZoneInfo.GetSystemTimeZones()Code nguyên chương trình đơn giản chỉ cần vài dòng dưới đây:
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace TimeZoneInfoSystem
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
           
        }
        private void Form1_Load(object sender, EventArgs e)
        {
            ReadOnlyCollection<TimeZoneInfo> collection = TimeZoneInfo.GetSystemTimeZones();
            this.listBox.Items.AddRange(collection.ToArray());
            // set default time zone Hà nội, việt nam
            var index = collection.ToList().FindIndex(x => x.DisplayName.ToLower().Contains("hanoi"));
            this.listBox.SetSelected(index, true);
        }
        private void timer1_Tick(object sender, EventArgs e)
        {
            TimeZoneInfo timeZoneInfo = (TimeZoneInfo)this.listBox.SelectedItem;
            this.currentTimeZoneLabel.Text = $"{this.listBox.Text} : {TimeZoneInfo.ConvertTime(DateTime.Now, timeZoneInfo).ToString()}";
        }
    }
}
Thanks for watching!

![[C#] Hướng dẫn lấy danh sách múi giờ Timezone UTC trên thế giới trên Winform](https://laptrinhvb.net/uploads/users/9a8cb514e4428e85fb4ca07588e9103f.png)

![[C#] Chia sẽ công cụ component Dropdown Extend Winform](https://laptrinhvb.net/uploads/source/csharp/drop_down_ex_thumb.png)
![[C#] Hiển thị cửa sổ user consent trên winform NET Core 6](https://laptrinhvb.net/uploads/source/new_image_baiviet/user_consent_csharp.gif)
![[C#] Giới thiệu thư viện Sunny UI thiết kế giao diện trên Winform](https://laptrinhvb.net/uploads/source/sunny_ui/sunny_ui1.gif)
![[C#] Hướng dẫn viết sự kiện Delay Text Change cho Text Box trong csharp](https://laptrinhvb.net/uploads/source/image_baiviet/9bcfef82140cc7e0370752c69b4ce0a0.jpg)
![[C#] Hướng dẫn lấy tất cả các ip cùng lớp mạng trong mạng LAN](https://laptrinhvb.net/uploads/source/image_baiviet/b680f9cd2e1a66b249addbcaffc0ddba.jpg)
![[C#] Hướng dẫn thiết kế form loading splash screen transparent winform](https://laptrinhvb.net/uploads/source/vbnet/TransparentSplashScreen_thumb.png)
![[C#] Function convert DataTable to List và ngược lại  trong lập trình csharp](https://laptrinhvb.net/uploads/source/image_baiviet/94653c921c3d18a5e576d9c9948be36d.png)
![[C#] Hướng dẫn viết ứng dụng check live SSH Server](https://laptrinhvb.net/uploads/source/image_baiviet/6bc4d5b0ca4995dfce771849892f925e.jpg)
![[C#] Hướng dẫn hiển thị bảng table ở giao diện Console](https://laptrinhvb.net/uploads/source/vbnet/table_console.jpg)
![[C#] Chụp hình và quay video từ camera trên winform](https://laptrinhvb.net/uploads/source/new_image_baiviet/thumb_recordvideo_camera_csharp.png)
![[C#] Hướng dẫn viết ứng dụng ẩn và hiện Taskbar Windows](https://laptrinhvb.net/uploads/source/image_baiviet/ce1585bdf428bd1d3f0ae16de0a25b65.png)
![[C#] Hướng dẫn cấu hình địa chỉ IPAddress, SubnetMask, DefaultGetway, DNS Winform](https://laptrinhvb.net/uploads/source/vbnet/set_ipaddress_csharp.png)
![[C#] Thêm ứng dụng vào Taskbar sử dụng SharpShell DeskBand](https://laptrinhvb.net/uploads/source/vbnet/net_monitor_deskband_csharp.gif)
![[C#] Hướng dẫn lấy số điện thoại việt nam từ TextBox](https://laptrinhvb.net/uploads/source/csharp/find_phone_number_thumb.jpg)
![[C#] Hướng dẫn nhúng Embed Windows Explorer vào Winform làm File Manager](https://laptrinhvb.net/uploads/source/csharp/file_manage_thumb.jpg)
![[C#] Chia sẽ control Keyboard Textbox trên Winform](https://laptrinhvb.net/uploads/source/vbnet/keyboard_textbox_csharp.png)
![[C#] Hướng dẫn mã hóa file sử dụng thuật toán AES 256 bit](https://laptrinhvb.net/uploads/source/csharp/aes_thumb_csharp.png)
![[C#] Tìm kiếm file trùng nhau trong cùng thư mục lập trình Winform](https://laptrinhvb.net/uploads/source/csharp/duplicate_file_thumb.png)
![[C#] Tự động tăng phiên bản Version khi Build ứng dụng trong Visual Studio](https://laptrinhvb.net/uploads/source/csharp/auto_increment_version_csharp.jpg)
![[C#] Download file from FTP Server With Progressbar](https://laptrinhvb.net/uploads/source/image_baiviet/a103d5f0172206f12941cffb0f1658a7.jpg)
![[C#] Hướng Dẫn Tạo Windows Service Đơn Giản Bằng Topshelf](https://laptrinhvb.net/uploads/source/new_image_baiviet/topsheft_windowsservices.png)
![[C#] Hướng dẫn tạo thanh toán đơn hàng qua mã vạch VietQR sử dụng API PayOS hoàn toàn miễn phí](https://laptrinhvb.net/uploads/source/new_image_baiviet/screenshot_1704866617.png)
![[C#] Đặt mật khẩu bảo vệ cho database Sqlite](https://laptrinhvb.net/uploads/source/image_baiviet/271fd22eef8ba8835c6cc16e94677853.jpg)
![[C#] Hướng dẫn sử dụng Tab Order thiết lập Tab Index cho từng control](https://laptrinhvb.net/uploads/source/csharp/tab_order_csharp.png)
![[C#] Hướng dẫn mã hóa hình ảnh sang Base64 và ngược lại](https://laptrinhvb.net/uploads/source/image_baiviet/9023876cc65629a36c2c52e97c8d1924.jpg)
