diff --git a/PreviewWindow.axaml b/PreviewWindow.axaml new file mode 100644 index 0000000..480d5e8 --- /dev/null +++ b/PreviewWindow.axaml @@ -0,0 +1,103 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/PreviewWindow.axaml.cs b/PreviewWindow.axaml.cs new file mode 100644 index 0000000..8cdcdee --- /dev/null +++ b/PreviewWindow.axaml.cs @@ -0,0 +1,33 @@ +using System; +using System.Collections.Generic; +using System.Collections.ObjectModel; +using System.ComponentModel; +using System.Linq; +using System.Runtime.CompilerServices; +using Avalonia; +using Avalonia.Controls; +using Avalonia.Interactivity; +using Avalonia.Layout; +using Avalonia.Media; + +namespace Logof_Client; +using System.ComponentModel; +using System.Runtime.CompilerServices; + +public partial class PreviewWindow : Window, INotifyPropertyChanged +{ + + public PreviewWindow(IEnumerable addresses) + { + InitializeComponent(); + + Addresses = new ObservableCollection(addresses); + + DataContext = this; + } + public ObservableCollection Addresses { get; } + + + +} +