프로젝트

일반

사용자정보

개정판 b9b01f8e

IDb9b01f8e834ca2aaaa9de488208280925250d93f
상위 8c062d19
하위 060501e2

이지연이(가) 약 6년 전에 추가함

issue #811 Print, Export, message Dialog창이 상단으로 오지 않는 현상

차이점 보기:

KCOM/Controls/PrintControl.xaml.cs
173 173
        public PrintControl(string TileSourceUri, string ProjectNo, DOCINFO DocInfo, List<IKCOM.MarkupInfoItem> markupInfo, int CurrentPageNo, string slip, string title, string fileurl, bool isPrint)
174 174
        {
175 175
            InitializeComponent();
176

  
176
            
177 177
            this.IsEnabled = true;
178 178

  
179 179
            //Layer Control을 통째로 가져와야 하는건가
......
473 473
            {
474 474
                RadWindow.Alert(new DialogParameters
475 475
                {
476
                    Owner = Application.Current.MainWindow,
476 477
                    Theme = new VisualStudio2013Theme(),
477 478
                    Header = "안내",
478 479
                    Content = "페이지가 지정되지 않았습니다."
......
520 521
                this.printIndy.IsBusy = false;
521 522
                RadWindow.Alert(new DialogParameters
522 523
                {
524
                    Owner = Application.Current.MainWindow,
523 525
                    Theme = new VisualStudio2013Theme(),
524 526
                    Header = "안내",
525 527
                    Content = "페이지가 지정되지 않았습니다.",
KCOM/Controls/Symbol.xaml.cs
191 191

  
192 192
            DialogParameters parameters = new DialogParameters()
193 193
            {
194
                Owner = Application.Current.MainWindow,
194 195
                Content = box,
195 196
                Header = header,
196 197
                Theme = new VisualStudio2013Theme(),
......
232 233
                }
233 234
                DialogParameters parameters = new DialogParameters()
234 235
                {
236
                    Owner = Application.Current.MainWindow,
235 237
                    Closed = (obj, args) => this.MarkupNamePromptClose(MarkupData, args), 
236 238
                    DefaultPromptResultValue = "Custom State",
237 239
                    Content = "Name :",
......
390 392

  
391 393
            DialogParameters parameters = new DialogParameters()
392 394
            {
395
                Owner = Application.Current.MainWindow,
393 396
                Closed = (obj, args) => this.MarkupReNamePromptClose("", args),
394 397
                //DefaultPromptResultValue = "Custom State",
395 398
                DefaultPromptResultValue = (lstSymbolPrivate.SelectedItem as Symbol_Custom).Name,
......
414 417

  
415 418
            DialogParameters parameters = new DialogParameters()
416 419
            {
420
                Owner = Application.Current.MainWindow,
417 421
                Closed = (obj, args) => this.MarkupReNamePromptClose("", args),
418 422
                //DefaultPromptResultValue = "Custom State",
419 423
                DefaultPromptResultValue = (lstSymbolPublic.SelectedItem as Symbol_Custom).Name,
KCOM/Events/Implementation/TopMenuEvent.cs
600 600
            PrintWindow.WindowStartupLocation = System.Windows.WindowStartupLocation.CenterScreen;
601 601
            PrintWindow.Background = new SolidColorBrush(Colors.Black);
602 602
            PrintWindow.Background.Opacity = 0.6;
603

  
603
            PrintWindow.Owner = Application.Current.MainWindow;
604 604
            Telerik.Windows.Controls.StyleManager.SetTheme(PrintWindow, new Telerik.Windows.Controls.VisualStudio2013Theme());
605 605
            PrintWindow.ShowDialog();
606 606
        }
......
1284 1284
                {
1285 1285
                    RadWindow.Alert(new DialogParameters
1286 1286
                    {
1287
                        Owner = Application.Current.MainWindow,
1287 1288
                        Theme = new VisualStudio2013Theme(),
1288 1289
                        Header = "안내",
1289 1290
                        Content = "페이지 번호를 정확하게 입력해 주세요",
......
1307 1308
                {
1308 1309
                    RadWindow.Alert(new DialogParameters
1309 1310
                    {
1311
                        Owner = Application.Current.MainWindow,
1310 1312
                        Theme = new VisualStudio2013Theme(),
1311 1313
                        Header = "안내",
1312 1314
                        Content = "페이지 번호를 정확하게 입력해 주세요",
......
1374 1376
            };
1375 1377
            StyleManager.SetTheme(PanoramaPop, new VisualStudio2013Theme());
1376 1378
            //CheckPop.ShowDialog();
1379
            PanoramaPop.Owner = Application.Current.MainWindow;
1377 1380
            PanoramaPop.Show();
1378 1381
        }
1379 1382

  
......
1410 1413
                };
1411 1414
                StyleManager.SetTheme(CheckPop, new Office2013Theme());
1412 1415
                CheckPop.Closed += CheckPop_Closed;
1413
                
1416
                //CheckPop.Owner = Application.Current.MainWindow;
1414 1417
                //CheckPop.ShowDialog();
1415 1418
                CheckPop.Show();
1416 1419
            }
......
1455 1458
            {
1456 1459
                RadWindow.Alert(new DialogParameters
1457 1460
                {
1461
                    Owner = Application.Current.MainWindow,
1458 1462
                    Theme = new VisualStudio2013Theme(),
1459 1463
                    Header = "안내",
1460 1464
                    Content = "페이지 번호를 정확하게 입력해 주세요",
KCOM/MainWindow.xaml.cs
54 54

  
55 55
            Telerik.Windows.Controls.DialogParameters parameters = new Telerik.Windows.Controls.DialogParameters()
56 56
            {
57
                Owner = Application.Current.MainWindow,
57 58
                Content = box,
58 59
                Header = header,
59 60
                Theme = new Telerik.Windows.Controls.VisualStudio2013Theme(),
......
322 323

  
323 324
                                DialogParameters parameters = new DialogParameters()
324 325
                                {
326
                                    Owner = Application.Current.MainWindow,
325 327
                                    Content = box,
326 328
                                    Header = "Confirm",
327 329
                                    Theme = new VisualStudio2013Theme(),
......
357 359
            {
358 360
                case 0x0024:
359 361
                    WmGetMinMaxInfo(hwnd, lParam);
360
                    handled = true;
362
                    handled = true;                      
361 363
                    break;
362 364
            }
363 365
            return (System.IntPtr)0;
KCOM/Messenger/ConversationView.xaml.cs
44 44
            {
45 45
                DialogParameters parameters = new DialogParameters()
46 46
                {
47
                    Owner = Application.Current.MainWindow,
47 48
                    Closed = (obj, args) => this.MarkupNameUpdatePromptClose(args),
48 49
                    Content = "메모 :",
49 50
                    Header = "앵커에 대한 메모을 남겨주세요",
KCOM/Services/BaseServices.cs
445 445
            {
446 446
                RadWindow.Confirm(new DialogParameters
447 447
                {
448
                    Owner = Application.Current.MainWindow,
448 449
                    Header = "안내",
449 450
                    Content = "동일한 사용자 데이터가 두개 이상 선택됩니다. Consolidation을 선택할까요?",
450 451
                    Closed = new EventHandler<WindowClosedEventArgs>((sen, ea) =>
KCOM/Views/MainMenu.xaml.cs
3336 3336
                {
3337 3337
                    RadWindow.Alert(new DialogParameters
3338 3338
                    {
3339
                        Owner = Application.Current.MainWindow,
3339 3340
                        Theme = new VisualStudio2013Theme(),
3340 3341
                        Header = "안내",
3341 3342
                        Content = "기존의 코멘트가 존재합니다. 사용자 리스트에서 먼저 선택해주세요",
......
5483 5484
                }
5484 5485
                DialogParameters parameters = new DialogParameters()
5485 5486
                {
5487
                    Owner = Application.Current.MainWindow,
5486 5488
                    Closed = (obj, args) => this.MarkupNamePromptClose(MarkupData, args),
5487 5489
                    DefaultPromptResultValue = "Custom State",
5488 5490
                    Content = "Name :",
......
5574 5576

  
5575 5577
            DialogParameters parameters = new DialogParameters()
5576 5578
            {
5579
                Owner = Application.Current.MainWindow,
5577 5580
                Content = box,
5578 5581
                Header = header,
5579 5582
                Theme = new VisualStudio2013Theme(),

내보내기 Unified diff

클립보드 이미지 추가 (최대 크기: 500 MB)