Comment changer l'image de la barre de titre (l'icône la plus en haut à gauche) dans WPF ?
Réponses
Trop de publicités?
Praveen Gopal
Points
461
Un moyen facile d'ajouter une image à la barre de titre :
Dans votre projet, Sélectionnez - Propriétés - Application - Ressources - Icône et manifeste - sélectionnez l'image .ico (convertissez toujours votre image en .ico)
Ajoutez cette ligne (icône) dans la fenêtre principale de WPF :
Title="xxxxx" **Icon="xxxxxx.ico"**>
J. Vermeire
Points
1216
<Window
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="SDKSample.MainWindow"
Icon="WPFIcon1.ico">
</Window>
ou en code
// Set an icon using code
Uri iconUri = new Uri("pack://application:,,,/WPFIcon2.ico", UriKind.RelativeOrAbsolute);
this.Icon = BitmapFrame.Create(iconUri);
Source : propriété Window.Icon
mgear
Points
714
gap
Points
187