Skip to content

Commit

Permalink
chore: remove useless namespace.
Browse files Browse the repository at this point in the history
  • Loading branch information
NaBian committed Jan 20, 2023
1 parent d4e35cf commit 7b39cb9
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public string Title
{
get => _title;
#if NET40
set => Set(nameof(Title), ref _title, value);
set => Set(nameof(Title), ref _title, value);
#else
set => Set(ref _title, value);
#endif
Expand All @@ -25,7 +25,7 @@ public int SelectedIndex
{
get => _selectedIndex;
#if NET40
set => Set(nameof(SelectedIndex), ref _selectedIndex, value);
set => Set(nameof(SelectedIndex), ref _selectedIndex, value);
#else
set => Set(ref _selectedIndex, value);
#endif
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
using HandyControlDemo.Data;
using HandyControlDemo.ViewModel;


namespace HandyControlDemo.UserControl;

/// <summary>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using System;
using GalaSoft.MvvmLight;
using GalaSoft.MvvmLight;
using GalaSoft.MvvmLight.Command;
using HandyControl.Controls;
using HandyControl.Data;
Expand Down
3 changes: 1 addition & 2 deletions src/Shared/HandyControl_Shared/Controls/Other/Divider.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using System.ComponentModel;
using System.Windows;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Markup;
using System.Windows.Media;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
using System;
using System.Collections.Generic;
using HandyControl.Collections;
using HandyControl.Data;

namespace HandyControl.Tools;
Expand Down

0 comments on commit 7b39cb9

Please sign in to comment.