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

How to Append an Image in Rad Window

1 Answer 23 Views
Window
This is a migrated thread and some comments may be shown as answers.
Srini
Top achievements
Rank 1
Srini asked on 28 Aug 2009, 08:04 AM
Hi Friends,
  Can anybody help me to add Image in to a Rad Window When the popup created.

1 Answer, 1 is accepted

Sort by
0
Miroslav Nedyalkov
Telerik team
answered on 28 Aug 2009, 03:53 PM
Hello Srini,

Here is a small example how you can do that:
In XAML:
<telerikNavigation:RadWindow Header="Some header"
 <Image Source="Some_image_url" /> 
</telerikNavigation:RadWindow> 
In CS:
RadWindow window =  
 new RadWindow  
  {  
   Header = "Some header"
   Content = new Image 
    { 
     Source = new ImageSource(new Uri("Some_Image_Url", UriKind.Relative)) 
    } 
   }; 
window.Show(); 

Hope this helps.

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.
Tags
Window
Asked by
Srini
Top achievements
Rank 1
Answers by
Miroslav Nedyalkov
Telerik team
Share this question
or