Exemplo n.º 1
0
        public static void PopupMessage(string msg)
        {
            AlertWindow aw = new AlertWindow();

            //새창을 가운대로
            aw.Owner = Application.Current.MainWindow; // We must also set the owner for this to work.
            aw.WindowStartupLocation = WindowStartupLocation.CenterOwner;

            aw.Message = msg;
            aw.ShowDialog();
        }
Exemplo n.º 2
0
        public static void PopupMessage(string msg)
        {
            AlertWindow aw = new AlertWindow();

            //새창을 가운대로
            aw.Owner = Application.Current.MainWindow; // We must also set the owner for this to work.
            aw.WindowStartupLocation = WindowStartupLocation.CenterOwner;

            aw.Message = msg;
            aw.ShowDialog();
        }