This is a migrated thread and some comments may be shown as answers.

Right to Left All Items radRibbonbar Form (Normal Form)

6 Answers 96 Views
RibbonBar
This is a migrated thread and some comments may be shown as answers.
saeid
Top achievements
Rank 1
saeid asked on 02 Feb 2017, 09:31 AM

Right to Left All Items radRibbonbar Form (Normal Form):

 

Hi 

6 Answers, 1 is accepted

Sort by
0
saeid
Top achievements
Rank 1
answered on 02 Feb 2017, 09:46 AM

Hi,

I'm Create New Project With Telerik Win Form:

After Open Form I'm change All Items Right To Left radRibbonForm, and run form, after running Deactivate Start Menu 

ribbonbar properties:

RighttoLeft: True

RightToLeft Layout: True

please, see my atachment.

0
Hristo
Telerik team
answered on 02 Feb 2017, 12:31 PM
Hi Saeid,

Thank you for writing.

Currently, RadForm and RadRibbonForm do not support the RightToLeftLayout property. Please refer to the following feedback items:  I have also added votes on your behalf to these requests. Additionally, you can also subscribe to them and be updated with their status changes.

I hope this helps. Should you have further questions please do not hesitate to write back.

Regards,
Hristo
Telerik by Progress
Try our brand new, jQuery-free Angular 2 components built from ground-up which deliver the business app essential building blocks - a grid component, data visualization (charts) and form elements.
0
saeid
Top achievements
Rank 1
answered on 02 Feb 2017, 01:06 PM

Hi,

I could not answer question.

I could not answer your question
Is there an exact solution.
I'm still not done coding operations.
Only form right to left done.

I want to use from the menu. But when I am right to left layout: true , Main menu will be disabled.

0
saeid
Top achievements
Rank 1
answered on 02 Feb 2017, 02:05 PM

Hi,

Please Help Me,

See my attachments, what the Lock with new project????

0
Hristo
Telerik team
answered on 03 Feb 2017, 09:29 AM
Hello Saeid,

Thank you for writing back.

Please note that the RightToLeftLayout property is not supported, you can refer to the feature request I previously sent you. In this respect, because of the missing functionality, there is no workaround solution.

If it fits your local setup, you can only set the RightToLeft property of the form to Yes and its AllowAero property to false. This way you will end up with a right-to-left layout of the title bar and the ribbon: 
public partial class RadRibbonForm1 : Telerik.WinControls.UI.RadRibbonForm
{
    public RadRibbonForm1()
    {
        InitializeComponent();
 
        this.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
        this.AllowAero = false;
    }
}

Your other question does not appear to be related to our suite. Your project appears to be under source control, so please check the following threads discussing a similar setup: 
I hope this information was useful. Should you have further questions please do not hesitate to write back.

Regards,
Hristo
Telerik by Progress
Try our brand new, jQuery-free Angular 2 components built from ground-up which deliver the business app essential building blocks - a grid component, data visualization (charts) and form elements.
0
saeid
Top achievements
Rank 1
answered on 03 Feb 2017, 07:07 PM

Hi Hristo,

The code was responsible for my work thanks.

Tags
RibbonBar
Asked by
saeid
Top achievements
Rank 1
Answers by
saeid
Top achievements
Rank 1
Hristo
Telerik team
Share this question
or