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