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

Form Message TextAlignment in ColumnChooser

5 Answers 95 Views
GridView
This is a migrated thread and some comments may be shown as answers.
Alex
Top achievements
Rank 1
Alex asked on 08 Feb 2011, 08:01 AM
Hi there,

since the newest release the ColumnChooserFormMessage ist centered and not at the bottom of the Form. Is there a way to put the message back to the bottom?

Best regards,
Alexander

5 Answers, 1 is accepted

Sort by
0
Richard Slade
Top achievements
Rank 2
answered on 08 Feb 2011, 12:03 PM
Hello,

Please could you add a screenshot of what you would like to change as I am unsure of your requirement
thanks
Richard
0
Alex
Top achievements
Rank 1
answered on 08 Feb 2011, 01:50 PM
Hi,

the left side was the old Version, the right one is with Release 2010.3.10.1215. We want the text "Drag a column header from the grid..." at the bottom of the form...

thanks,
Alexander
0
Accepted
Richard Slade
Top achievements
Rank 2
answered on 08 Feb 2011, 02:36 PM
Hi Alex,

You can alter the position of the text in the following way

this.radGridView1.ColumnChooser.Shown += new EventHandler(ColumnChooser_Shown);

void ColumnChooser_Shown(object sender, EventArgs e)
{
    this.radGridView1.ColumnChooser.ColumnChooserControl.ColumnChooserElement.TextAlignment = ContentAlignment.BottomCenter;
}

Hope that helps
Richard
0
Alex
Top achievements
Rank 1
answered on 08 Feb 2011, 03:46 PM
yay... thanks...
0
Richard Slade
Top achievements
Rank 2
answered on 08 Feb 2011, 03:48 PM
Glad I could help.
All the best
Richard
Tags
GridView
Asked by
Alex
Top achievements
Rank 1
Answers by
Richard Slade
Top achievements
Rank 2
Alex
Top achievements
Rank 1
Share this question
or