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

Want the Page Name to be in black color

1 Answer 137 Views
PageView
This is a migrated thread and some comments may be shown as answers.
Divya
Top achievements
Rank 1
Divya asked on 31 Mar 2011, 11:53 AM
Hi,
            I am using PageView control in that i have used Strip mode in that i have added 5pages i want the page name to be in black .Please refer the screenshot .In the screen the page names overview,Details,Allocations etc should be in black but by default i am getting in blue ,i have even tried  by setting forecolor but no effect.So please can anyone help me how i can do it.....


Thanks
Divya

1 Answer, 1 is accepted

Sort by
0
Accepted
Richard Slade
Top achievements
Rank 2
answered on 31 Mar 2011, 12:04 PM
Hello,

to do this, set the ForeColor of the Item on the RadPageViewPage.

E.g.
foreach (RadPageViewPage page in this.radPageView1.Pages)
{
    page.Item.ForeColor = Color.Black;
}

Or, you could build your own custom theme using the Visual Style Builder.
Hope that helps
Richard
Tags
PageView
Asked by
Divya
Top achievements
Rank 1
Answers by
Richard Slade
Top achievements
Rank 2
Share this question
or