chore: remove useless namespace.

This commit is contained in:
NaBian 2023-01-20 20:25:38 +08:00
parent d4e35cff29
commit 7b39cb90d7
5 changed files with 4 additions and 8 deletions

View File

@ -13,7 +13,7 @@ public class DemoInfoModel : ViewModelBase
{
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
@ -25,7 +25,7 @@ public class DemoInfoModel : ViewModelBase
{
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

View File

@ -10,7 +10,6 @@ using HandyControl.Tools;
using HandyControlDemo.Data;
using HandyControlDemo.ViewModel;
namespace HandyControlDemo.UserControl;
/// <summary>

View File

@ -1,5 +1,4 @@
using System;
using GalaSoft.MvvmLight;
using GalaSoft.MvvmLight;
using GalaSoft.MvvmLight.Command;
using HandyControl.Controls;
using HandyControl.Data;

View File

@ -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;

View File

@ -1,6 +1,5 @@
using System;
using System.Collections.Generic;
using HandyControl.Collections;
using HandyControl.Data;
namespace HandyControl.Tools;