我实际上正在学习如何通过 Microsoft Visual Studio Express 2013 for windows desktop 创建一个新的 WPF 应用程序。选择 WPF 应用程序并为新项目命名后,我收到了两个选项卡 - MainWindow.xaml 和 MainWindow.xaml.cs。
但是,我没有看到可以插入按钮、标签等的对话框(或 Canvas),而是 MainWindow.xaml 中的以下代码。
<Window x:Class="WpfEvents.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525">
<Grid>
</Grid>
</Window>
就是这样。我还注意到工具箱中没有可以拖动按钮或标签或其他控件来组成表单的选项。
我不确定我是否仅仅因为没有付费而无法获得这些功能。实际上,我只是将 Microsoft 网站上的 Visual Studio Express 安装到了我的 Windows 7 Pro 上。对我来说,它看起来像一个免费软件。
先感谢您