Answers for "how to make panel scrollable c#"

C#
0

how to make panel scrollable c#

ScrollBar vScrollBar1 = new VScrollBar();
vScrollBar1.Dock = DockStyle.Right;
vScrollBar1.Scroll += (sender, e) => { panel1.VerticalScroll.Value = vScrollBar1.Value; };
panel1.Controls.Add(vScrollBar1);
Posted by: Guest on April-24-2021

Code answers related to "how to make panel scrollable c#"

C# Answers by Framework

Browse Popular Code Answers by Language