Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions Bookmarkly.App/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
@@ -1,22 +1,18 @@
using System.Collections.ObjectModel;
using Cyclotron.Telemetry.DependencyInjection;
using Cyclotron.Extensions.DependencyInjection;
using Cyclotron.Telemetry.Logging;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using Microsoft.UI.Xaml;


// To learn more about WinUI, the WinUI project structure,
// and more about our project templates, see: http://aka.ms/winui-project-info.

namespace Bookmarkly.App;

/// <summary>
/// An empty window that can be used on its own or navigated to within a Frame.
/// </summary>
public sealed partial class MainWindow : Window
{
private readonly ObservableCollection<int> _datas = new();
private readonly ObservableCollection<int> _datas = [];
public MainWindow()
{
_datas.Add(1);
Expand Down
Loading