Je veux afficher ma fenêtre au dessus du TaskBar
L'heure de l'horloge de Windows.
Comment puis-je trouver l'emplacement du coin inférieur droit de mon bureau ?
J'utilise ce code qui fonctionne bien dans l'application Windows forms mais ne fonctionne pas correctement dans WPF :
var desktopWorkingArea = System.Windows.Forms.Screen.PrimaryScreen.WorkingArea;
this.Left = desktopWorkingArea.Right - this.Width;
this.Top = desktopWorkingArea.Bottom - this.Height;