All Products
Demos
Pricing
Services
Blogs
Docs & Support
Search
Shopping cart
Login
Contact Us
Get A Free Trial
close mobile menu
Telerik Forums
/
UI for Silverlight Forum
/
Window
/
RadWindow.Alert,Comfirm,Prompt theme
Cancel
Telerik UI for Silverlight
Resources
Buy
Try
Feed for this thread
3 posts, 1 answers
sofi sofi
19 posts
Member since:
Jul 2009
Posted 11 Sep 2009
Link to this post
Hi, Telerik!
I have a question: how can i change the default theme of RadWindow.Alert, RadWindow.Confirm?
Answer
Miroslav Nedyalkov
Admin
1718 posts
Posted 15 Sep 2009
Link to this post
Hi Sofi,
You can set the Theme property of the DialogParameters object you are passing to the method. Here is an example:
RadWindow.Alert(
new
DialogParameters
{
Header =
"Header"
,
Content =
"Content"
,
Theme =
new
SummerTheme()
});
Regards,
Miroslav Nedyalkov
the Telerik team
Instantly find answers to your questions on the new
Telerik Support Portal
.
Watch a
video
on how to optimize your support resource searches and
check out more tips
on the blogs.
sofi sofi
19 posts
Member since:
Jul 2009
Posted 15 Sep 2009
Link to this post
Thanks a lot, Miroslav!
Back to Top
Close