Well its been little embarrassing ,but i am very new to wpf . and i want to implement a child window inside a parent window,which is movable and dragable inside the whole window. till now i have seen many blogs but all of them are very complicated and complex and its not easy to deploy my codes within it. here i have tried to implement in simple manner,
xaml:
<Window x:Class="Project_Explorer.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:wpfx="http://schemas.microsoft.com/winfx/2006/xaml/presentation/toolkit/extended"
Title="Project Explorer">
<Grid>
<wpfx:ChildWindow Name="PopupChildWindow" Caption="Child Window" Height="200" IsModal="True" Margin="105,0,0,47" Width="306" HorizontalAlignment="Left" VerticalAlignment="Bottom" / >
</Grid>
</window>
please don't refer me to any post or website. just give a small demo xaml and xaml.cs file which implements child window.