This question is locked. New answers and comments are not allowed.
Hi.
Checking your samples, like
http://demos.telerik.com/silverlight/#Window/Customization - it adds floating, dragable windows in code:
How can I get same floating, movable Window in parent page XAML (Example.xaml in this case), like
this ^^ XAML gives me a fixed non-movable window positioned in top-left corner
TIA
Checking your samples, like
http://demos.telerik.com/silverlight/#Window/Customization - it adds floating, dragable windows in code:
CustomizationWindow window =
new
CustomizationWindow();
window.Show();
How can I get same floating, movable Window in parent page XAML (Example.xaml in this case), like
<
telerik:RadWindow
WindowStartupLocation
=
"CenterOwner"
ResizeMode
=
"CanMinimize"
CanMove
=
"True"
Width
=
"100"
Height
=
"100"
>
</
telerik:RadWindow
>
TIA