-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added in Avalonia.Diagnostics and tidied up csproj.
- Loading branch information
Showing
7 changed files
with
24 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,5 @@ | ||
using Avalonia.Input.Platform; | ||
|
||
using DynamicData.Binding; | ||
|
||
using ReactiveUI; | ||
|
||
using SongProcessor.FFmpeg; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,13 @@ | ||
using Avalonia.Markup.Xaml; | ||
using Avalonia.ReactiveUI; | ||
using Avalonia.ReactiveUI; | ||
|
||
using SongProcessor.UI.ViewModels; | ||
|
||
namespace SongProcessor.UI.Views; | ||
|
||
public sealed class AddView : ReactiveUserControl<AddViewModel> | ||
public partial class AddView : ReactiveUserControl<AddViewModel> | ||
{ | ||
public AddView() | ||
{ | ||
InitializeComponent(); | ||
} | ||
|
||
private void InitializeComponent() | ||
=> AvaloniaXamlLoader.Load(this); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,13 @@ | ||
using Avalonia.Markup.Xaml; | ||
using Avalonia.ReactiveUI; | ||
using Avalonia.ReactiveUI; | ||
|
||
using SongProcessor.UI.ViewModels; | ||
|
||
namespace SongProcessor.UI.Views; | ||
|
||
public sealed class EditView : ReactiveUserControl<EditViewModel> | ||
public partial class EditView : ReactiveUserControl<EditViewModel> | ||
{ | ||
public EditView() | ||
{ | ||
InitializeComponent(); | ||
} | ||
|
||
private void InitializeComponent() | ||
=> AvaloniaXamlLoader.Load(this); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,13 @@ | ||
using Avalonia.Markup.Xaml; | ||
using Avalonia.ReactiveUI; | ||
using Avalonia.ReactiveUI; | ||
|
||
using SongProcessor.UI.ViewModels; | ||
|
||
namespace SongProcessor.UI.Views; | ||
|
||
public sealed class MainWindow : ReactiveWindow<MainViewModel> | ||
public partial class MainWindow : ReactiveWindow<MainViewModel> | ||
{ | ||
public MainWindow() | ||
{ | ||
InitializeComponent(); | ||
} | ||
|
||
private void InitializeComponent() | ||
=> AvaloniaXamlLoader.Load(this); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters