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

Rad Window within Grid Area

1 Answer 48 Views
Window
This is a migrated thread and some comments may be shown as answers.
Carolyn
Top achievements
Rank 1
Carolyn asked on 14 May 2009, 04:06 PM
Hello,
     I have a RadWindow that I would like to Stay in one place within a Grid Column and not provide the ability to drag around the entire screen.  Is this possible?

Thanks.

1 Answer, 1 is accepted

Sort by
0
Miroslav Nedyalkov
Telerik team
answered on 16 May 2009, 10:58 AM
Hello Joe Dattilo,

Yes, you can do that. You just need to set the IsPinned property of the Window control to true and the ResizeMode property to NoResize. Here is the code for that:

<navigation:RadWindow x:Name="window" ResizeMode="NoResize" Header="Pinned window" 
        IsPinned="True" Left="50" Top="120"
    <Button Content="Window Content" Width="120" Height="60" /> 
</navigation:RadWindow> 
 
 


Regards,
Miroslav Nedyalkov
the Telerik team

Instantly find answers to your questions on the newTelerik Support Portal.
Check out the tipsfor optimizing your support resource searches.
Tags
Window
Asked by
Carolyn
Top achievements
Rank 1
Answers by
Miroslav Nedyalkov
Telerik team
Share this question
or