提交 7b39cb90 编写于 作者: N NaBian

chore: remove useless namespace.

上级 d4e35cff
......@@ -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
......
......@@ -10,7 +10,6 @@ using HandyControl.Tools;
using HandyControlDemo.Data;
using HandyControlDemo.ViewModel;
namespace HandyControlDemo.UserControl;
/// <summary>
......
using System;
using GalaSoft.MvvmLight;
using GalaSoft.MvvmLight;
using GalaSoft.MvvmLight.Command;
using HandyControl.Controls;
using HandyControl.Data;
......
using System.ComponentModel;
using System.Windows;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Markup;
using System.Windows.Media;
......
using System;
using System.Collections.Generic;
using HandyControl.Collections;
using HandyControl.Data;
namespace HandyControl.Tools;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册