From 91adfd8e9e14b9719e51f4c5e2e06380b6f429cc Mon Sep 17 00:00:00 2001
From: Rose <83477269+AtariDreams@users.noreply.github.com>
Date: Tue, 14 Jun 2022 03:56:37 -0400
Subject: [PATCH] Run C# import cleanup based on the Solution files (#1838)
This is to make the style consistent with the rest of the project as well as removing unused imports.
---
src/Calculator/App.xaml.cs | 20 +--
src/Calculator/Calculator.csproj | 1 -
.../Common/AlwaysSelectedCollectionView.cs | 79 +++--------
src/Calculator/Common/AppLifecycleLogger.cs | 11 +-
.../Common/KeyboardShortcutManager.cs | 68 +++++----
src/Calculator/Common/ValidatingConverters.cs | 3 +-
src/Calculator/Common/ViewState.cs | 17 ---
src/Calculator/Controls/CalculationResult.cs | 64 +++------
.../CalculationResultAutomationPeer.cs | 11 +-
src/Calculator/Controls/CalculatorButton.cs | 49 +++----
src/Calculator/Controls/EquationTextBox.cs | 95 +++++--------
src/Calculator/Controls/FlipButtons.cs | 21 +--
.../HorizontalNoOverflowStackPanel.cs | 1 +
src/Calculator/Controls/MathRichEditBox.cs | 48 +++----
.../Controls/OperatorPanelButton.cs | 31 ++---
.../Controls/OperatorPanelListView.cs | 12 +-
src/Calculator/Controls/OverflowTextBlock.cs | 51 ++-----
.../OverflowTextBlockAutomationPeer.cs | 5 +-
src/Calculator/Controls/RadixButton.cs | 4 +-
.../Controls/SupplementaryItemsControl.cs | 21 +--
.../Converters/BooleanNegationConverter.cs | 8 +-
.../BooleanToVisibilityConverter.cs | 15 +-
.../ExpressionItemTemplateSelector.cs | 53 ++-----
.../ItemSizeToVisibilityConverter.cs | 8 +-
.../Converters/RadixToStringConverter.cs | 1 +
.../Converters/VisibilityNegationConverter.cs | 6 +-
src/Calculator/Properties/AssemblyInfo.cs | 1 -
.../NavViewMenuItemTemplateSelector.cs | 2 +
src/Calculator/Utils/DelegateCommandUtils.cs | 8 +-
.../Utils/DispatcherTimerDelayer.cs | 9 +-
src/Calculator/Utils/ThemeHelper.cs | 9 +-
src/Calculator/Utils/VisualTree.cs | 14 +-
src/Calculator/Views/Calculator.xaml.cs | 58 +++-----
.../CalculatorProgrammerBitFlipPanel.xaml.cs | 17 +--
.../CalculatorProgrammerDisplayPanel.xaml.cs | 9 +-
.../CalculatorProgrammerOperators.xaml.cs | 29 +---
...CalculatorProgrammerRadixOperators.xaml.cs | 17 +--
.../CalculatorScientificAngleButtons.xaml.cs | 24 +---
.../CalculatorScientificOperators.xaml.cs | 24 +---
.../Views/CalculatorStandardOperators.xaml.cs | 16 +--
src/Calculator/Views/DateCalculator.xaml.cs | 17 +--
.../EquationInputArea.xaml.cs | 63 ++++-----
.../EquationStylePanelControl.xaml.cs | 35 ++---
.../GraphingCalculator.xaml.cs | 104 +++++++-------
.../GraphingCalculator/GraphingNumPad.xaml.cs | 22 +--
.../GraphingSettings.xaml.cs | 26 +---
.../KeyGraphFeaturesPanel.xaml.cs | 14 +-
src/Calculator/Views/HistoryList.xaml.cs | 12 +-
src/Calculator/Views/MainPage.xaml.cs | 130 ++++++++++--------
src/Calculator/Views/Memory.xaml.cs | 14 +-
src/Calculator/Views/MemoryListItem.xaml.cs | 7 +-
src/Calculator/Views/NumberPad.xaml.cs | 11 +-
src/Calculator/Views/OperatorsPanel.xaml.cs | 15 +-
src/Calculator/Views/Settings.xaml.cs | 25 ++--
.../Views/StateTriggers/AspectRatioTrigger.cs | 16 +--
.../Views/StateTriggers/ControlSizeTrigger.cs | 14 +-
.../Views/SupplementaryResults.xaml.cs | 35 ++---
src/Calculator/Views/TitleBar.xaml.cs | 48 +++----
src/Calculator/Views/UnitConverter.xaml.cs | 53 +++----
src/Calculator/WindowFrameService.cs | 17 +--
.../CalculatorApp.cs | 1 +
.../CalculatorResults.cs | 3 +-
src/CalculatorUITestFramework/HistoryItem.cs | 3 -
src/CalculatorUITestFramework/HistoryPanel.cs | 3 +-
src/CalculatorUITestFramework/MemoryItem.cs | 3 -
src/CalculatorUITestFramework/MemoryPanel.cs | 4 +-
.../NavigationMenu.cs | 3 +-
src/CalculatorUITestFramework/NumberPad.cs | 3 +-
.../ProgrammerCalculatorPage.cs | 1 -
.../ProgrammerOperatorsPanel.cs | 7 +-
.../ScientificCalculatorPage.cs | 1 -
.../ScientificOperatorsPanel.cs | 43 +++---
.../StandardAoTCalculatorPage.cs | 2 +
.../UnitConverterOperatorsPanel.cs | 3 -
.../UnitConverterPage.cs | 3 -
.../UnitConverterResults.cs | 4 +-
src/CalculatorUITestFramework/WinAppDriver.cs | 5 +-
.../WindowsDriverLocalService.cs | 14 +-
.../WindowsDriverServiceBuilder.cs | 6 +-
.../WindowsElementExtensions.cs | 3 +-
.../CurrencyConverterFunctionalTests.cs | 7 +-
.../HistoryFunctionalTests.cs | 5 +-
.../MemoryFunctionalTests.cs | 5 +-
.../ProgrammerModeFunctionalTests.cs | 7 +-
.../ScientificModeFunctionalTests.cs | 7 +-
.../StandardModeFunctionalTests.cs | 5 +-
86 files changed, 682 insertions(+), 1087 deletions(-)
delete mode 100644 src/Calculator/Common/ViewState.cs
diff --git a/src/Calculator/App.xaml.cs b/src/Calculator/App.xaml.cs
index 6f40b32..d6006bc 100644
--- a/src/Calculator/App.xaml.cs
+++ b/src/Calculator/App.xaml.cs
@@ -8,6 +8,7 @@
using CalculatorApp.ViewModel.Common;
using CalculatorApp.ViewModel.Common.Automation;
+
using System;
using System.Collections.Generic;
using System.Diagnostics;
@@ -29,7 +30,7 @@ namespace CalculatorApp
{
namespace ApplicationResourceKeys
{
- static public partial class Globals
+ public static partial class Globals
{
public static readonly string AppMinWindowHeight = "AppMinWindowHeight";
public static readonly string AppMinWindowWidth = "AppMinWindowWidth";
@@ -39,7 +40,7 @@ static public partial class Globals
///
/// Provides application-specific behavior to supplement the default Application class.
///
- sealed partial class App
+ public sealed partial class App
{
///
/// Initializes the singleton application object. This is the first line of authored code
@@ -124,8 +125,10 @@ internal void RemoveSecondaryWindow(WindowFrameService frameService)
private static Frame CreateFrame()
{
- var frame = new Frame();
- frame.FlowDirection = LocalizationService.GetInstance().GetFlowDirection();
+ var frame = new Frame
+ {
+ FlowDirection = LocalizationService.GetInstance().GetFlowDirection()
+ };
return frame;
}
@@ -224,8 +227,7 @@ private void OnAppLaunch(IActivatedEventArgs args, string argument)
_ = newCoreAppView.Dispatcher.RunAsync(
CoreDispatcherPriority.Normal, async () =>
{
- var that = weak.Target as App;
- if (that != null)
+ if (weak.Target is App that)
{
var newRootFrame = App.CreateFrame();
@@ -399,9 +401,9 @@ public void Dispose()
Dispose();
}
- private WindowFrameService m_frameService;
+ private readonly WindowFrameService m_frameService;
private bool m_frameOpenedInWindow;
- private App m_parent;
+ private readonly App m_parent;
};
private async Task SetupJumpList()
@@ -502,7 +504,7 @@ private void RemoveWindowFromMap(int viewId)
}
private readonly ReaderWriterLockSlim m_windowsMapLock = new ReaderWriterLockSlim();
- private Dictionary m_secondaryWindows = new Dictionary();
+ private readonly Dictionary m_secondaryWindows = new Dictionary();
private int m_mainViewId;
private bool m_preLaunched;
}
diff --git a/src/Calculator/Calculator.csproj b/src/Calculator/Calculator.csproj
index 1f80e82..2e5ddeb 100644
--- a/src/Calculator/Calculator.csproj
+++ b/src/Calculator/Calculator.csproj
@@ -145,7 +145,6 @@
-
diff --git a/src/Calculator/Common/AlwaysSelectedCollectionView.cs b/src/Calculator/Common/AlwaysSelectedCollectionView.cs
index 0847a5a..cada670 100644
--- a/src/Calculator/Common/AlwaysSelectedCollectionView.cs
+++ b/src/Calculator/Common/AlwaysSelectedCollectionView.cs
@@ -4,6 +4,7 @@
using System;
using System.Collections;
using System.Collections.Generic;
+
using Windows.Foundation;
using Windows.Foundation.Collections;
using Windows.UI.Xaml.Data;
@@ -12,15 +13,14 @@ namespace CalculatorApp
{
namespace Common
{
- sealed class AlwaysSelectedCollectionView : Windows.UI.Xaml.DependencyObject, Windows.UI.Xaml.Data.ICollectionView
+ internal sealed class AlwaysSelectedCollectionView : Windows.UI.Xaml.DependencyObject, Windows.UI.Xaml.Data.ICollectionView
{
internal AlwaysSelectedCollectionView(IList source)
{
- m_currentPosition = -1;
+ CurrentPosition = -1;
m_source = source;
- var observable = source as Windows.UI.Xaml.Interop.IBindableObservableVector;
- if (observable != null)
+ if (source is Windows.UI.Xaml.Interop.IBindableObservableVector observable)
{
observable.VectorChanged += OnSourceBindableVectorChanged;
}
@@ -33,7 +33,7 @@ public bool MoveCurrentTo(object item)
int newCurrentPosition = m_source.IndexOf(item);
if (newCurrentPosition != -1)
{
- m_currentPosition = newCurrentPosition;
+ CurrentPosition = newCurrentPosition;
CurrentChanged?.Invoke(this, null);
return true;
}
@@ -42,7 +42,7 @@ public bool MoveCurrentTo(object item)
// The item is not in the collection
// We're going to schedule a call back later so we
// restore the selection to the way we wanted it to begin with
- if (m_currentPosition >= 0 && m_currentPosition < m_source.Count)
+ if (CurrentPosition >= 0 && CurrentPosition < m_source.Count)
{
Dispatcher.RunAsync(Windows.UI.Core.CoreDispatcherPriority.Normal, new Windows.UI.Core.DispatchedHandler(() =>
{
@@ -59,7 +59,7 @@ public bool MoveCurrentToPosition(int index)
return false;
}
- m_currentPosition = index;
+ CurrentPosition = index;
CurrentChanged?.Invoke(this, null);
return true;
}
@@ -132,73 +132,34 @@ public bool Remove(object item)
public object this[int index]
{
- get
- {
- return m_source[index];
- }
+ get => m_source[index];
set => throw new NotImplementedException();
}
- public int Count
- {
- get
- {
- return m_source.Count;
- }
- }
+ public int Count => m_source.Count;
- public IObservableVector