TpTrayUtility.Components.TpScrollBar.TpScrollBar C# (CSharp) Method

TpScrollBar() public method

public TpScrollBar ( Style st ) : System
st Style
return System
		public TpScrollBar(Style st)
		{
			repeatClickTimer.Tick += repeatClickTimer_Tick;
			repeatClickTimer.Stop();

			style = st;

			Size = st == Style.Vertical ? new Size(20, 100) : new Size(100, 20);

			DoubleBuffered = true;
		}