Completed
Last Updated: 14 May 2016 12:12 by ADMIN
ADMIN
George
Created on: 07 Apr 2014 14:31
Category:
Type: Bug Report
0
FIX. RadTrackBar - When adding a trackbar to a form and setting the Orientation to Vertical in the InitializeComponent or Load() the control is not loaded correctly
#1 Scenario: Drag and drop the RadTrackbar to form. Set the Orientation to Vertical. Run the project and you will see that control is not visible
public Form1()
{
    InitializeComponent();
    this.radTrackBar1.Orientation = Orientation.Vertical;
}





#2 Scenario:  Drag and drop the RadTrackbar to form. Set the Orientation to Vertical. Run the project and you will see that control is cut off
private void Form1_Load(object sender, EventArgs e)
{
    this.radTrackBar1.Orientation = Orientation.Vertical;
}
0 comments