我已将图标设置为用于我的应用程序,但我的表单上仍然有默认图标。如何选择其图标作为应用程序的图标?请帮忙
答案 0 :(得分:7)
设置应用程序的图标应该转移到所有窗口,除非被覆盖。
您可能正在通过Visual Studio运行该应用程序,在这种情况下,您将运行vshost.exe
。尝试直接从Release目录运行您的应用程序,您应该会在Windows中看到该图标。
答案 1 :(得分:7)
您需要明确设置窗口的图标,如
<Window x:Class="FFTP.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow"
Icon="App.ico">
.
.
.
</Window>