mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-02 18:17:09 +02:00
* UI layout v2. All controls now act like containers. Moved anchor/margin layout model to LayoutContainer Implement basic WPF-like attached properties for the above LayoutContainer. * Fix VV.
10 lines
187 B
C#
10 lines
187 B
C#
namespace Robust.Client.UserInterface.Controls
|
|
{
|
|
public class VScrollBar : ScrollBar
|
|
{
|
|
public VScrollBar() : base(OrientationMode.Vertical)
|
|
{
|
|
}
|
|
}
|
|
}
|