This repository was archived by the owner on Jun 21, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +4
-8
lines changed
src/GitHub.VisualStudio/UI/Views Expand file tree Collapse file tree 1 file changed +4
-8
lines changed Original file line number Diff line number Diff line change 11using System ;
22using System . Collections . ObjectModel ;
33using System . ComponentModel . Composition ;
4- using System . Linq ;
54using System . Reactive . Disposables ;
6- using System . Windows ;
7- using System . Windows . Controls ;
5+ using System . Windows . Input ;
86using GitHub . Exports ;
97using GitHub . Extensions ;
108using GitHub . Models ;
11- using GitHub . Primitives ;
129using GitHub . Services ;
1310using GitHub . UI ;
11+ using GitHub . ViewModels ;
1412using GitHub . VisualStudio . Base ;
1513using GitHub . VisualStudio . Helpers ;
1614using NullGuard ;
17- using GitHub . ViewModels ;
18- using System . Windows . Input ;
1915using ReactiveUI ;
2016
2117namespace GitHub . VisualStudio . UI . Views
@@ -79,9 +75,9 @@ public ObservableCollection<IView> Controls
7975 }
8076
8177 public ReactiveCommand < object > CancelCommand { get ; private set ; }
82- public ICommand Cancel { get { return CancelCommand ; } }
78+ public ICommand Cancel => CancelCommand ;
8379
84- public bool IsShowing { get { return true ; } }
80+ public bool IsShowing => true ;
8581
8682 bool disposed = false ;
8783 protected override void Dispose ( bool disposing )
You can’t perform that action at this time.
0 commit comments