Skip to content

Commit 2ff8a5c

Browse files
committed
Cleanup TitleBar and prevent backward navigation according to lepoco#34
1 parent 2a2390e commit 2ff8a5c

File tree

5 files changed

+29
-61
lines changed

5 files changed

+29
-61
lines changed

WPFUI/Common/IRelayCommand.cs

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
using System.Windows.Input;
1+
// This Source Code Form is subject to the terms of the MIT License.
2+
// If a copy of the MIT was not distributed with this file, You can obtain one at https://opensource.org/licenses/MIT.
3+
// Copyright (C) Leszek Pomianowski and WPF UI Contributors.
4+
// All Rights Reserved.
5+
6+
using System.Windows.Input;
27

38
namespace WPFUI.Common
49
{

WPFUI/Controls/Interfaces/INavigationItem.cs

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
using System;
1+
// This Source Code Form is subject to the terms of the MIT License.
2+
// If a copy of the MIT was not distributed with this file, You can obtain one at https://opensource.org/licenses/MIT.
3+
// Copyright (C) Leszek Pomianowski and WPF UI Contributors.
4+
// All Rights Reserved.
5+
6+
using System;
27
using System.ComponentModel;
38
using System.Windows;
49

WPFUI/Controls/Navigation.cs

+4
Original file line numberDiff line numberDiff line change
@@ -407,6 +407,10 @@ private void Frame_OnNavigating(object sender, NavigatingCancelEventArgs e)
407407
if (e.Content == null) return;
408408

409409
Frame.NavigationService.RemoveBackEntry();
410+
411+
// TODO: Nothing is more permanent than temporary fixes... However, navigate using internal methods
412+
if (e.NavigationMode == NavigationMode.Back)
413+
e.Cancel = true;
410414
}
411415

412416
#endregion

WPFUI/Controls/TitleBar.cs

+11-57
Original file line numberDiff line numberDiff line change
@@ -315,16 +315,7 @@ public event RoutedEventHandler MinimizeClicked
315315
/// </summary>
316316
public Action<TitleBar, Window> MinimizeActionOverride { get; set; } = null;
317317

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);
328319

329320
/// <summary>
330321
/// Creates a new instance of the class and sets the default <see cref="FrameworkElement.Loaded"/> event.
@@ -342,9 +333,7 @@ public TitleBar()
342333
public void ResetIcon()
343334
{
344335
if (_notifyIcon != null)
345-
{
346336
_notifyIcon.Destroy();
347-
}
348337

349338
InitializeNotifyIcon();
350339
}
@@ -366,10 +355,7 @@ private void CloseWindow()
366355

367356
private void MinimizeWindow()
368357
{
369-
if (MinimizeToTray && UseNotifyIcon && MinimizeWindowToTray())
370-
{
371-
return;
372-
}
358+
if (MinimizeToTray && UseNotifyIcon && MinimizeWindowToTray()) return;
373359

374360
if (MinimizeActionOverride != null)
375361
{
@@ -404,10 +390,7 @@ private void MaximizeWindow()
404390

405391
private void InitializeNotifyIcon()
406392
{
407-
if (DesignerProperties.GetIsInDesignMode(new DependencyObject()))
408-
{
409-
return;
410-
}
393+
if (DesignerProperties.GetIsInDesignMode(new DependencyObject())) return;
411394

412395
NotifyIconClick += OnNotifyIconClick;
413396

@@ -427,9 +410,7 @@ private void InitializeNotifyIcon()
427410
private bool MinimizeWindowToTray()
428411
{
429412
if (_notifyIcon == null)
430-
{
431413
return false;
432-
}
433414

434415
ParentWindow.WindowState = WindowState.Minimized;
435416
ParentWindow.Hide();
@@ -439,15 +420,9 @@ private bool MinimizeWindowToTray()
439420

440421
private void OnNotifyIconClick(object sender, RoutedEventArgs e)
441422
{
442-
if (!MinimizeToTray)
443-
{
444-
return;
445-
}
423+
if (!MinimizeToTray) return;
446424

447-
if (ParentWindow.WindowState != WindowState.Minimized)
448-
{
449-
return;
450-
}
425+
if (ParentWindow.WindowState != WindowState.Minimized) return;
451426

452427
ParentWindow.Show();
453428
ParentWindow.WindowState = WindowState.Normal;
@@ -460,10 +435,7 @@ private void OnNotifyIconClick(object sender, RoutedEventArgs e)
460435

461436
private void InitializeSnapLayout(System.Windows.Controls.Button maximizeButton)
462437
{
463-
if (!Common.SnapLayout.IsSupported())
464-
{
465-
return;
466-
}
438+
if (!Common.SnapLayout.IsSupported()) return;
467439

468440
_snapLayout = new Common.SnapLayout();
469441
_snapLayout.Register(ParentWindow, maximizeButton);
@@ -472,18 +444,14 @@ private void InitializeSnapLayout(System.Windows.Controls.Button maximizeButton)
472444
private void TitleBar_Loaded(object sender, RoutedEventArgs e)
473445
{
474446
if (UseNotifyIcon)
475-
{
476447
InitializeNotifyIcon();
477-
}
478448

479449
// It may look ugly, but at the moment it works surprisingly well
480450

481451
var maximizeButton = (System.Windows.Controls.Button)Template.FindName("ButtonMaximize", this);
482452

483453
if (maximizeButton != null && UseSnapLayout)
484-
{
485454
InitializeSnapLayout(maximizeButton);
486-
}
487455

488456
var rootGrid = (System.Windows.Controls.Grid)Template.FindName("RootGrid", this);
489457

@@ -494,20 +462,15 @@ private void TitleBar_Loaded(object sender, RoutedEventArgs e)
494462
}
495463

496464
if (ParentWindow != null)
497-
{
498465
ParentWindow.StateChanged += ParentWindow_StateChanged;
499-
}
500466
}
501467

502468
private void ParentWindow_StateChanged(object sender, EventArgs e)
503469
{
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;
511474
}
512475

513476
private void RootGrid_MouseDown(object sender, MouseButtonEventArgs e)
@@ -533,9 +496,7 @@ private void RootGrid_MouseDown(object sender, MouseButtonEventArgs e)
533496
private void RootGrid_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
534497
{
535498
if (e.ClickCount == 2)
536-
{
537499
MaximizeWindow();
538-
}
539500
}
540501

541502
private void TemplateButton_OnClick(TitleBar sender, object parameter)
@@ -565,10 +526,7 @@ private static void NotifyIconTooltip_OnChanged(DependencyObject d, DependencyPr
565526
{
566527
if (d is not TitleBar titleBar) return;
567528

568-
if (!titleBar.UseNotifyIcon)
569-
{
570-
return;
571-
}
529+
if (!titleBar.UseNotifyIcon) return;
572530

573531
titleBar.ResetIcon();
574532
}
@@ -578,13 +536,9 @@ private static void UseNotifyIcon_OnChanged(DependencyObject d, DependencyProper
578536
if (d is not TitleBar titleBar) return;
579537

580538
if (titleBar.UseNotifyIcon)
581-
{
582539
titleBar.ResetIcon();
583-
}
584540
else
585-
{
586541
titleBar._notifyIcon.Destroy();
587-
}
588542
}
589543

590544
private static void NotifyIconMenu_OnChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)

WPFUI/Theme/Manager.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public static class Manager
1919
{
2020
private const string LibraryNamespace = "wpfui;";
2121

22-
private const string LibraryUri = "pack://application:,,,/WPFUI;component/Styles/Theme/";
22+
private const string LibraryThemeDictionariesUri = "pack://application:,,,/WPFUI;component/Styles/Theme/";
2323

2424
/// <summary>
2525
/// Determines whether the system is currently set to hight contrast mode.
@@ -73,7 +73,7 @@ public static void Switch(Style theme, bool useMica = false, bool updateAccent =
7373
if (updateAccent)
7474
ChangeAccentColor(SystemTheme.GetColor(), theme, true);
7575

76-
bool isUpdated = appDictionaries.UpdateDictionary("theme", new Uri(LibraryUri + StyleFormat.GetInternalName(theme) + ".xaml", UriKind.Absolute));
76+
bool isUpdated = appDictionaries.UpdateDictionary("theme", new Uri(LibraryThemeDictionariesUri + StyleFormat.GetInternalName(theme) + ".xaml", UriKind.Absolute));
7777

7878
if (!isUpdated) return;
7979

0 commit comments

Comments
 (0)