@@ -315,16 +315,7 @@ public event RoutedEventHandler MinimizeClicked
315
315
/// </summary>
316
316
public Action < TitleBar , Window > MinimizeActionOverride { get ; set ; } = null ;
317
317
318
- private Window ParentWindow
319
- {
320
- get
321
- {
322
- if ( _parent == null )
323
- _parent = Window . GetWindow ( this ) ;
324
-
325
- return _parent ;
326
- }
327
- }
318
+ private Window ParentWindow => _parent ??= Window . GetWindow ( this ) ;
328
319
329
320
/// <summary>
330
321
/// Creates a new instance of the class and sets the default <see cref="FrameworkElement.Loaded"/> event.
@@ -342,9 +333,7 @@ public TitleBar()
342
333
public void ResetIcon ( )
343
334
{
344
335
if ( _notifyIcon != null )
345
- {
346
336
_notifyIcon . Destroy ( ) ;
347
- }
348
337
349
338
InitializeNotifyIcon ( ) ;
350
339
}
@@ -366,10 +355,7 @@ private void CloseWindow()
366
355
367
356
private void MinimizeWindow ( )
368
357
{
369
- if ( MinimizeToTray && UseNotifyIcon && MinimizeWindowToTray ( ) )
370
- {
371
- return ;
372
- }
358
+ if ( MinimizeToTray && UseNotifyIcon && MinimizeWindowToTray ( ) ) return ;
373
359
374
360
if ( MinimizeActionOverride != null )
375
361
{
@@ -404,10 +390,7 @@ private void MaximizeWindow()
404
390
405
391
private void InitializeNotifyIcon ( )
406
392
{
407
- if ( DesignerProperties . GetIsInDesignMode ( new DependencyObject ( ) ) )
408
- {
409
- return ;
410
- }
393
+ if ( DesignerProperties . GetIsInDesignMode ( new DependencyObject ( ) ) ) return ;
411
394
412
395
NotifyIconClick += OnNotifyIconClick ;
413
396
@@ -427,9 +410,7 @@ private void InitializeNotifyIcon()
427
410
private bool MinimizeWindowToTray ( )
428
411
{
429
412
if ( _notifyIcon == null )
430
- {
431
413
return false ;
432
- }
433
414
434
415
ParentWindow . WindowState = WindowState . Minimized ;
435
416
ParentWindow . Hide ( ) ;
@@ -439,15 +420,9 @@ private bool MinimizeWindowToTray()
439
420
440
421
private void OnNotifyIconClick ( object sender , RoutedEventArgs e )
441
422
{
442
- if ( ! MinimizeToTray )
443
- {
444
- return ;
445
- }
423
+ if ( ! MinimizeToTray ) return ;
446
424
447
- if ( ParentWindow . WindowState != WindowState . Minimized )
448
- {
449
- return ;
450
- }
425
+ if ( ParentWindow . WindowState != WindowState . Minimized ) return ;
451
426
452
427
ParentWindow . Show ( ) ;
453
428
ParentWindow . WindowState = WindowState . Normal ;
@@ -460,10 +435,7 @@ private void OnNotifyIconClick(object sender, RoutedEventArgs e)
460
435
461
436
private void InitializeSnapLayout ( System . Windows . Controls . Button maximizeButton )
462
437
{
463
- if ( ! Common . SnapLayout . IsSupported ( ) )
464
- {
465
- return ;
466
- }
438
+ if ( ! Common . SnapLayout . IsSupported ( ) ) return ;
467
439
468
440
_snapLayout = new Common . SnapLayout ( ) ;
469
441
_snapLayout . Register ( ParentWindow , maximizeButton ) ;
@@ -472,18 +444,14 @@ private void InitializeSnapLayout(System.Windows.Controls.Button maximizeButton)
472
444
private void TitleBar_Loaded ( object sender , RoutedEventArgs e )
473
445
{
474
446
if ( UseNotifyIcon )
475
- {
476
447
InitializeNotifyIcon ( ) ;
477
- }
478
448
479
449
// It may look ugly, but at the moment it works surprisingly well
480
450
481
451
var maximizeButton = ( System . Windows . Controls . Button ) Template . FindName ( "ButtonMaximize" , this ) ;
482
452
483
453
if ( maximizeButton != null && UseSnapLayout )
484
- {
485
454
InitializeSnapLayout ( maximizeButton ) ;
486
- }
487
455
488
456
var rootGrid = ( System . Windows . Controls . Grid ) Template . FindName ( "RootGrid" , this ) ;
489
457
@@ -494,20 +462,15 @@ private void TitleBar_Loaded(object sender, RoutedEventArgs e)
494
462
}
495
463
496
464
if ( ParentWindow != null )
497
- {
498
465
ParentWindow . StateChanged += ParentWindow_StateChanged ;
499
- }
500
466
}
501
467
502
468
private void ParentWindow_StateChanged ( object sender , EventArgs e )
503
469
{
504
- if ( ParentWindow != null )
505
- {
506
- if ( IsMaximized != ( ParentWindow . WindowState == WindowState . Maximized ) )
507
- {
508
- IsMaximized = ParentWindow . WindowState == WindowState . Maximized ;
509
- }
510
- }
470
+ if ( ParentWindow == null ) return ;
471
+
472
+ if ( IsMaximized != ( ParentWindow . WindowState == WindowState . Maximized ) )
473
+ IsMaximized = ParentWindow . WindowState == WindowState . Maximized ;
511
474
}
512
475
513
476
private void RootGrid_MouseDown ( object sender , MouseButtonEventArgs e )
@@ -533,9 +496,7 @@ private void RootGrid_MouseDown(object sender, MouseButtonEventArgs e)
533
496
private void RootGrid_MouseLeftButtonDown ( object sender , MouseButtonEventArgs e )
534
497
{
535
498
if ( e . ClickCount == 2 )
536
- {
537
499
MaximizeWindow ( ) ;
538
- }
539
500
}
540
501
541
502
private void TemplateButton_OnClick ( TitleBar sender , object parameter )
@@ -565,10 +526,7 @@ private static void NotifyIconTooltip_OnChanged(DependencyObject d, DependencyPr
565
526
{
566
527
if ( d is not TitleBar titleBar ) return ;
567
528
568
- if ( ! titleBar . UseNotifyIcon )
569
- {
570
- return ;
571
- }
529
+ if ( ! titleBar . UseNotifyIcon ) return ;
572
530
573
531
titleBar . ResetIcon ( ) ;
574
532
}
@@ -578,13 +536,9 @@ private static void UseNotifyIcon_OnChanged(DependencyObject d, DependencyProper
578
536
if ( d is not TitleBar titleBar ) return ;
579
537
580
538
if ( titleBar . UseNotifyIcon )
581
- {
582
539
titleBar . ResetIcon ( ) ;
583
- }
584
540
else
585
- {
586
541
titleBar . _notifyIcon . Destroy ( ) ;
587
- }
588
542
}
589
543
590
544
private static void NotifyIconMenu_OnChanged ( DependencyObject d , DependencyPropertyChangedEventArgs e )
0 commit comments