少し恥ずかしいですが、私は wpf に非常に慣れていません。ウィンドウ全体で移動およびドラッグできる親ウィンドウ内に子ウィンドウを実装したいと考えています。今まで多くのブログを見てきましたが、それらはすべて非常に複雑で複雑であり、コードをその中に展開するのは簡単ではありません. ここでは、簡単な方法で実装しようとしましたが、
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>
投稿やウェブサイトを参照しないでください。子ウィンドウを実装する小さなデモ xaml および xaml.cs ファイルを提供するだけです。