예제 #1
0
        public static void OpenPrestigeCustomizationsVerticalViewer()
        {
            logger.Trace("Open Prestige Customizations vertical viewer");
            PrestigeCustomizationViewerVertical viewer = new PrestigeCustomizationViewerVertical(Client.PrestigeCustomizationsViewerAdmin, true);

            viewer.Show();
            Application.Current.Dispatcher.BeginInvoke(System.Windows.Threading.DispatcherPriority.Normal, new Action(() => viewer.Activate()));
        }
예제 #2
0
        public void OpenBordersForm(Profil window)
        {
            Client.Send(PacketType.LoadBorders, new StandardClientLoadBorders());

            /*BordersHandle form = new BordersHandle(Client.BordersHandleAdmin);
             * form.Show();*/

            PrestigeCustomizationViewerVertical viewer = new PrestigeCustomizationViewerVertical(Client.PrestigeCustomizationsViewerAdmin, false);

            viewer.Show();
            Application.Current.Dispatcher.BeginInvoke(System.Windows.Threading.DispatcherPriority.Normal, new Action(() => viewer.Activate()));
        }