Skip to content

Commit 38fe617

Browse files
author
Declan Taylor
committed
Sorted out namespaces.
1 parent ae21e13 commit 38fe617

File tree

8 files changed

+29
-33
lines changed

8 files changed

+29
-33
lines changed

source/Demos/CachedPathSuggestBoxDemo/App.xaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
<Application x:Class="WpfApp1.App"
1+
<Application x:Class="CachedPathSuggestBoxDemo.App"
22
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
33
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4-
xmlns:local="clr-namespace:WpfApp1"
54
StartupUri="MainWindow.xaml">
65
<Application.Resources>
76

source/Demos/CachedPathSuggestBoxDemo/App.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
using System.Threading.Tasks;
77
using System.Windows;
88

9-
namespace WpfApp1
9+
namespace CachedPathSuggestBoxDemo
1010
{
1111
/// <summary>
1212
/// Interaction logic for App.xaml

source/Demos/CachedPathSuggestBoxDemo/Infrastructure/DirectorySuggestSource.cs

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
#nullable enable
1+
using System;
2+
using System.Collections.Generic;
3+
using System.IO;
4+
using System.Linq;
5+
using System.Threading;
6+
using System.Threading.Tasks;
27

3-
namespace SuggestBoxTestLib.DataSources
4-
{
5-
using System;
6-
using System.Collections.Generic;
7-
using System.IO;
8-
using System.Linq;
9-
using System.Threading;
10-
using System.Threading.Tasks;
8+
#nullable enable
119

10+
namespace CachedPathSuggestBoxDemo.Infrastructure
11+
{
1212
/// <summary>
1313
/// Defines a suggestion object to generate suggestions
1414
/// based on sub entries of specified string.

source/Demos/CachedPathSuggestBoxDemo/Infrastructure/FastObservableCollection.cs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
namespace SuggestBoxTestLib.ViewModels
2-
{
3-
using System;
4-
using System.Collections;
5-
using System.Collections.ObjectModel;
6-
using System.Collections.Specialized;
7-
using System.Windows.Threading;
1+
using System;
2+
using System.Collections;
3+
using System.Collections.ObjectModel;
4+
using System.Collections.Specialized;
5+
using System.Windows.Threading;
86

7+
namespace CachedPathSuggestBoxDemo.Infrastructure
8+
{
99
/// <summary>
1010
/// WPF-it's implementation
1111
/// http://stackoverflow.com/questions/7687000/fast-performing-and-thread-safe-observable-collection

source/Demos/CachedPathSuggestBoxDemo/Infrastructure/LiteRepository.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
using LiteDB;
2-
using System;
1+
using System;
32
using System.Collections.Generic;
43
using System.IO;
54
using System.Linq;
5+
using LiteDB;
66

7-
namespace WpfApp1
7+
namespace CachedPathSuggestBoxDemo.Infrastructure
88
{
99

1010
public class SuggestionProvider

source/Demos/CachedPathSuggestBoxDemo/Infrastructure/RelayCommand.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
namespace SuggestBoxTestLib.ViewModels.Base
2-
{
3-
using System;
4-
using System.Diagnostics;
5-
using System.Windows.Input;
1+
using System;
2+
using System.Diagnostics;
3+
using System.Windows.Input;
64

5+
namespace CachedPathSuggestBoxDemo.Infrastructure
6+
{
77
/// <summary>
88
/// A command whose sole purpose is to
99
/// relay its functionality to other

source/Demos/CachedPathSuggestBoxDemo/MainWindow.xaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
<Window x:Class="WpfApp1.MainWindow"
1+
<Window x:Class="CachedPathSuggestBoxDemo.MainWindow"
22
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
33
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
44
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
55
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
6-
xmlns:local="clr-namespace:WpfApp1"
76
xmlns:suggestBoxLib="clr-namespace:SuggestBoxLib;assembly=SuggestBoxLib"
87
mc:Ignorable="d"
98
Title="MainWindow" Height="450" Width="800">

source/Demos/CachedPathSuggestBoxDemo/MainWindow.xaml.cs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,9 @@
22
using System.Collections.Generic;
33
using System.Linq;
44
using System.Windows;
5-
using SuggestBoxTestLib.DataSources;
6-
using SuggestBoxTestLib.ViewModels;
7-
using SuggestBoxTestLib.ViewModels.Base;
5+
using CachedPathSuggestBoxDemo.Infrastructure;
86

9-
namespace WpfApp1
7+
namespace CachedPathSuggestBoxDemo
108
{
119
/// <summary>
1210
/// Interaction logic for MainWindow.xaml

0 commit comments

Comments
 (0)