/
n1kolas
/
NoteCreator
Обзор
Документация
Войти
/
n1kolas
/
NoteCreator
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
UI/Pages/NoteDisplayPage.xaml.cs
42 строки
1 KB
Nicolai
Added core functionality to program
05 окт 2025, 22:32
05 окт 2025, 22:32
48a91e7
Код
Авторство
О чём код?
using LogIn.Data.Models; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows; using System.Windows.Controls; using System.Windows.Data; using System.Windows.Documents; using System.Windows.Input; using System.Windows.Media; using System.Windows.Media.Imaging; using System.Windows.Navigation; using System.Windows.Shapes; namespace LogIn.UI.Pages { /// <summary> /// Логика взаимодействия для NoteDisplayPage.xaml /// </summary> public partial class NoteDisplayPage : Page { public Note Note; public string NoteName { get; set; } public string NoteContent { get; set; } public NoteDisplayPage(Note note) { Note = note; NoteName = Note.NoteName; NoteContent = Note.Content; DataContext = this; InitializeComponent(); } private void SaveButton_Click(object sender, RoutedEventArgs e) { Note.NoteName = NoteName; Note.Content = NoteContent; } } }