30/09/2018, 22:07

Tạo winform C# có thể cuốn lên cuốn xuống?

Mình muốn tạo một form có thể cuộn lên cuộn xuống như thế này. Có bạn nào giúp mình với.

hacked viết 00:11 ngày 01/10/2018

Tạo FlowLayoutPanel:

 flowLayoutPanel1.FlowDirection = System.Windows.Forms.FlowDirection.TopDown;
 flowLayoutPanel1.WrapContents = false;
 flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
 flowLayoutPanel1.AutoScroll = true;
Văn Dương viết 00:14 ngày 01/10/2018

Bên WindowsForm dùng 1 panel có thuộc tính AutoScroll = true. Bên WPF dùng một ScrollViewer.

Bài liên quan
0