I am trying to make a WPF application that can slide from the edge of the right-most screen when you hit a button (like F8). This will be similar to the Windows Notification bar in windows 10.
I am struggling finding ways to make something similar. Any help would be greatly appreciated!
I am able to make a window with a given height, width, and make it stick to the right side of screen and top as such:
public MainWindow()
{
InitializeComponent();
Width = 300;
Height = System.Windows.SystemParameters.WorkArea.Height;
Left = System.Windows.SystemParameters.WorkArea.Width - Width;
Top = 0;
}