Center a Window to Screen : Window « Windows Presentation Foundation « C# / C Sharp






Center a Window to Screen

Center a Window to Screen
   
<Window x:Class="Windows.CenterScreen"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="CenterScreen" Height="300" Width="300"
    >
  <Button Margin="15" Click="cmdCenter_Click">Center Me</Button>
</Window>
//File:Window.xaml.cs
using System;
using System.Collections.Generic;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;
using System.ComponentModel;

namespace Windows
{
    public partial class CenterScreen : System.Windows.Window
    {
        public CenterScreen()
        {
            InitializeComponent();
        }

        private void cmdCenter_Click(object sender, RoutedEventArgs e)
        {            
            double height = SystemParameters.WorkArea.Height;
            double width = SystemParameters.WorkArea.Width;            
            this.Top = (height - this.Height) / 2;            
            this.Left = (width - this.Width) / 2;            
         
        }
    }
}

   
    
    
  








Related examples in the same category

1.Basic DialogBoxBasic DialogBox
2.Window ResizeMode=CanMinimizeWindow ResizeMode=CanMinimize
3.Window BackgroundWindow Background
4.Set Window Height and WidthSet Window Height and Width
5.Control the Size of UI Elements in a FormControl the Size of UI Elements in a Form
6.Define the Tab Order of UI Elements in a FormDefine the Tab Order of UI Elements in a Form
7.About DialogAbout Dialog
8.About Dialog - Font Properties on RootAbout Dialog - Font Properties on Root
9.Window mouse down eventWindow mouse down event
10.Window Preview mouse down eventWindow Preview mouse down event
11.Window mouse up eventWindow mouse up event
12.Window OwnershipWindow Ownership
13.Launch a window with defined XAMLLaunch a window with defined XAML
14.Hosting a Windows Forms Property Grid in WPFHosting a Windows Forms Property Grid in WPF
15.Window.DragMoveWindow.DragMove
16.Window.CommandBindingsWindow.CommandBindings
17.Create a non-rectangular windowCreate a non-rectangular window
18.Order of precedence for sizing-related properties that are implemented by Window.Order of precedence for sizing-related properties that are implemented by Window.
19.Use Window Activated and Deactivated event to control a media fileUse Window Activated and Deactivated event to control a media file
20.Custom Element Binding WindowCustom Element Binding Window
21.ShutdownMode.OnLastWindowCloseShutdownMode.OnLastWindowClose
22.Window Loaded eventWindow Loaded event
23.Transparent WindowTransparent Window
24.Animated Video WindowAnimated Video Window
25.Close a window with Escape key pressedClose a window with Escape key pressed
26.Use WindowState to make full screen window, change resize mode to NoReSize
27.Window Closing and Closed eventWindow Closing and Closed event
28.Creating the main panel and add to Window in CodeCreating the main panel and add to Window in Code
29.Is Window activeIs Window active
30.Load the Data for a Window Asynchronously After It Has RenderedLoad the Data for a Window Asynchronously After It Has Rendered
31.Change window cursorChange window cursor
32.Show window based on button nameShow window based on button name
33.Listen to Window loaded eventListen to Window loaded event
34.Create Window and add window closing event handlerCreate Window and add window closing event handler
35.Activate window, close window, bring window to frontActivate window, close window, bring window to front
36.Do not handle events until Window is fully initialized.Do not handle events until Window is fully initialized.
37.Retrieving the mouse position relative to controls on a WindowRetrieving the mouse position relative to controls on a Window
38.Window On Mouse move eventWindow On Mouse move event
39.Window On Mouse up eventWindow On Mouse up event
40.Display window as dialogDisplay window as dialog
41.Load resource from Window ResourcesLoad resource from Window Resources
42.Windows Transparent BackgroundWindows Transparent Background
43.Save Window Position to RegistrySave Window Position to Registry
44.Window Preview Key EventsWindow Preview Key Events
45.Non-Rectangular windowNon-Rectangular window
46.Set a Default ButtonSet a Default Button
47.Use the Grid to create a dialog box that uses the WPF layout APIUse the Grid to create a dialog box that uses the WPF layout API
48.ShowInTaskbar = false
49.SizeToContent=WidthAndHeight
50.ResizeMode=CanResizeWithGrip
51.Set the DataContext of a Window to a person objectSet the DataContext of a Window to a person object
52.DataContext with user defined object
53.Find owner window