Skip to content

Commit aa95fc1

Browse files
committed
Refactor namespace statements.
1 parent 6059f9d commit aa95fc1

72 files changed

Lines changed: 137 additions & 154 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Applications/Rss/Reader/App.xaml.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,16 @@
1515
// limitations under the License.
1616
//
1717
/* ------------------------------------------------------------------------- */
18-
using Cube.Forms.Processes;
19-
using Cube.Mixin.Assembly;
20-
using Cube.Mixin.Logging;
2118
using System;
2219
using System.Collections.Generic;
2320
using System.Diagnostics;
2421
using System.Linq;
2522
using System.Reflection;
2623
using System.Threading;
2724
using System.Windows;
25+
using Cube.Forms.Processes;
26+
using Cube.Mixin.Assembly;
27+
using Cube.Mixin.Logging;
2828

2929
namespace Cube.Net.Rss.Reader
3030
{

Applications/Rss/Reader/Sources/Interactions/DuplexConverters.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
// limitations under the License.
1616
//
1717
/* ------------------------------------------------------------------------- */
18-
using Cube.Xui.Converters;
1918
using System;
2019
using System.Windows;
20+
using Cube.Xui.Converters;
2121

2222
namespace Cube.Net.Rss.Reader
2323
{

Applications/Rss/Reader/Sources/Interactions/EditBehavior.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515
// limitations under the License.
1616
//
1717
/* ------------------------------------------------------------------------- */
18-
using Cube.Xui;
1918
using System.Windows;
2019
using System.Windows.Controls;
2120
using System.Windows.Input;
2221
using System.Windows.Interactivity;
22+
using Cube.Xui;
2323

2424
namespace Cube.Net.Rss.Reader
2525
{

Applications/Rss/Reader/Sources/Interactions/OtherBehaviors.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
// limitations under the License.
1616
//
1717
/* ------------------------------------------------------------------------- */
18-
using Cube.Xui.Behaviors;
1918
using System.Windows.Controls;
2019
using System.Windows.Media;
20+
using Cube.Xui.Behaviors;
2121

2222
namespace Cube.Net.Rss.Reader
2323
{

Applications/Rss/Reader/Sources/Interactions/RssDropTarget.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
// limitations under the License.
1616
//
1717
/* ------------------------------------------------------------------------- */
18-
using GongSolutions.Wpf.DragDrop;
1918
using System;
2019
using System.Windows;
20+
using GongSolutions.Wpf.DragDrop;
2121

2222
namespace Cube.Net.Rss.Reader
2323
{

Applications/Rss/Reader/Sources/Interactions/SimplexConverters.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
// limitations under the License.
1616
//
1717
/* ------------------------------------------------------------------------- */
18-
using Cube.Xui.Converters;
1918
using System.Windows;
19+
using Cube.Xui.Converters;
2020

2121
namespace Cube.Net.Rss.Reader
2222
{

Applications/Rss/Reader/Sources/Interactions/TitleConverter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@
1515
// limitations under the License.
1616
//
1717
/* ------------------------------------------------------------------------- */
18-
using Cube.Mixin.Assembly;
1918
using System;
2019
using System.Globalization;
2120
using System.Reflection;
2221
using System.Windows.Data;
2322
using System.Windows.Markup;
23+
using Cube.Mixin.Assembly;
2424

2525
namespace Cube.Net.Rss.Reader
2626
{

Applications/Rss/Reader/Sources/Interactions/WebBehavior.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@
1515
// limitations under the License.
1616
//
1717
/* ------------------------------------------------------------------------- */
18-
using Cube.Forms;
19-
using Cube.Mixin.Logging;
20-
using Cube.Xui.Behaviors;
2118
using System;
2219
using System.Web;
2320
using System.Windows;
2421
using System.Windows.Forms;
2522
using System.Windows.Input;
23+
using Cube.Forms;
24+
using Cube.Mixin.Logging;
25+
using Cube.Xui.Behaviors;
2626

2727
namespace Cube.Net.Rss.Reader
2828
{

Applications/Rss/Reader/Sources/Models/Rss/BindableCollection.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@
1515
// limitations under the License.
1616
//
1717
/* ------------------------------------------------------------------------- */
18-
using Cube.Mixin.Generics;
19-
using Cube.Mixin.Logging;
2018
using System;
2119
using System.Collections;
2220
using System.Collections.Generic;
2321
using System.Collections.ObjectModel;
2422
using System.Collections.Specialized;
2523
using System.ComponentModel;
2624
using System.Linq;
25+
using Cube.Mixin.Generics;
26+
using Cube.Mixin.Logging;
2727

2828
namespace Cube.Net.Rss.Reader
2929
{

Applications/Rss/Reader/Sources/Models/Rss/RssCategory.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@
1515
// limitations under the License.
1616
//
1717
/* ------------------------------------------------------------------------- */
18-
using Cube.Mixin.Collections;
1918
using System.Collections.Generic;
2019
using System.Collections.Specialized;
2120
using System.ComponentModel;
2221
using System.Linq;
2322
using System.Runtime.Serialization;
23+
using Cube.Mixin.Collections;
2424

2525
namespace Cube.Net.Rss.Reader
2626
{

0 commit comments

Comments
 (0)