所以首先没有名为 WPF Form 的项目,只有 WPF 的用户控件。因此,一旦在 XAML 中创建 WPF UserControl,您就会注意到这是代码
<UserControl x:Class="SQL_openertak2.ServerList"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
mc:Ignorable="d" d:DesignHeight="454" d:DesignWidth="259" SizeToContent="WidthAndHeight">
<Grid>
<ListBox Height="410" HorizontalAlignment="Left" Margin="12,12,0,0" Name="listBox1" VerticalAlignment="Top" Width="242" />
<Button Content="Button" Height="23" HorizontalAlignment="Left" Margin="12,427,0,0" Name="button1" VerticalAlignment="Top" Width="75" Click="button1_Click" />
</Grid>
</UserControl>
所以我查看了 XAML 代码。所以你可以看到整个事情是USERCONTROL
你必须将它更改为WINDOW然后你将能够看到.Show()
但请注意,您还必须更改 xaml.cs 中的代码
因为默认情况下会是这样
public partial class ServerList : UserControl
将其更改为
public partial class ServerList : Window
原因很明显!!:)