This commit is contained in:
wieslawsoltes 2020-08-18 05:35:06 +00:00
Родитель f20c8a98c6
Коммит 9b34077cbd
25 изменённых файлов: 25 добавлений и 73 удалений

Просмотреть файл

@ -1,6 +1,6 @@
MIT License
Copyright (c) 2019 Wiesław Šoltés
Copyright (c) Wiesław Šoltés
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal

Просмотреть файл

@ -1,6 +1,4 @@
// Copyright (c) Wiesław Šoltés. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System;
using System;
using System.Reactive.Disposables;
using Avalonia;
using Avalonia.Controls;

Просмотреть файл

@ -1,6 +1,4 @@
// Copyright (c) Wiesław Šoltés. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using Avalonia;
using Avalonia;
using Avalonia.Controls;
using Avalonia.Media;
using ReactiveHistorySample.ViewModels;

Просмотреть файл

@ -1,6 +1,4 @@
// Copyright (c) Wiesław Šoltés. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using Avalonia.Controls;
using Avalonia.Controls;
using Avalonia.Markup.Xaml;
namespace ReactiveHistorySample.Avalonia

Просмотреть файл

@ -1,6 +1,4 @@
// Copyright (c) Wiesław Šoltés. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using Avalonia.Controls;
using Avalonia.Controls;
using Avalonia.Markup.Xaml;
namespace ReactiveHistorySample.Avalonia.Views

Просмотреть файл

@ -1,6 +1,4 @@
// Copyright (c) Wiesław Šoltés. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using Avalonia.Controls;
using Avalonia.Controls;
using Avalonia.Markup.Xaml;
namespace ReactiveHistorySample.Avalonia.Views

Просмотреть файл

@ -1,6 +1,4 @@
// Copyright (c) Wiesław Šoltés. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

namespace ReactiveHistorySample.Models
{
public abstract class BaseObject : ObservableObject

Просмотреть файл

@ -1,6 +1,4 @@
// Copyright (c) Wiesław Šoltés. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

namespace ReactiveHistorySample.Models
{
public abstract class BaseShape : BaseObject

Просмотреть файл

@ -1,6 +1,4 @@
// Copyright (c) Wiesław Šoltés. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System.Collections.ObjectModel;
using System.Collections.ObjectModel;
namespace ReactiveHistorySample.Models
{

Просмотреть файл

@ -1,6 +1,4 @@
// Copyright (c) Wiesław Šoltés. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

namespace ReactiveHistorySample.Models
{
public class LineShape : BaseShape

Просмотреть файл

@ -1,6 +1,4 @@
// Copyright (c) Wiesław Šoltés. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System.ComponentModel;
using System.ComponentModel;
using System.Runtime.CompilerServices;
namespace ReactiveHistorySample.Models

Просмотреть файл

@ -1,6 +1,4 @@
// Copyright (c) Wiesław Šoltés. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

namespace ReactiveHistorySample.Models
{
public class PointShape : BaseShape

Просмотреть файл

@ -1,6 +1,4 @@
// Copyright (c) Wiesław Šoltés. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System;
using System;
using System.Reactive.Disposables;
using Reactive.Bindings;
using Reactive.Bindings.Extensions;

Просмотреть файл

@ -1,6 +1,4 @@
// Copyright (c) Wiesław Šoltés. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System;
using System;
using System.Reactive.Disposables;
using Reactive.Bindings;
using Reactive.Bindings.Extensions;

Просмотреть файл

@ -1,6 +1,4 @@
// Copyright (c) Wiesław Šoltés. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System;
using System;
using System.Reactive.Disposables;
using Reactive.Bindings;
using Reactive.Bindings.Extensions;

Просмотреть файл

@ -1,6 +1,4 @@
// Copyright (c) Wiesław Šoltés. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System;
using System;
namespace ReactiveHistory
{

Просмотреть файл

@ -1,6 +1,4 @@
// Copyright (c) Wiesław Šoltés. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System;
using System;
using System.Collections.Generic;
using System.Linq;

Просмотреть файл

@ -1,6 +1,4 @@
// Copyright (c) Wiesław Šoltés. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System;
using System;
using System.Reactive.Linq;
namespace ReactiveHistory

Просмотреть файл

@ -1,6 +1,4 @@
// Copyright (c) Wiesław Šoltés. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System;
using System;
using System.Collections.Generic;
using System.Reactive.Linq;
using System.Reactive.Subjects;

Просмотреть файл

@ -1,6 +1,4 @@
// Copyright (c) Wiesław Šoltés. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System;
using System;
namespace ReactiveHistory
{

Просмотреть файл

@ -1,6 +1,4 @@
// Copyright (c) Wiesław Šoltés. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System;
using System;
using System.Collections.Generic;
using System.Reactive.Disposables;

Просмотреть файл

@ -1,6 +1,4 @@
// Copyright (c) Wiesław Šoltés. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System.Collections.Generic;
using System.Collections.Generic;
using System.Reactive.Linq;
using System.Reactive.Subjects;
using Xunit;

Просмотреть файл

@ -1,6 +1,4 @@
// Copyright (c) Wiesław Šoltés. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System.Collections.ObjectModel;
using System.Collections.ObjectModel;
using Xunit;
namespace ReactiveHistory.UnitTests

Просмотреть файл

@ -1,6 +1,4 @@
// Copyright (c) Wiesław Šoltés. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System;
using System;
using System.Linq;
using Xunit;

Просмотреть файл

@ -1,6 +1,4 @@
// Copyright (c) Wiesław Šoltés. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System;
using System;
using Xunit;
namespace ReactiveHistory.UnitTests