好吧,这有点尴尬,但我对 wpf 很陌生。我想在父窗口内实现一个子窗口,它可以在整个窗口内移动和拖动。到目前为止,我已经看过很多博客,但它们都非常复杂和复杂,在其中部署我的代码并不容易。在这里,我尝试以简单的方式实现,
xml:
<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 文件。